Click here to Skip to main content
15,892,005 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: how can i handle a datagridview in vb.net Pin
yogesh_kumar_agarwal29-Feb-08 21:49
yogesh_kumar_agarwal29-Feb-08 21:49 
GeneralRe: how can i handle a datagridview in vb.net Pin
r_mohd29-Feb-08 22:36
r_mohd29-Feb-08 22:36 
GeneralRe: how can i handle a datagridview in vb.net Pin
yogesh_kumar_agarwal29-Feb-08 22:51
yogesh_kumar_agarwal29-Feb-08 22:51 
QuestionManage MDI childs Pin
highjo29-Feb-08 12:27
highjo29-Feb-08 12:27 
GeneralRe: Manage MDI childs Pin
J$29-Feb-08 13:16
J$29-Feb-08 13:16 
GeneralRe: Manage MDI childs Pin
yogesh_kumar_agarwal29-Feb-08 17:21
yogesh_kumar_agarwal29-Feb-08 17:21 
GeneralRe: Manage MDI childs Pin
darkelv29-Feb-08 17:59
darkelv29-Feb-08 17:59 
GeneralRe: Manage MDI childs Pin
Sachin Gokhale2-Mar-08 18:48
Sachin Gokhale2-Mar-08 18:48 
Create a object of the form (probably in a module)-
For e.g
Dim objfrm1 as Form1

Now, on click event of the context menu (or button) write the following code -

if isnothing(objfrm1) then
objfrm1 = new form1
objfrm1.MdiParent = me
objfrm1.show()
else
objfrm1.focus()
end if

Also, do not forget to set the obj to nothing on the form closing event.
I mean, on CLOSING event of form1 write the followng code.
objfrm1 = nothing

Worring about losing keeps me WINNING>>..
GeneralRe: Manage MDI childs Pin
highjo11-Mar-08 5:58
highjo11-Mar-08 5:58 
GeneralRe: Manage MDI childs Pin
Anoop Brijmohun2-Mar-08 23:13
Anoop Brijmohun2-Mar-08 23:13 
GeneralRe: Manage MDI childs Pin
highjo3-Mar-08 6:13
highjo3-Mar-08 6:13 
QuestionQuestio how to input massage into yahoo chat screen Internet Explorer_Server Pin
VB_Crazy29-Feb-08 9:10
VB_Crazy29-Feb-08 9:10 
GeneralRe: Questio how to input massage into yahoo chat screen Internet Explorer_Server Pin
Dave Kreskowiak29-Feb-08 9:25
mveDave Kreskowiak29-Feb-08 9:25 
GeneralRe: Questio how to input massage into yahoo chat screen Internet Explorer_Server Pin
VB_Crazy29-Feb-08 18:35
VB_Crazy29-Feb-08 18:35 
GeneralRe: Questio how to input massage into yahoo chat screen Internet Explorer_Server Pin
VB_Crazy12-Mar-08 9:08
VB_Crazy12-Mar-08 9:08 
JokeHey Pin
Nebstar29-Feb-08 6:36
Nebstar29-Feb-08 6:36 
GeneralRe: Hey Pin
Dave Kreskowiak29-Feb-08 7:16
mveDave Kreskowiak29-Feb-08 7:16 
GeneralRichTextBox RightToLeft problem Pin
helelark12329-Feb-08 6:30
helelark12329-Feb-08 6:30 
GeneralRe: RichTextBox RightToLeft problem Pin
Dave Kreskowiak29-Feb-08 7:20
mveDave Kreskowiak29-Feb-08 7:20 
GeneralRe: RichTextBox RightToLeft problem Pin
helelark12329-Feb-08 22:29
helelark12329-Feb-08 22:29 
GeneralRe: RichTextBox RightToLeft problem Pin
Dave Kreskowiak1-Mar-08 14:43
mveDave Kreskowiak1-Mar-08 14:43 
AnswerRe: RichTextBox RightToLeft problem Pin
helelark1232-Mar-08 3:29
helelark1232-Mar-08 3:29 
Questionwho could show me a sample about delegation in vb.net? Pin
JUNEYT29-Feb-08 3:48
JUNEYT29-Feb-08 3:48 
GeneralRe: who could show me a sample about delegation in vb.net? Pin
darkelv29-Feb-08 3:55
darkelv29-Feb-08 3:55 
QuestionHow to pass the parameter fields to Crystal Report through vb.net? Pin
sathyan_829429-Feb-08 2:31
sathyan_829429-Feb-08 2:31 

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.