Click here to Skip to main content
15,914,500 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Mobile Application in .net Pin
Tom Deketelaere8-Oct-07 22:26
professionalTom Deketelaere8-Oct-07 22:26 
GeneralRe: Mobile Application in .net Pin
Ahamed Azeem8-Oct-07 22:34
Ahamed Azeem8-Oct-07 22:34 
GeneralRe: Mobile Application in .net Pin
Tom Deketelaere8-Oct-07 23:06
professionalTom Deketelaere8-Oct-07 23:06 
GeneralRe: Mobile Application in .net Pin
Ahamed Azeem8-Oct-07 23:15
Ahamed Azeem8-Oct-07 23:15 
GeneralRe: Mobile Application in .net Pin
Tom Deketelaere8-Oct-07 23:38
professionalTom Deketelaere8-Oct-07 23:38 
GeneralRe: Mobile Application in .net Pin
Ahamed Azeem8-Oct-07 23:49
Ahamed Azeem8-Oct-07 23:49 
GeneralRe: Mobile Application in .net Pin
Tom Deketelaere9-Oct-07 0:19
professionalTom Deketelaere9-Oct-07 0:19 
Questionright click Pin
farah mazhar8-Oct-07 20:32
farah mazhar8-Oct-07 20:32 
AnswerRe: right click Pin
Vimalsoft(Pty) Ltd8-Oct-07 20:35
professionalVimalsoft(Pty) Ltd8-Oct-07 20:35 
AnswerRe: right click Pin
Tom Deketelaere8-Oct-07 21:07
professionalTom Deketelaere8-Oct-07 21:07 
AnswerRe: right click Pin
Taylor Kobani8-Oct-07 23:18
Taylor Kobani8-Oct-07 23:18 
AnswerRe: right click Pin
Dave Kreskowiak9-Oct-07 1:59
mveDave Kreskowiak9-Oct-07 1:59 
QuestionClose down Pin
twsted f88-Oct-07 20:23
twsted f88-Oct-07 20:23 
AnswerRe: Close down Pin
Vimalsoft(Pty) Ltd8-Oct-07 20:52
professionalVimalsoft(Pty) Ltd8-Oct-07 20:52 
GeneralRe: Close down Pin
Tom Deketelaere8-Oct-07 21:00
professionalTom Deketelaere8-Oct-07 21:00 
AnswerRe: Close down Pin
Tom Deketelaere8-Oct-07 20:55
professionalTom Deketelaere8-Oct-07 20:55 
GeneralRe: Close down Pin
Salman Sheikh8-Oct-07 21:45
Salman Sheikh8-Oct-07 21:45 
the best i found to let my form remain in maximized state is by overriding onSizeChanged method (or by handling sizechanged event) and writing following lines there

If Not DesignMode Then
If Not Me.WindowState = FormWindowState.Maximized Then
Me.WindowState = FormWindowState.Maximized
End If
End If

if user tries to change the size even by clicking on maximize button the form will restore back to previous stat. keep in mind initially you will have to set the windowstate of form to Maximized


Salman Sheikh

GeneralRe: Close down Pin
Tom Deketelaere8-Oct-07 22:06
professionalTom Deketelaere8-Oct-07 22:06 
AnswerRe: Close down Pin
GuyThiebaut8-Oct-07 21:42
professionalGuyThiebaut8-Oct-07 21:42 
AnswerRe: Close down Pin
Taylor Kobani8-Oct-07 23:21
Taylor Kobani8-Oct-07 23:21 
Questionconvert txt file to ms-access [modified] Pin
Rinki Mukheraji8-Oct-07 20:09
Rinki Mukheraji8-Oct-07 20:09 
AnswerRe: convert txt file to ms-access Pin
pmarfleet8-Oct-07 21:23
pmarfleet8-Oct-07 21:23 
AnswerRe: convert txt file to ms-access Pin
Salman Sheikh8-Oct-07 21:49
Salman Sheikh8-Oct-07 21:49 
Question"How can I convert english language statement in my own language in VB 6.0? " Pin
aspdotnetvijay8-Oct-07 20:06
aspdotnetvijay8-Oct-07 20:06 
AnswerRe: "How can I convert english language statement in my own language in VB 6.0? " Pin
Tom Deketelaere8-Oct-07 21:02
professionalTom Deketelaere8-Oct-07 21:02 

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.