Prev: Happy Birthday
Next: Print to a specific printer
From: mp on 21 Jun 2010 12:56 "David Kerber" <dkerber(a)WarrenRogersAssociates.invalid> wrote in message news:MPG.26891ee3977c721698968e(a)news.eternal-september.org... > In article <#DE2mEQELHA.3344(a)TK2MSFTNGP04.phx.gbl>, nospam(a)Thanks.com > says... >> >> it doesn't appear to, >> how else can i know when a form was moved by user clicking in titlebar >> and >> dragging to new position? > > Why would your care where the user moves it to? > > D so i can save the location and reopen there on next program run mark
From: mp on 21 Jun 2010 12:59 "Larry Serflaten" <serflaten(a)gmail.com> wrote in message news:hvnkj2$d1v$1(a)news.eternal-september.org... > > "mp" <nospam(a)Thanks.com> wrote >> it doesn't appear to, >> how else can i know when a form was moved by user clicking in titlebar >> and >> dragging to new position? > > Why do _you_ need to know? > When do you _need_ to know? > > Think about those, with an open mind of course, and perhaps you'll > see clear to another solution.... > > LFS > > well, i was trying in Form_Terminate but that was calling Form_Load again (on calls to Me.Left etc) must be _Unload is the trick? will try thanks mark
From: Rick Rothstein on 21 Jun 2010 13:18 Why not just automatically save the location when the program ends... if the location is the same, so what? -- Rick (MVP - Excel) "mp" <nospam(a)thanks.com> wrote in message news:hvo5k9$4u8$1(a)news.eternal-september.org... > > "David Kerber" <dkerber(a)WarrenRogersAssociates.invalid> wrote in message > news:MPG.26891ee3977c721698968e(a)news.eternal-september.org... >> In article <#DE2mEQELHA.3344(a)TK2MSFTNGP04.phx.gbl>, nospam(a)Thanks.com >> says... >>> >>> it doesn't appear to, >>> how else can i know when a form was moved by user clicking in titlebar >>> and >>> dragging to new position? >> >> Why would your care where the user moves it to? >> >> D > > so i can save the location and reopen there on next program run > mark >
From: mp on 21 Jun 2010 13:27 "Rick Rothstein" <rick.newsNO.SPAM(a)NO.SPAMverizon.net> wrote in message news:eCHqRXWELHA.5668(a)TK2MSFTNGP04.phx.gbl... > Why not just automatically save the location when the program ends... if > the location is the same, so what? > > -- > Rick (MVP - Excel) > Thats' what i'm trying to do. but it wasn't working in Form_Terminate so I was trying it in Form_resize going to try Form_Unload. mark > > > "mp" <nospam(a)thanks.com> wrote in message > news:hvo5k9$4u8$1(a)news.eternal-september.org... >> >> "David Kerber" <dkerber(a)WarrenRogersAssociates.invalid> wrote in message >> news:MPG.26891ee3977c721698968e(a)news.eternal-september.org... >>> In article <#DE2mEQELHA.3344(a)TK2MSFTNGP04.phx.gbl>, nospam(a)Thanks.com >>> says... >>>> >>>> it doesn't appear to, >>>> how else can i know when a form was moved by user clicking in titlebar >>>> and >>>> dragging to new position? >>> >>> Why would your care where the user moves it to? >>> >>> D >> >> so i can save the location and reopen there on next program run >> mark >>
From: mp on 21 Jun 2010 13:29
"mp" <nospam(a)thanks.com> wrote in message news:hvo5pt$5gq$1(a)news.eternal-september.org... > > "Larry Serflaten" <serflaten(a)gmail.com> wrote in message > news:hvnkj2$d1v$1(a)news.eternal-september.org... >> >> "mp" <nospam(a)Thanks.com> wrote >>> it doesn't appear to, >>> how else can i know when a form was moved by user clicking in titlebar >>> and >>> dragging to new position? >> >> Why do _you_ need to know? >> When do you _need_ to know? >> >> Think about those, with an open mind of course, and perhaps you'll >> see clear to another solution.... >> >> LFS >> >> > > well, i was trying in Form_Terminate but that was calling Form_Load again > (on calls to Me.Left etc) > must be _Unload is the trick? will try > thanks > mark > oh yeah! that was it :-) |