thanks a LOT :D
V_shr
Posts
-
ALT code -
ALT codei want to press the alt not to check if it is pressed or not . :D thnx , V_shr
-
ALT codelol,i wanted the something in "VK_something" , my question's answer is : the alt code is (for example) VK_ALT ! or something like that , i know how to get other keys like VK_Shift , but there is nothing about ALT key in my book :(
-
ALT codehi all, i wanted to simulate pressing ALT by keybd_event() but i dont know the code , or if it is a virtual key. does any1 know code or virtual_key value? thnx
-
a windows API function to convert JPG into BMP [modified]thnx , here its 3:00 pm , ill try it tomarrow :D
-
a windows API function to convert JPG into BMP [modified]do u know where can i get atlimage.h ??? CImage is a new class included with VC7 i think, but i use BC++ :( -- modified at 17:26 Thursday 25th October, 2007
-
a windows API function to convert JPG into BMP [modified]actually i searched in articles for "jpg to bmp API" the answers was s.th else ! for example changing icons to ... !!! i also looked in my API book but i couldnt find , man plz hlp
-
a windows API function to convert JPG into BMP [modified]i searched ... nothing , i wonder maybe i use bad key words !
-
a windows API function to convert JPG into BMP [modified]topic says all :D is there any? thnx
-
keys codes in APIs like Keybd_Eventthanks a lot
-
keys codes in APIs like Keybd_EventI want up , down , left and right arrow keys codes to use in bVk of Keybd_Event API function , but i don't know the codes . could anyone help me ?
-
how to delay in the middle of the code without cpu usagethanks
-
how to delay in the middle of the code without cpu usageIm talking about TTimer
-
how to delay in the middle of the code without cpu usageI want to delay in the middle of my code without cpu usage , I mean I dont want to use things like timer . if there is any function or algurithm like delay() in turbo C . thanks
-
how to findout that a certain program is running or notthanks a lot
-
how to findout that a certain program is running or notI want to write a program and I need to see that is a certain program running or not , how can I do that ? thanks
-
Copying HTML page along with the images from it.Hi As I know there isnt any API for that . you should search for image function in the html file , and find the image adresses and copy them near the html file , then you should change the adresses in the file to new addresses (related addresses) . Then you can copy them wherever you want . It will take time to do that ...but if you want to write the program you should spend time .
-
getting two keys from keyboard simultaneouslyHI I want to get two keys from the keyboard simultaneously , I mean when you press and hold two keys the kbhit() and getch() functions return only the first pressed key . thanks
-
how to ask a yes or no questionThanks
-
How to write CString to a .txt filechar string[100]="hello"; FILE *p; p=fopen("C:\a.txt","w"); fprintf(p,"sample string is : %s",string); ------------------------------------------ also you can see fprintf and it's examples in help .