|
First
|
Prev |
Next
|
Last
Pages: 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
cannot register ocx Hi, I am trying to register an ocx component in Win 2000 using command line of the form regsvr32 textmap.ocx however I get this messagebox error as LoadLibrary (textmap.ocx) failed : Cannot find module. Help me whats the problem... sandSpiderX ... 1 Jul 2005 17:45
Automated GUI testing Hi, I'm in the process of developing a GUI testing tool. The tool should provilde the ability to define a GUI test case using a 'script' and then 'simulate' the necessary key/mouse inputs and 'recognize' actual outputs on the screen using OCR or similar techniques. The platform I use is MFC with VC 6.0 or 7.0 ... 1 Jul 2005 17:45
Deleting Folder - RemoveDirectory() Hi to All, i want to delete the folder, it may be an empty folder or may contain files/sub-folders. when i used RemoveDirectory() , the empty folders are only gets deleted. so, which function i may use for deleting folders containing files/sub-folders/empty. Thanks in advance. Kishor. ... 5 Jul 2005 06:04
VFW, webcam, image format Hello, I'm trying to grab pictures from a webcam with Video For Windows (VFW). The source code I use is the following: HWND _capwnd = capCreateCaptureWindow("Capture",WS_POPUP,0,0,1,1,0,0); capDriverConnect(_capwnd,0); capGrabFrame(_capwnd); capEditCopy(_capwnd); OpenClipboard(NULL); HB... 1 Jul 2005 08:52
Activex, CSocket and CResourceException Problem Hi, I'm trying to write activex control with mfc which connect to the another app through socket. The socket conn form activex to the app is made on a different thread. The thread is initialize by function: HANDLE threadHandle = CreateThread(NULL,NULL, (LPTHREAD_START_ROUTINE)Thread... 30 Jun 2005 19:28
afxwin1.inl - Debug Assertion Failed I am running the debugger in VC++ 6.0. It says the assert is on the following line (27): { ASSERT(afxCurrentAppName != NULL); return afxCurrentAppName; } This happens when one of my dlls is executing. I tried adding the following as a global in the main code, but this did not help. CWinApp MyApp("xxxx")... 29 Jun 2005 17:46
CTime I'd like to calculate elapsed time. For example: CTime t1 = CTime::GetCurrentTime(); while (true) { //do something... CTime t2 = CTime::GetCurrentTime(); //Check if 60 seconds elapsed?!? if (t2 - t1 > 60000) break; } How can I do it? :( ... 30 Jun 2005 03:29
undeclared identifier Hello: I have error C2065: 'IsUserAnAdmin' : undeclared identifier when calling function IsUserAnAdmin() from MFC appl. I included header file <shlobj.h> and added shell32.lib but it didn't help. Does somebody know what i'm doing wrong ? thank you, dave ... 22 Jun 2005 14:25
Property sheets and compstui Hi, I have property sheet page dialog created using mfc. I want to plug in this mfc property sheets into the cpsui model so I can use this in printer drivers. The only way you can add property sheets in printer drivers is to use the cpsui with the CPSFUNC_ADD_PROPSHEETPAGE. for this I will have to fill i... 19 Jun 2005 20:40 |