What is the easiest way for changing CButton (MFC) text control?? Please help
Jump_Around
Posts
-
changing text color -
Initializnig a dialogbox dimensions??How to define a specific dialog window dimensions when the application (dialog based) starts? I could 't find such property in the property tabs. Please help
-
problem with including headersI have a question. I have some headers files in a directory which has been created inside the project directory. When I want to include the header file from a .cpp file the compiler says "no such file or directory" My question is where to add (projects settings) a path to the headers?? Please help me
-
MessageBox and font changing?Is there a possibility to change fonts in MessageBox(...) Please help
-
detecting outgoing connectionsI want to write a proxy so I need to detect all outgoing connections from my computer. Any sugestions how to do that. Please help
-
MAPII have a question, can I use MAPI to add extra functions to Outlook Express (not Outlook).
-
Outlook please helpAnother question. Can I use MAPI to solve the problem?
-
Outlook please helpWell, I would rather write it in C++ without using any components(especially in case the component is written in VB). How to check in spy++ what kind of message is comming when an email arrives? I know there are some products which have control on Outlook, without using any components, so I want to achive the same. Any more sugestions? P.S Thank ypu for your help
-
Outlook please helpWell, what I really want to do is a project which scans an incoming email content and puts it to a folder dependently what the content looks like. Please give me any suggestions, maybe a piece of code. Thank you
-
Outlook please helpIs there any possibility to call a function when an email arrives in the Outlook Express. How to get notification when an email arrives. Please help
-
Outlook Express please helpIs anyone who knows how to add a button (toolbar) to the Microsoft Outlook Express. I know there are some aplications which add extra buttons to OE. The second question is how to call a function when an email arrvies? Please help
-
Video capturingI have a problem with video capturing. When I call create function everything goes fine, it means capDriver is loaded succesfully, setting callback function goes fine.... . What i see on the cap window is just the first image which has been grabed. The problem is that the call back function is not called. How to change the code if I want to use frame callback function? Please help typedef LRESULT (CALLBACK *FRAMECALLBACK)(HWND , LPVIDEOHDR); LRESULT PASCAL _grabber_CallbackProc(HWND hWnd, LPVIDEOHDR lpVHdr); BOOL CCaptureVideo::Create(DWORD dwStyle, const RECT& rect, HWND pParentWnd) { hCaptureWnd=capCreateCaptureWindow("AviCap_Basic", dwStyle, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top, pParentWnd, AVICAP_WINDOW_ID); if(!hCaptureWnd) { TRACE("CAviCap Window creation failed\n"); //iLastError=CAP_WINCREATION_FAILED; return FALSE; } if( capDriverConnect(hCaptureWnd, DEFAULT_CAPTURE_DRIVER) ) { AfxMessageBox("cap Driver connect ok"); } if (capSetCallbackOnFrame(hCaptureWnd, _grabber_CallbackProc) ) { AfxMessageBox("Callback ok"); } if( capPreview(hCaptureWnd, FALSE)) { AfxMessageBox("Preview ok"); } return TRUE; } LRESULT PASCAL _grabber_CallbackProc(HWND hWnd, LPVIDEOHDR lpVHdr) { AfxMessageBox("grab"); return 0; }
-
Enumerating connectionsHow to enumerate a connection as Active as soon as it starts dialing? under windows 2000/XP/NT? Only under win 98 RasEnumConnections function returns handle when the system starts dialing? Please help, very important
-
system startup progrematicalyyou have to put the path to your .exe file into the registry HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run using win api you can do this like that name is a path to your application void SetDeafultRegistries(char *name) { if( name == NULL) return; HKEY hKey; if(::RegCreateKeyEx(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Run", NULL, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hKey, NULL)==ERROR_SUCCESS) { RegSetValueEx(hKey, "InternetProfile", NULL, REG_SZ, (BYTE*)(name), strlen(name)); } RegCloseKey(hKey); return; }
-
Wininet.h problemI want to use an example from msdn which tells how to set the proxy settings (Explorer). The problem is that my compiler doesn't know what PROXY_TYPE_PROXY is and many others. Those deifinitions are in the wininet.h but probably I have the older version cause there is nothing about in there. My wuestion is how to download (wininet.h), I do not need (and have no time) to download all sdk. Maybe you know hot to change proxy setting for DUN ? Please help.
-
embedding window into dialogI need your help How to embbed a simple window into dialogbox (modeless) using CreateWindowEx function?. I really need that one
-
Dial up connections, please helpIs anyone here who knows how to set a dial up connection as a deafult one ( using WinApi) Please help
-
Changing fonts on the buttonHow to change a font on a button using windows API? Please help
-
Dialog box questionOK but I said I use api windows not MFC. Any suggestions?
-
Dialog box questionI use api and I have a question DialogBox(hInst, MAKEINTRESOURCE(IDD_AUTHORIZATION), main_hwnd, (DLGPROC)authDialog); where main_hwnd is a handler to the parent window. But when the dialog box appears it is not shown relatively to the parent window. Relatively I mean at the center. Could you help me how to change the code to set the dialog box at the center of parent window?