Hi there How to add a toolbars to a win32 application? Thanks
wow9999
Posts
-
Win32 -
CallbackDear all What is Callback? (difinition) when is Callback being used? Thanks
-
resize DCHi there Is it passible to resize DC? Thanks
-
convert double to Integer?????????Hi there How to convert double to int? Q1: if a double is smaller than 1.4, it will be assign to 1 Ex: 1.3 will be 1 if a double is bigger than 1.4, it will be assign to 2 Ex: 1.5 will be 2 Q2: if a double is bigger than 1 and smaller than 2, it will be assign to 2 Ex: 1.20 will be 2 2.10 will be 3 Does anyone know the function? Thanks.
-
how to disable Shift keyhi there 1.How to disable Shift key? 2.How to change Shift key function to let it become as same as Ctrl key?
-
0x8000??????Hi there SHORT nState = GetAsyncKeyState(VK_CONTROL); BOOL bDown = (nState & 0x8000); what does 0x8000 mean and where can i find the infomation? By the way, What does (nState & 0x8000) mean? Thanks
-
Cannot access the ClassView information file????Hi there I got a message "Cannot access the ClassView information file. ClassView information will not be available", when I open my workspace. can someone tell me why? By the way, i also can not insert a new class. Thanks
-
Class Problem?//A.h Class A { A(int i, int j); int GetIJ(); int K,L; } //A.cpp { A::A(int i, int j) { K=i; L=j; } A::GetIJ() { int M=K+L; return M; } } //B.cpp A *ATemp; { void B::FirstFunction() { int a=5; int b=6; A aTest(a,b); //Create a A Instance "aTest" ATemp=&aTest; //assign aTest to ATemp } void B::SecondFunction() { int XYZ=ATemp->GetIJ(); //Is this correct? If this is wrong please tell me why } } ************** Can I Create a Object in one function and using the object at another function?
-
Char[1] to UINT ???Thanks for your reply.
CString aStr = "中文";//a Chinese CString char cChinese[3]; cChinese[2] = '\0'; int i = 0; while (i= 0xA1 && (byte)aStr[i] <=0xFE) { cChinese[0] = aStr[i]; cChinese[1] = aStr[i+1]; UINT aWord = cChinese // is it possible to assign the arrary to UINT ++i; } ++i; }
-
Char[1] to UINT ???Hi How to convert the Char[1] to UINT? Thanks
-
Extracting Chinese Character from a CStringDear all CString aStr="Learning 中文"; //a mixed English and Chinese string Extracting each Chinese Character from The String and assign it to a UINT data type. UINT aWord = ???? i use _MBCS not unicode can someone tell me how?
-
Extracting a Chinese Character from a CStringThank you. can you tell me how to make a one double-bye character?
-
Extracting a Chinese Character from a CStringDear all CString aStr="Learning 中文"; //a mixed English and Chinese string Without using Unicode, How can i extract the Chinese Character word by word from a Mixed English and Chinese string? Thanks
-
Data type?Hi everybody I have a Chinese sentence;for example,"大家好", I don't know which kind of Data types I can use to assign this sentence to. I use CString, but it does not work. and the UNIT only read one word. Thanks
-
Can not find classHi all I import a Dialog and its cpp and .h from other workspace, but when i open the classwizard, i can not find the Dialog's class name in Class Name. what happend?
-
can not access the calss view????Hi When i load my workspace, i get a message "can not access the calss view information file. classview information will not be available". how can i fix this problem? Thanks
-
TTFTODXFHI THERE Where can I find a Program, which include source code, or any information for converting TTF to DXF? Thanks
-
Read DLL source codeHi all how can i open a dll to read it's scource code? Thanks
-
File Access TimeHi all How to get a file's last modified time? Thanks
-
convert Integer to StringHi all Convert Integer to String! How? Thanks