Thank you very much,Christopher Fairbairn! I think that is all I need.
Nothing Is Impossible !
Thank you very much,Christopher Fairbairn! I think that is all I need.
Nothing Is Impossible !
Which API is called when open a directory in WinCE ? I tried to monitor CreateFileW API to find out if it is used for opening a directory but It's not. HANDLE _CreateFileHook( LPCTSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile) { HANDLE H=INVALID_HANDLE_VALUE; if (wcsstr(lpFileName,L"My Documents")!=NULL) { MessageBox(GetForegroundWindow(),L"???",NULL,MB_OK); } else H=((t_CreateFile*)Old)(lpFileName,dwDesiredAccess,dwShareMode,lpSecurityAttributes,dwCreationDisposition,dwFlagsAndAttributes,hTemplateFile); return H; } When i clicked on My Documents directory,It didn't do anything! But when I opened one file on this directory, the MessageBox appeared. I don't know which API I must to intercept in this case.( to prevent from opening a directory).:confused: Help me !!! Thanks !
Nothing Is Impossible !
Hi everyone ! Do you know which process and API run when you open a folder in WinCE? Do you know some API monitor for CE? Help me ! Thanks !
Nothing Is Impossible !
I'm finding how to set password and lock a folder in Win CE? Can someone show me which book I should read or where to start?
Nothing Is Impossible !
Hi everyone! I'm finding API's function or MFC class for working with FAT(File Alocation Table): Read infomation from FAT, work with directories and files (copy, read, write, delete...). Can somebody show me ? Thank you at all.
Nothing Is Impossible !
I am writing a program that can recognize which file system is being used on an USB drive when USB is plugged in.(FAT 16, FAT 32 or NTFS) How can I do it? Do you have any solutions for this proplem? Thank you !
Nothing Is Impossible !
When you move a dialog (or a CWnd object) your dialog's background will be repainted. It make some unsmooth effects when you have to move your Window too much times (for example you build a drop down window). Have any solutions for this problem ?
Nothing Is Impossible !
Windows CE does not support the following methods of the CRgn class: CreateEllipticRgn CreateEllipticRgnIndirect CreatePolygonRgn CreatePolyPolygonRgn CreateRoundRectRgn So how can I create my own custom region for my dialog (for example a heart shape region) (in Windows CE)? I just mean custom region. Do you have any solutions for this proplem ? Thank you.
Nothing Is Impossible !
I am trying to know "How infomation(data) are stored in an USB mass storage?" (like Sector, track on HDD, or may be structure of USB drive). Then I want to write a program that can show 'where is my file(for example, myfile.txt) on an USB drive?'. This Program then can access and modify this file (open, write, copy, delete...). And what I am findind now is some books and codes about "Organize(arrange) and access data in an USB drive". I hope somebody can help me.And I hope you are. Thank you very much !
Nothing Is Impossible !
Because it's my project. Thank you.
Nothing Is Impossible !
I'm looking for some books and code about "Organize and Access data in an USB storage". Do you have any about it? Please share with me. thank you very much ! My email: nguyenvodich@gmail.com
Nothing Is Impossible !
I'm doing a program to solve the problem: find the k-shortest paths in a directed graph from source vertex s to destination vertex t. Do you have some codes for this? Please send me. Thanks! :)
Nothing Is Impossible !