CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Jewe

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    997

    Re: Stop 0xC2 or BAD_POOL_CALLER

    Solution to this problem was installing the latest GPIB drivers
  2. Replies
    4
    Views
    997

    Re: Stop 0xC2 or BAD_POOL_CALLER

    Dude,

    If I could recreate the problem then I would be the luckiest man on the planet. the thing is that I can not reproduce it.. :(
  3. Replies
    3
    Views
    1,184

    Re: How to communicate with a USB-232 converter?

    http://sourceforge.net/mailarchive/forum.php?thread_id=266168&forum_id=5398

    this get me to:
    http://www.qbik.ch/usb/devices/showdr.php?id=41

    hope it helps,

    Jewe
  4. Replies
    4
    Views
    997

    Stop 0xC2 or BAD_POOL_CALLER

    Hi,

    I got a small problem. A customer of mine has had the following crash.
    Stop 0xC2 or BAD_POOL_CALLER
    0x00000040 Starting address Start of system address space This value is always zero...
  5. Replies
    3
    Views
    1,184

    Re: How to communicate with a USB-232 converter?

    Hi,

    I had the same kind of problems with windows.
    the solution is simple, just install the virtual driver so that it becomes a com-port. and use it like a comport.

    some hik ups I had:
    - add...
  6. Replies
    4
    Views
    939

    Network connection

    Hi,

    I am looking for a simple CPP example to set up a network connection.
    (Using Dev cpp)

    any suggestions?

    all the examples I can find are CSocket examples.

    kind regards,
  7. Re: Running program with Javax.comm jar and manifest

    Ok, it runs but is still unable to find the property file.
    Just to be sure I understand what you are saying.
    I should also insert javax.comm.properties also in the manifest file?

    like:

    ...
  8. Running program with Javax.comm jar and manifest

    Hi,

    I put my program in a Jar file.
    with a bat file I can make it run with the jar file for the serial communication.
    (java -cp comm.jar;MyProgram.jar MyProgram)

    but with a manifest file I...
  9. Replies
    5
    Views
    778

    Re: Better solution for Click event

    Joe Nellis and Cjard thank you both for the reply.

    any good tips of which articals to read?
    I agree with the fact that VB does allow you to program poorly.
    but which programming tools does not?...
  10. Replies
    2
    Views
    1,186

    Re: repaint problem in java swing

    Hi,

    please be more specific on how you set it up.
    what I understand is that you paint both the items in the frame?
    but not in the paint event of the object?

    it's better to perform all the...
  11. Replies
    6
    Views
    809

    Re: Format like function

    Sorry my mistake should be Long in vb = int in Java.
  12. Replies
    6
    Views
    809

    Re: Format like function

    ok,

    with format you can specify the way a string is defined.
    for example:
    Format(Now,"YYYY-MM-DD") returns "2005-03-17"

    but also mlCount ( a long == int in java)
    Format(mlCount ,"0000") -->...
  13. Replies
    5
    Views
    778

    Better solution for Click event

    Hi,

    I have the following issue and I was wondering if there is a better solution for it.

    On my window I have a button, after pressing the button the main program starts rs-232 communication....
  14. Replies
    6
    Views
    809

    Format like function

    Hi,

    I was wondering if java supports a Format function like VB.
    Or do I need to program this myself?

    Thx,

    Jewe
  15. Replies
    1
    Views
    646

    code documentation tool

    Hi,

    I was wondering if there was a good tool for Vb to generate code documentation.
    I know for Java you have javadoc.

    thx,

    Jewe
  16. Replies
    1
    Views
    592

    Searching for example win CE

    HI,

    I'm looking for a simple example to communicate with the serial port on win CE.
    using eVc4, mipps processor.

    Thx a lot,

    Jewe
  17. Thread: custom event

    by Jewe
    Replies
    2
    Views
    705

    Re: custom event

    I found an example :
    Mr. Happy Object teaches custom events
  18. Thread: custom event

    by Jewe
    Replies
    2
    Views
    705

    custom event

    Hi,

    I have a program that communicates with a device.
    I want the user interface to change if the communication changes.
    for example progressbar update or I/O time out.

    what I normally do in...
  19. Re: vector or array (language understanding problem)

    No, I need the bytes because somebody figured out a really unnatural protocol.
    (putting the message size half way, stripping the ascii value 10 down, crc check, having double zero as problem)

    The...
  20. Re: vector or array (language understanding problem)

    the outputstream has got three functions. they all use byte arrays. )] link to outputstream

    could be that there are other ways,

    Jewe
  21. Re: vector or array (language understanding problem)

    ok dlorde, I'll try again.

    For my program I created an interface called IMessage.
    this interface has the following items :
    1. buildmessage
    2. getMessage(index) as byte[]
    3. get messagecount....
  22. vector or array (language understanding problem)

    Hi,
    simple question for java guru, less simple question for vb guru (me)

    I have got a program that javax.comm for serial communication.
    javax.comm uses byte arrays for communicating.
    I have got...
  23. Replies
    13
    Views
    1,604

    Re: usb to serial question

    thank you cjard, but that was not what I meant.
    but you are right, for the device you need an additional driver.

    I have 1 serial port(rs 232) of 2 ports on the mobo of the pc.
    for some reason...
  24. Replies
    13
    Views
    1,604

    Re: usb to serial question

    I think you are right.
    But I still have a problem with detecting the com ports.
    I used the black box example and on 2 computers
    ( xp pro and win2k) the example reported that it was unable to find...
  25. Replies
    4
    Views
    1,213

    Re: Weird server program behaviour...

    ok.. lets do it in english...

    Set done to false
    Here comes the tricky part. so I'll split it.

    (!done) the ! is a logical not operation.
    meaning true is false and false is true.
    so the...
Results 1 to 25 of 304
Page 1 of 13 1 2 3 4





Click Here to Expand Forum to Full Width

Featured