How to Add/remove the Dialog caption and border at run time? TIA :rose:
adara
Posts
-
How to Add/remove the Dialog caption and border at run time? -
How to show a PNG image in my dialog ?Thanks:rose:
-
How to show a PNG image in my dialog ?How to show a PNG image in my dialog ? :rose:thanks
-
is there any way to get the facename from a TTF file ?great help , Thank you :rose:
-
is there any way to get the facename from a TTF file ?is there any way to get the facename from a TTF file ? Thanx:rose:
-
How to find the Network speed (without PDH)?How to find the Network speed (without PDH)? Thanx:rose:
-
how to change the title of a dialogvoid SetWindowText( LPCTSTR lpszString );
-
Bind Errortry this: memset((char *) &saServer, 0, sizeof(saServer)); saServer.sin_family=AF_INET; saServer.sin_addr.s_addr = inet_addr("192.168.0.4"); saServer.sin_port=htons(80); :rose:
-
iphlpapi.h?You need the platform SDK ,you can get it here:http://www.microsoft.com/msdownload/platformsdk/setuplauncher.htm[^]
-
Session id of a processIs there any way to know the session id of a given process ? thanx
-
Image Name and PrcessID#include #include #include #pragma comment (lib,"psapi.lib") int main(int argc, char* argv[]) { HANDLE hProc; char szProcessName [80]; HMODULE ahMod [10]; DWORD dwNeeded,dwPid; if(argc != 2) { printf("Usage: %s [pid]\n",argv[0]); return 0; } dwPid = atol(argv[1]); hProc = OpenProcess(PROCESS_QUERY_INFORMATION|PROCESS_VM_READ,FALSE,dwPid); if (hProc) { if (EnumProcessModules(hProc,ahMod,sizeof(ahMod),&dwNeeded)) { if(GetModuleBaseName(hProc,ahMod[0],szProcessName,sizeof(szProcessName))) printf("%s\n",szProcessName); else printf("%s\n","Not found"); } CloseHandle (hProc); } return 0; }
-
Determining privilege levels of running processthe calling process needs the SE_DEBUG_NAME privilege,that can be achieve using AdjustTokenPrivileges
-
Determining privilege levels of running processLook for OpenProcessToken and GetTokenInformation
-
Accessing network settingsThe 'IP Helper API' is what you need ,check the platform SDK
-
How can i know if the desktop windows Z order has been changedHow can i know if the desktop windows Z order has been changed? thanx
-
Event Viewer -
HELP! My Visual C++ 6.0 could not find Iphlpapi.hYou should DL the platform SDK from here: http://www.microsoft.com/msdownload/platformsdk/setuplauncher.htm
-
Help with device context please =>Thanx ,i will try to find another way to do it:rose:
-
Help with device context please =>Thanx,but my app must be visible all the time.. any other ideas??
-
Help with device context please =>i'm using GetWindowDC(NULL) to retrieve the device context for the entire screen, is there any way to retrieve the device context for the entire screen without my dialog in it ? thanx:rose: