Search:

Type: Posts; User: bowluswj

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,621

    I found the function in the app that posts...

    I found the function in the app that posts WM_CLOSE. I called the app, but it did the same thing as the exit(). It just closes the window without showing the messagebox.
  2. Replies
    10
    Views
    1,621

    I would love to try this, but the program that my...

    I would love to try this, but the program that my boss uses is weird. Basically the main program does all the calculations that it needs to and calls another program called "simple windows app". ...
  3. Replies
    10
    Views
    1,621

    I tried both Novacain's method and Robwhits, both...

    I tried both Novacain's method and Robwhits, both didn't work. I am not sure exactly what has gone on here. My boss said to move on, so i am implementing a different message system in my program...
  4. Replies
    6
    Views
    1,768

    I personally think that Dev-CPP is a really good...

    I personally think that Dev-CPP is a really good IDE for creating windows quickly. It comes with a win32 GUI skeleton built in.
  5. Thread: php?

    by bowluswj
    Replies
    18
    Views
    2,194

    Another way to do it is to install Wamp5 on your...

    Another way to do it is to install Wamp5 on your computer.

    It emulates a Windows, Apache, mysql, and php5 server on your computer.

    It is very useful for seeing php code in your web browser.
  6. Replies
    10
    Views
    1,621

    Deep in the code, it says that if the ftflag...

    Deep in the code, it says that if the ftflag variable is equal to 1, then the program knows that the frame trigger is present. So, i changed the code to


    if(ftflag != 1){
    MessageBox(NULL...
  7. Replies
    10
    Views
    1,621

    unknown MessageBox error

    During my current job, I was assigned the task of converting a program from MS VC++ to Dev-CPP because my boss wants to get rid of our dependency on MS. After I finished, I found that the program...
  8. Replies
    4
    Views
    1,851

    The problem comes from two functions that are...

    The problem comes from two functions that are located near the top of the code (Fill and FreeEx). Both are template functions that are used in the template class that follows. Those two functions...
  9. Replies
    4
    Views
    1,851

    Here are the errors i get: [Linker error]...

    Here are the errors i get:

    [Linker error] undefined reference to `freeEx(auto_array_ptr<double>&)'
    [Linker error] undefined reference to `fill(auto_array_ptr<double>&, unsigned char)'

    i...
  10. Replies
    4
    Views
    1,851

    Having a problem with templates and classes

    here is my code:



    /*===========================================[ REDEFINITION DEFENCE ]=======*/
    #ifndef AutoArrayPtr_H
    #define AutoArrayPtr_H
    ...
  11. Replies
    4
    Views
    1,582

    I changed it to const char* and that didn't help....

    I changed it to const char* and that didn't help. It still has a segfault error. Also, i already have tried adding a "pause" into the program. I had it at 10 sec and it still errors out after four...
  12. Replies
    4
    Views
    1,582

    SegFault Error, Need Help

    The program below is supposed to first, open the port, then send a command and wait for the port to say it is done. Then after all the commands are sent, it closes the port and ends the program. ...
Results 1 to 12 of 12