Search:

Type: Posts; User: Frantic-

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,383

    i mean from within a c++ program. I know...

    i mean from within a c++ program.
    I know system(name.exe); (or something like that) launches a program.
  2. Replies
    6
    Views
    1,383

    yes for windows :)

    yes for windows :)
  3. Replies
    6
    Views
    1,383

    Shell Commands

    Is there a site that can teach how to use the shell commands, and what they all are?
  4. Thread: Using BitBlt

    by Frantic-
    Replies
    4
    Views
    8,633

    Ok im still a bit confused on the hdcSrc ...

    Ok im still a bit confused on the hdcSrc



    HBITMAP hmainbg = LoadBitmap(hmaininstance,"test.bmp");
    HDC hmaindc = GetDC(hmainwnd);
    CreateCompatibleDC(hmaindc);
    SelectObject(hmaindc,hmainbg);...
  5. Thread: Using BitBlt

    by Frantic-
    Replies
    4
    Views
    8,633

    Using BitBlt

    I read up on this at MSDN and im confused about how to use it. Ive gotten every other function I need to get a bitmap on the screen accept this one. Can you please explain to me how to use it?


    ...
  6. Replies
    2
    Views
    1,764

    Problem with closing my application

    Im getting this error after I run my program and then close it and try re-compiling.
    --------------------Configuration: Code - Win32 Debug--------------------
    Compiling...
    main.cpp
    c:\documents...
  7. Replies
    2
    Views
    3,001

    I got it to work with slightly different code,...

    I got it to work with slightly different code, but the major changes you listed were made :-) thanks for the help.
  8. Replies
    2
    Views
    3,001

    Windows API: Edit Box Help

    Im trying to get two edit boxes on the screen but they are not showing up. Can anyone tell me what Im doing wrong?



    #define WIN32_LEAN_AND_MEAN

    #include <windows.h>
    #include <windowsx.h>...
  9. Replies
    1
    Views
    1,609

    Need help with winsock

    Ok, im having some problems transfering some functions that worked before into a single header and then making them so that they can be reused. These all worked before with out the variables Im...
  10. Thread: Textboxes

    by Frantic-
    Replies
    3
    Views
    1,015

    So would I type something like this?...

    So would I type something like this?
    CreateWindow(EDIT,username,NULL,0,0,100,20,NULL,NULL,husername,NULL);
  11. Thread: Textboxes

    by Frantic-
    Replies
    3
    Views
    1,015

    Textboxes

    Where can I find stuff about making text boxes, and other things from the windows API.
  12. Replies
    3
    Views
    1,102

    ty, that has quite a bit of stuff in it about...

    ty, that has quite a bit of stuff in it about strings.
    Im trying to make some code that will change the font of a keyword when it is typed in, im trying to make a little program that makes web pages...
  13. Replies
    3
    Views
    1,102

    String Functions

    Is there a place that lists all the string functions like len, upper, mid etc?
  14. Replies
    1
    Views
    886

    String Table Help

    What am I doing wrong here?



    EXPORT int XSDKPUSHBUTTON (LPSTR stext, int ixpos, int iypos, int iheight, int iwidth , int ibid)
  15. Replies
    2
    Views
    1,216

    MinGW compiler

    Does anyone know which files I would need to download in order to use the compiler?

    http://sourceforge.net/projects/mingw/
  16. Replies
    6
    Views
    1,846

    ive read my sams teach your self c++ in 24 hours...

    ive read my sams teach your self c++ in 24 hours cover to cover, and took a computer programming class and learned c++ for a small part of it, most of it was in JAVA. And if you are infering that I...
  17. Replies
    4
    Views
    1,483

    VC++ 6.0 vs .NET 2003

    I have vc++ 6.0 with a very limited license. Im now wishing to purchase a fully licensed program. What is the difference between 6.0 and .NET 2003 other than .NET 2003 support the .NET frame work....
  18. Replies
    6
    Views
    1,846

    never mind i got it :P

    never mind i got it :P
  19. Replies
    6
    Views
    1,846

    ok now how about this one. When the users enters...

    ok now how about this one. When the users enters the correct word, it goes to the error screen. If i entered "OK" where smessage goes, it would give me an error.


    // MESSAGE BOX...
  20. Replies
    6
    Views
    1,846

    need help with building DLL

    This is just one of the functions im making for a 3rd party DLL for a different language.


    #ifndef EXPORT
    #define EXPORT __declspec (dllexport)
    #endif

    // MESSAGE BOX OK...
  21. Replies
    3
    Views
    1,538

    ahh thanks. I thought that because menu.h was...

    ahh thanks. I thought that because menu.h was declared in my res file, that I didnt need it in the cpp file.
  22. Replies
    3
    Views
    1,538

    anyone?

    anyone?
  23. Replies
    45
    Views
    5,016

    give me 24.50/hr (US) and ill do t

    give me 24.50/hr (US) and ill do t
  24. Replies
    3
    Views
    1,538

    Need help with making menus

    i have the menu built and added into my windows and now im trying to make it do certain things when people click on the items. here are my errors:


    --------------------Configuration: icons -...
  25. Replies
    2
    Views
    3,504

    here is everything before it is included: //...

    here is everything before it is included:


    // Just say no to MFC
    #ifndef WIN32_LEAN_AND_MEAN
    #define WIN32_LEAN_AND_MEAN
    #endif

    // Include statements...
Results 1 to 25 of 114
Page 1 of 5 1 2 3 4