Click here to Skip to main content
15,913,773 members
Home / Discussions / C#
   

C#

 
GeneralRe: Forms Show ShowDialog ImageEditing Pin
Heath Stewart12-May-04 10:02
protectorHeath Stewart12-May-04 10:02 
GeneralWeb services Pin
yuke12-May-04 6:45
yuke12-May-04 6:45 
GeneralRe: Web services Pin
Mazdak12-May-04 8:57
Mazdak12-May-04 8:57 
GeneralRe: Web services Pin
yuke12-May-04 21:35
yuke12-May-04 21:35 
GeneralSynfusion Pin
DotNetNew12-May-04 5:43
DotNetNew12-May-04 5:43 
Generalknowing when a form move is complete Pin
HappyPaws12-May-04 5:23
HappyPaws12-May-04 5:23 
GeneralRe: knowing when a form move is complete Pin
Heath Stewart12-May-04 5:33
protectorHeath Stewart12-May-04 5:33 
GeneralRe: knowing when a form move is complete Pin
HappyPaws12-May-04 8:21
HappyPaws12-May-04 8:21 
Thanks for the response. Wink | ;) The LocationChanged seems to work the same as form move. They come in constantly and I do not know when they are done. I want them to be able to basically move the form close to a quadrent and when they let up on the mouse it will snap into that corner. If they let up and there is already a form there, then it will snap back.
I put an override of WndProc and waited for a WM_NCLBUTTONUP (0x00A2) so I could see when it was finished, but it never gets there. I am not that familiar with WndProc so is there something I am doing wrong?

protected override void WndProc(ref Message m)
{
if (m.Msg == WM_NCLBUTTONUP)
{
//put a breakpoint here
}
base.WndProc(ref m);
}
private const int WM_NCLBUTTONUP = 0x00A2;

Thanks
GeneralRe: knowing when a form move is complete Pin
Heath Stewart12-May-04 9:22
protectorHeath Stewart12-May-04 9:22 
GeneralChecking if control moved Pin
lustuyck12-May-04 4:25
lustuyck12-May-04 4:25 
GeneralRe: Checking if control moved Pin
Heath Stewart12-May-04 4:46
protectorHeath Stewart12-May-04 4:46 
GeneralSize of Folder Pin
Meysam Mahfouzi12-May-04 4:19
Meysam Mahfouzi12-May-04 4:19 
GeneralRe: Size of Folder Pin
Dave Kreskowiak12-May-04 4:21
mveDave Kreskowiak12-May-04 4:21 
GeneralMessage Removed Pin
12-May-04 4:27
wibblewibblewibble12-May-04 4:27 
GeneralRe: Size of Folder Pin
Meysam Mahfouzi12-May-04 17:02
Meysam Mahfouzi12-May-04 17:02 
GeneralRe: help on wmi and registry Pin
Heath Stewart12-May-04 4:01
protectorHeath Stewart12-May-04 4:01 
QuestionHow to invoke the compress() from Zlib.dll Pin
fu012-May-04 3:00
fu012-May-04 3:00 
AnswerRe: How to invoke the compress() from Zlib.dll Pin
Heath Stewart12-May-04 3:09
protectorHeath Stewart12-May-04 3:09 
Generalcreating query builder Pin
karteek12-May-04 2:28
karteek12-May-04 2:28 
GeneralRe: creating query builder Pin
Paul Watson12-May-04 4:47
sitebuilderPaul Watson12-May-04 4:47 
GeneralGet a reference to the Form from a IComponent on the ComponentTray Pin
Daniel Zaharia12-May-04 1:13
Daniel Zaharia12-May-04 1:13 
GeneralRe: Get a reference to the Form from a IComponent on the ComponentTray Pin
Heath Stewart12-May-04 3:19
protectorHeath Stewart12-May-04 3:19 
GeneralRe: Get a reference to the Form from a IComponent on the ComponentTray Pin
Daniel Zaharia12-May-04 3:30
Daniel Zaharia12-May-04 3:30 
GeneralRe: Get a reference to the Form from a IComponent on the ComponentTray Pin
Heath Stewart12-May-04 4:04
protectorHeath Stewart12-May-04 4:04 
GeneralRe: Get a reference to the Form from a IComponent on the ComponentTray Pin
Daniel Zaharia12-May-04 4:13
Daniel Zaharia12-May-04 4:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.