hello!! i try to drag items between listctrls in my application,but when i drag more than 8 items at one time,the dragmove operation is so slow. i find that CImageList::DragMove function is so slow,but why? and how to solve it? help me!!
C
chpsoft
@chpsoft
Posts
-
about drag and drop -
Concatenation of two LPSTRit is wrong certainly.because your "myString" points to a static data area,which can not be changed.so ,your "myString = "Whats " + myString" is wrong.you must do so: char str[10]="up?"; char mystring[20]; sprintf(mystring,"Whats %s",str);
-
how to receive app launch message?i see!thank you!
-
how to receive app launch message?can you tell me what's the difference of HCBT_CREATEWND and HSHELL_WINDOWCREATED?
-
how to receive app launch message?thank you. But can you give me a demo code?or where can download such demo? thank you again.
-
how to receive app launch message?I switch the default desktop to mine,and i produce taskbar myself.So i want to receive some message when system shell is ready to launch an application and to terminate an application. how can i do? hook? or other?