create form like ICQ
-
What do you mean excactly with 'like ICQ'? Maybe you can use the msn API, or skype beta API? I don't really know if ICQ has an API too, maybe it has? Try a search on google... Succes
-
What do you mean excactly with 'like ICQ'? Maybe you can use the msn API, or skype beta API? I don't really know if ICQ has an API too, maybe it has? Try a search on google... Succes
-
Hello You will have to use windows API to do this. The function is
::SetWindowPos(m_hWnd , // handle to window
HWND_TOPMOST, // placement-order handle
rect.left, // horizontal position
rect.top, // vertical position
rect.Width(), // width
rect.Height(), // height
SWP_SHOWWINDOW // window-positioning options);search for how to handle unmanaged calls from C#, and dllImport. Regards:rose: