Search:

Type: Posts; User: JustMax

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,180

    It will placed in an application that calls the...

    It will placed in an application that calls the old app. It will reset the desktop when the old app closes and returns control to the new app.

    Do you see an issue I am missing?
  2. Replies
    5
    Views
    1,180

    DeadPlanet, I added this line between the...

    DeadPlanet,
    I added this line between the CreateProcess and the keybd_event :


    WaitForSingleObject( pi.hProcess, (DWORD)5000 );


    and it appears to be working. Thanks for the help.
  3. Replies
    5
    Views
    1,180

    That doesn't seem to work. I know the window has...

    That doesn't seem to work. I know the window has keyboard focus because it responds to both the escape and enter keys when I press them.
  4. Replies
    5
    Views
    1,180

    Resetting Windows Desktop

    I have a legacy application that, on occasion, causes the windows fonts to screw up. I have found that, if I simply reset the desktop, it fixes the problem. I do not have the authority, knowledge,...
  5. Replies
    18
    Views
    11,827

    Finally, an answer instead of a question or a...

    Finally, an answer instead of a question or a debate! Thank you so much.
  6. Replies
    18
    Views
    11,827

    brewbuck, How would I set the control to use the...

    brewbuck,
    How would I set the control to use the correct codepage?
  7. Replies
    18
    Views
    11,827

    I do appreciate your eagerness to discuss this...

    I do appreciate your eagerness to discuss this and I am sure that you would prove your point very well. That is not, however what I am after. Once again, I am simply asking if it is possible to send...
  8. Replies
    18
    Views
    11,827

    Any debate is avoidable. Watch . . . .

    Any debate is avoidable. Watch . . . .
  9. Replies
    18
    Views
    11,827

    Thanks for the example. I have adapted it to my...

    Thanks for the example. I have adapted it to my application:


    //build top line of the form
    int chars;
    char topLeftCorner = '┌';
    char topRightCorner = '┐';
    char bottomLeftCorner = '└';
    char...
  10. Replies
    18
    Views
    11,827

    Vart, Thanks for pointing that out. When I...

    Vart,
    Thanks for pointing that out. When I change them to the single quotes, I get:

    'strcat' : cannot convert parameter 2 from 'const char' to 'const char *'

    at my strcpy and strcat lines. (I...
  11. Replies
    18
    Views
    11,827

    Sorry, the missing key was a poor attempt at...

    Sorry, the missing key was a poor attempt at humor. Actually, the ASCII character set was extended, according to (www.asciitable.com):
    "As people gradually required computers to understand...
  12. Replies
    18
    Views
    11,827

    Seriously, Every time I try to send these...

    Seriously, Every time I try to send these characters to a RichEdit control, I just get + or -. I know that it has to have something to do with the UTF mode but I can't find any good documentation.
    ...
  13. Replies
    18
    Views
    11,827

    Can you tell me which key I press for the top...

    Can you tell me which key I press for the top left corner of a box outline? My keyboard doesn't seem to have any of these keys :
  14. Replies
    18
    Views
    11,827

    Extended ASCII Characters in an RTF Control

    I am sure this must be simple but I cannot find a way to do it:

    I have a Rich Text control in a C application (non-MFC) and I want to draw boxes around some of the text in a form. How do I insert...
  15. Replies
    0
    Views
    2,092

    Creating a Report

    I have been tasked with reproducing a report form and filling it with test data that is stored in a text file.

    I can't seem to get my hands around how to use Crystal Reports with C programming and...
  16. Replies
    9
    Views
    2,307

    There is a legacy app on the "box" and a receiver...

    There is a legacy app on the "box" and a receiver side is running on our XP PCs. The receiver portion expects to read data on COM1. The portion in the "box" is Win 95.
  17. Replies
    9
    Views
    2,307

    Nope. The app runs inside a box that we simply...

    Nope. The app runs inside a box that we simply connect to our XP boxes via USB. That "box" connects to sensors and it collects readings that I need to retrieve and monitor.
  18. Replies
    9
    Views
    2,307

    The application we are dealing with reads and...

    The application we are dealing with reads and writes to a device via COM1. I do not have control over the code and I am not able to convince my counterparts to make code adjustments on an application...
  19. Replies
    9
    Views
    2,307

    Since XP allows you to go into device manager and...

    Since XP allows you to go into device manager and reassign comm ports, I am assuming that it can be don at the OS level. I was just wondering if anyone has an idea of how and what the Device Manager...
  20. Replies
    9
    Views
    2,307

    Change COM Ports

    I am using a USB device that emulates a serial port. I need the device to be assigned to COM1 everytime it is plugged in. Is there a way to programmatically clear COM1 and then reassign my device to...
  21. Replies
    3
    Views
    1,779

    Thanks adeyblue! Got it going.

    Thanks adeyblue! Got it going.
  22. Replies
    3
    Views
    1,779

    Copying an entire directory

    I have a dialog control with two list controls. One contains a directory listing of a drive and the other has the listing of another drive. I am successful in using MoveFileEx() to move an entire...
  23. Replies
    2
    Views
    3,945

    I found it. I had left out a '}' and the compiler...

    I found it. I had left out a '}' and the compiler didn't catch it. I guess I should be more precise. Thanks for you interest.
  24. Replies
    2
    Views
    3,945

    error 1421: "control ID not found"

    I have a dialog box with two listbox controls. Both of them display disk directories and function well (with one exception. I can move from drive to drive, directory to directory perfectly.

    Now,...
  25. Replies
    7
    Views
    1,610

    I have taken the option of creating my own dialog...

    I have taken the option of creating my own dialog to restrict where the user can go. It seems to work well but I would like to divide the display into two listboxes (one with directory structure...
Results 1 to 25 of 59
Page 1 of 3 1 2 3