473,491 Members | 2,221 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

VB 6 LOAD form to VB.NET Question

I am trying to learn VB.Net and can't figure out how to call a from from
another form. In VB6, I just issue a Load FormX, and an Unload FormX... and
Show the form and there it is.

I am sure it is obvious, but I can't see how to do that in VB.net. Does
someone have a piece of code that will call a from from another form and
have it appear.

Thanks,

Michael Erlewine
mi*****@erlewine.ent
Nov 21 '05 #1
7 8643
"Michael Erlewine" <mi*****@erlewine.net> wrote in news:BQGMd.26503
$1*******@fe06.lga:
I am trying to learn VB.Net and can't figure out how to call a from from
another form. In VB6, I just issue a Load FormX, and an Unload FormX... and Show the form and there it is.

I am sure it is obvious, but I can't see how to do that in VB.net. Does
someone have a piece of code that will call a from from another form and
have it appear.

Thanks,

Michael Erlewine
mi*****@erlewine.ent


dim f2 as new form2
f2.show
'once f2 closes we return here
'f2 is still available, and could be shown again
'we can get info from f2 still:
myString = f2.TextBox1.text
'dispose will get rid of the form
f2.dispose
Nov 21 '05 #2
j00ls code does the trick, but it's worth explaining.

In .NET everything you work with is an object. So, when you add a form to
your project what you are creating is a class containing code that defines
the look, feel and behaviour of the form. To load the form then, you have to
instantiate the class. It's the same as if I'd defined a class called Pete
and wanted an object from it

Dim myPete as New Pete()

That turns my Pete class into an object. So, if you have a form class called
Form2 (as in J00ls code) you'll need to first turn that class into an object

Dim myForm as new Form2()

Then, having turned it into an object, you can go ahead and call methods on
it, like Show()

myForm.Show()
Hope that makes sense. Take a look at the programming with objects guides in
the online help for more info on how to do OO with VB.NET. It's weird at
first when you move across from VB6, but ultimately it makes a lot more
sense than the old VB6 way of doing things.

--
Pete Wright
Author of ADO.NET Novice to Pro for Apress
www.petewright.org

"Michael Erlewine" <mi*****@erlewine.net> wrote in message
news:BQ******************@fe06.lga...
I am trying to learn VB.Net and can't figure out how to call a from from
another form. In VB6, I just issue a Load FormX, and an Unload FormX... and
Show the form and there it is.

I am sure it is obvious, but I can't see how to do that in VB.net. Does
someone have a piece of code that will call a from from another form and
have it appear.

Thanks,

Michael Erlewine
mi*****@erlewine.ent

Nov 21 '05 #3
Michael,

"Michael Erlewine" <mi*****@erlewine.net> schrieb:
I am trying to learn VB.Net and can't figure out how to call a from from
another form. In VB6, I just issue a Load FormX, and an Unload FormX... and
Show the form and there it is.


There is no 'Load' and 'Unload' any more. Forms in .NET are "normal"
classes.

Showing a form:

\\\
Dim f As New FooForm()
f.Show()
///

Showing a form modally:

\\\
Dim f As New FooForm()
f.ShowDialog()
f.Dispose()
///

Notice that forms which are shown modally are not disposed automatically
when they are closed, that's why you should call 'Dispose' explicitly.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 21 '05 #4
Thanks all of you for that first step, which brings me to the gate of
the second step: How do I create that 2nd form to be loaded?

In VB6, I just ADD a blank form, populate it with controls, and then
call it. How do I do that in VB.net

Thanks,

Michael Erlewine

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 21 '05 #5
I got the Form to load and I figured out how to ADD A FORM to the
project. I have another question.

Much of my work is in FoxPro. All I need is to read a FREE .DBF table,
and transfer the data to variables in VD.net and use them.

I installed the VFP OLE DB data provider.

Now I need to see a sample piece of code that works that reads a free
DBF table using a search for a unique character phrase in one field, and
then gets data from a couple other character fields and a couple of Memo
Fields. Any help would be appreciated.

Thanks,

Michael Erlewine

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 21 '05 #6
I am getting BUILD ERRORS like"Type 'Introduction' is not Defined."

'Introduction is the name of a form I am using.

The code looks like this:

Dim f3 As New Introduction()
F3.ShowDialog()
f3.dispose()

Any ideas?
Thanks,

Michael Erlewine
mi*****@erlewine.ent
Nov 21 '05 #7
On Fri, 04 Feb 2005 06:17:44 -0800, Michael Erlewine <mi*****@erlewine.net> wrote:

¤ I got the Form to load and I figured out how to ADD A FORM to the
¤ project. I have another question.
¤
¤ Much of my work is in FoxPro. All I need is to read a FREE .DBF table,
¤ and transfer the data to variables in VD.net and use them.
¤
¤ I installed the VFP OLE DB data provider.
¤
¤ Now I need to see a sample piece of code that works that reads a free
¤ DBF table using a search for a unique character phrase in one field, and
¤ then gets data from a couple other character fields and a couple of Memo
¤ Fields. Any help would be appreciated.
¤

See the following:

Accessing Visual FoxPro Data in Visual Studio .NET
http://msdn.microsoft.com/library/de...lstudionet.asp
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Nov 21 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
3521
by: Marc | last post by:
When I add controls to a form and run the .exe under Win XP, the outline of the form displays first and then the controls on the form. The .exe works fine but the initial show looks like the...
11
1660
by: Johnny M | last post by:
I have several databases where I have one form to add a new record and one form to edit an existing record. I use unbound forms and class modules most of the time. What I would like to do is...
3
1677
by: ChadDiesel | last post by:
I'm new to Access and need some advice. I am trying to setup a database to print labels and reports for our shipments. I have set up a table with fields such as I have taken a snapshot of what...
4
1593
by: Dan | last post by:
I am back yet again :) I am encountering an Exception that has me scratching my head. I have two forms. Form A launches Form B in response to the user clicking a button. The Constructor for Form...
4
1213
by: Paul | last post by:
Is there any way of making the following code into a function so that I don't have to re-use the same code for all my buttons? I've tried to do this with the code at the bottom of my post but I get...
1
1521
by: adam | last post by:
I have a simple form question. I order to access a payment gateway I have a asp.net page which has to have a form that use POST for method and _blank for target. Before the information of the form...
3
12116
by: MacDermott | last post by:
The help file in Access 2000 has entries for Load and Show, suggesting a usage similar to that in VB6.0. But code like this fails: Dim Frm as object Set Frm=CurrentProject.AllForms(0) Load Frm ...
8
7541
by: Mitch5713 | last post by:
I've got tthree forms at start up splashscreen- works fine however how do i set the time delay so it stays on the window longer,, shows longer?? Loginscreen- works fine, after the data processing...
10
15295
by: sara | last post by:
Hi - I have been struggling with solution ideas for this now for almost 2 weeks, and have not been able to figure this out. I have a user who creates a Purchase Order (tblPOData). In some...
0
6978
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7154
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7360
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4881
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4578
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3076
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1392
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
633
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
280
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.