- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
7 Posted Topics
Hi there, Is it posible to declare multiple image handlers using an array? Example: HBITMAP ARRAY[10]; //Then use a loop to display a different bitmap for each member of the array? while(count < 10){ mkey1[count] = LoadBitmap(GetModuleHandle(NULL), MAKEINTRESOURCE(IDB_BITMAP)); Something like that, obviously changing the bitmap each time it goes round … | |
hi i have a win32 c program. in it there are a few buttons and i am trying to get the program to display a differnet bitmap, for each button. Now i have managed to change the bitmap with this case ID_STUFF_SMALLKEY: image = LoadBitmap(GetModuleHandle(NULL), MAKEINTRESOURCE(IDB_SMALL)); if(image == NULL) MessageBox(hwnd, … | |
Can anyone help? Does anyone know of a simple peice of code in c/c++ that will allow me to convert ASCII characters into their relevent binary code and back again? Cheers. | |
hi there, i am trying to get my program to display a different bitmap in four different child windows of my win32 C program but i cant seem to do it. Any idea's? I have got the information so far off of the forgers win32 tutorial. [CODE] #include <windows.h> #include … | |
[font=Arial][size=2]Hi I am trying to write a program that will demonstrate encryption to the user. I would like to have some kind of button menu at first, then the program will show an example of each depending on what button was pressed. Any idea's? Should I go for a win32, … | |
Hi there guys! I am trying to write a program using Visual C++ 6.0. It is a dialog MFC executable application (i dunno if this is the best to use) which has three buttons, say A,B and C. I would like the program to display one picture if the user … |
The End.