| Thread | Last Post | Replies |
|
| BitBlt to static control | 29 Sep 2006 17:16 GMT | 1 |
Hi, Is it possible to bitblt to a static picture control on PPC using VS2005 C++.?
|
| Picture control too small | 29 Sep 2006 13:47 GMT | 1 |
Hi, I've loaded a bitmap into a picture control as below: hBmp = SHLoadImageFile(L"Yes.png"); if (NULL == hBmp) return 0; hPic = GetDlgItem(hWnd,IDC_PICTURE1);
|
| How to install Updates for windows ce 5.0 | 29 Sep 2006 13:44 GMT | 1 |
I have a windows ce 5.0 anthena device. microsoft's Pdf Reader is installed on it that enables me to read .pdf files. but it doesn't show Chinese, Koread characters. So when I search on google for same problem, I found some useful links
|
| CString problem Migration EVC to VS2005 | 29 Sep 2006 11:23 GMT | 1 |
I have a problem with CString in VS 2005. I made a litte test program to find out what the problem is.... but without any results. When I put the "char cTest" into the contructor of the CString in
|
| PictureBox control which reacts to events | 28 Sep 2006 10:02 GMT | 2 |
Hi, There is a static picturebox control in the toolbox in VS2005 C++. I need a picturebox control which reacts to events ie click the picture. Is there anyway of achieving this?
|
| Problem with SHGetMenu() under WM5... | 27 Sep 2006 19:07 GMT | 1 |
I have a source code, which works perfect under Windows Mobile 2003: hMenu = (HMENU)::SendMessage(hMB, SHCMBM_GETMENU, 0, 0); hMB is the handle I've got after calling SHCreateMenuBar with a resource id which points to a menu resource with two main menu topics. The menu bar
|
| Linker Error | 27 Sep 2006 16:48 GMT | 4 |
I am writing an HID client driver for a device, and when I build in eMbedded Visual C++ 4.0, I get this linker error: error LNK2019: unresolved external symbol _HidP_GetCaps referenced in function _HIDDeviceAttach
|
| Setting caption programatically on DialogBox | 27 Sep 2006 16:10 GMT | 13 |
Hi, I'm develping PocketPC app, I've created a dialog box by filling in template DLGTEMPLATE structure. I want to set the caption of the dialog box programatically. How do i do this? I'm basically creating a skinnable dialog box in VS2005 C++ are there any samples to do this?
|
| the code is fine | 26 Sep 2006 23:05 GMT | 2 |
By the way I got the same linker error and more when I tried to build the HID examples that are provided with Platform Builder, so that rules out that it's a coding problem. Still waiting for suggestions!
|
| Delays on Serial Write under WinCE? | 26 Sep 2006 22:29 GMT | 2 |
Has anybody experienced any random time delays in the magnitude of approx. 3-13 ms between calling serial WriteFile() and actually sending the block of data down to the serial line under WinCE? I suspect that delays might be caused due to the way that WinCE handles serial ports.
|
| Visual Studio 2005 Express And CE 5.0 | 25 Sep 2006 23:08 GMT | 4 |
Can Visual Studio 2005 Express be used to build CE apps for CEPC? Thanks.
|
| Reading and Writing to Registry | 25 Sep 2006 16:59 GMT | 2 |
How do I read and write to registry keys other that the one set by SetRegistryKey()? For example, how would I read/write to sections in the registry key;[HKEY_CURRENT_USER\Drivers\Display\AU1100LCD] ?
|
| Debugging device drivers | 25 Sep 2006 13:43 GMT | 1 |
I'm writing a virtual COM port driver using Visual Studio 2005. I can load the driver DLL in my test program using RegisterDevice(), but I tried debugging the DLL in VS 2005 by calling the test program (like you would normally debug a DLL) and it doesn't work. Is there any other ...
|
| double buffer in Windows CE Custom control... | 25 Sep 2006 01:31 GMT | 1 |
All, I have seen code that does this in the constructor: this.SetStyle( ControlStyles.DoubleBuffer, true ); this.SetStyle( ControlStyles.UserPaint, true );
|
| about FindFirstFile function | 24 Sep 2006 20:53 GMT | 1 |
FindFirstFile and FindNextFile let me get whole name of a file,for example abc.exe.However what i want is first part of file name,for example abc.So how to realize it. Thanks for any help
|