Summary: I usually use VB 6 but im being tasked with using VB.NET Can anyone tell me how with like my command button i can open another form on my project and ...
Summary: You need to be looking at an Array of Forms. You create a form with an index of 0 as design time. At runtime you can create more forms using the Loa...
Summary: Or, try this: For Each Form in Forms Unload Form Next 'Forms' is an array containing all the open forms. the loop simply closes them all 1 by 1. very ...
Summary: Put a Call to the following Sub in each form Load Event. It will unload every form except the MDI Form itself. Public Sub unload_forms() Dim i As In...
Summary: I have made two forms now what i want is pretty simple i load the first form and from form2 i loaded the second one now what i want is that when i exi...
Summary: You can experiment with load and unload. I used them before with textbox array. Draw a textbox on the form, set index to 0 to make it an array control...
Summary: I think the problem is in the way you are using the Timer. You set the timer interval at the beginning of you code somewhere, probably in the form lo...
Summary: You should never use End to terminate a VB application. End is a debugging tool and nothing else. It can leave stuff still in memory. Use Unload.Me....
Summary: I am using SetParent API to make the MDI of my app to sit in IE. I am using my own custom controls (labels, frames, option boxes, check boxes, command...
Summary: The form is only part of the project. If you do not save the project you have lost any other parts of the project you have added. VB will always star...
Summary: Making progress. I received "success" messages on Lines #1, 2, and 6 below. I received "invalid parameter" mesaages on lines #3 and 4. I received "...
Summary: #include <windows.h> //need to access ShellExecute() /* NOTE: Compiler Borland C++ Builder 5 Windows 2000 Actually this is just the main fun...
Summary: I believe your statement about the mainline calling a subroutine, then the program remains in the subroutins, is your problem. The mainline should cal...
Summary: Look in the Form.Unload, Form.Terminate and Form.QueryUnload events. All these events are triggered when a form is closed but with slightly different ...
Summary: Man I'm about to give up!! here is what i cant make the vbproject do Have two forms both bound to the same "dataSource". On the first form (Text1) is ...
Summary: MD80'er: Have you tried to have your updating / retrieving (SQL DB manipulations) inside of a module and not just an individual form? I have a similar...
Summary: Iam developing a software for a eye specialist doctor. The problem is, i want to generate the patient number automatically in the Label box . I nee...
Summary: Thanks for the quick reply, but I've tried that without success. The problem is that the GIF to be displayed is triggered by clicking one of an array ...
Summary: Ok here is the problem. I have a form (form2) that has 5 data fields. It opens up and only shows data depending on a field from another form(Form1). I...
Summary: I'm in the process of learning VB6. I need to be able to specify an external EXE (iw3mp.exe) and set it's path as a variable, or write it's path to th...
Summary: Here is what I want to do. I want that when I start my project in vb.net that the form is invisible when it loads. I tried me.hide() it works on a bu...
Summary: Hi, In VB you can have multiple forms in your project. Say I have a variable in Form1 that reachs a certain value. When it hits this value I want F...
Summary: Pls Say how to identity which form is currently loaded. i hav ten form (both MDIchild and normal form), now i want to identity which form is currently...