Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
MDI Form in VB
Name: henry_joshua Date: February 10, 2005 at 05:08:07 Pacific OS: Win XP CPU/Ram: P-4/128
Comment:
Dear Friends, I have a MDI form and I want that only one child form must open at one time, i.e. when i open a new child form then all the open child forms must first close before opening the new one.
Summary: Ok I find that mdi forms are very annoying!...but i have to use them in this case. I want to know how you can make it have a no maximise button. And also there is no border style that allows the no re...
Summary: VB6->SQL2000 How do you make a standard master/detail form in VB? I'm trying to do a simple master/detail form and I can't get it working properly. If it were Access/VBA, I'd have had it done in no t...
Summary: What is it you are trying to do? You want a button on form 1 to show form 2? That is easy, since the form objects are global in vb. ON FORM1: Sub Command1_Click() Form2.Show vbModal ' You don't ...