Loading A New Form And Unloading The Current One?

Jun 2, 2010

I feel like a complete noob for asking this because I know how to do this in VB6... But in VB.NET 2008, how would you load a new form and unload the current one? I know that in VB6 the code would be:

[code]...

The problem with that code is that it just ends my program completely without showing frmMain.

View 5 Replies


ADVERTISEMENT

Loading And Unloading Controls On A Form?

May 14, 2010

I'm rewriting a vb6 program in vb.net, and I was wondering what the best alternative is to vb6's "load"/"unload" commands for loading and unloading controls on a form.

e.g. (VB6)

Unload frmContainer.DetailGrid1
Load frmContainer.DetailGrid1
Currently I am adding/removing controls using

[Code].....

View 4 Replies

Loading - Unloading Forms - How To Create And .exe?

Mar 29, 2009

Problem

Forms:

1) Splash1
2) frmMain

Purpose:

unloading splash1 and loading frmMain

Code used so far:

CODE:

Problem:

The Whole project is ended!

Problem2: How to Create and .exe?

Basic Problem: I Have started programming in VB.net today only, I have experience of 2 years in VB6.

View 4 Replies

Multiple Page Form - Loading Another While Hiding Current One

Jun 9, 2011

I'm planning on a private software, that I wish that have multiple pages, like a installer. It will not be a installer or anything, and I don't want to use tabs on it (it doesn't fit to what I'm thinking.) How can I do it? I've tought on multiple forms, but I don't see how can I load another form while I hide the current 'on-the-fly'.

View 4 Replies

Hiding / Unloading Form When Next One Loaded

Jun 8, 2011

I am learning VB.NET and as a first task I am creating a login form. I've been trying to link it to another form once a correct username and password are entered. However, despite that I still cant be able to hide it or unload it once the next form is loaded.

Here is the Code
Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
If UsernameTextBox.Text = "chris" And PasswordTextBox.Text = "chrispass" Then
Me.Hide()
Form2.Show()
End If
Me.Close()
End Sub

The Form2 appears as coded above but the 'Me.Hide()' manages to hide the login form but then it appears again.

View 2 Replies

Form To Load When The "About" Command Is Clicked And Unloading?

Feb 8, 2006

I am using VB.NET 2003. I am trying to move an application from VB5 to VB.NET and having some difficulty. Thre is a Main Form, which only consists of a menu bar with one of its commands being "Help" Under "Help" are several choices, including "About". There is also an About form. My question is: How do I get the About form to load when the Help/About command is clicked?

[Code]....

View 7 Replies

My RegUnloadKey Not Unloading

Feb 1, 2010

I am currently writing a program that is saving user setting for the program into the registry. The problem is with the 'Administrator Control Panel' that I am writing for that program. To load/edit those settings for users that are not logged in their NTUser.dat must be loaded into the registry. I have based that part off of [url]... using the API functions RegLoadKey and RegUnloadKey. When all that is done is loading and unloading the key it works fine. However, any time that I read from the loaded registry user hive it will not unload that users registry hive. I have tryed using the RegistryKey class[url]...

My assumption is that the RegistryKey is not being closed or released properly, or completely enough for the user hive to unload. I have tried the .Close member in the RegistryKey class as well as tried 'CType(regKey, IDisposable).Dispose()' (regKey is defind as registrykey) to close the registykey. After I close the program (running from Visual Studio) I can manually unload the hive via regedit.

Is there another/better/more complete way to close the registrykey to allow for the RegUnloadKey function to work?

View 1 Replies

Hiding/unloading Forms In .NET?

Feb 2, 2012

Im learning VB.NET and as a first task im creating a login form. ive been trying to link it to another form once a correct username and password are entered. however, despite that i still cant be able to hide it or unload it once the next form is loaded

Here is the Code

Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
If UsernameTextBox.Text = "chris" And PasswordTextBox.Text = "chrispass" Then
Me.Hide()

[code]....

The Form2 appears as coded above but the 'Me.Hide()' manages to hide the login form but then it appears again?

View 9 Replies

VS 2010 GarbageCollector & Unloading Procedures

Feb 9, 2012

So if anyone has fallowed any of my post, then you will know I'm still in the process of transferring to pure vb.Net, while simultaneously trying to rid any bad habits that stemmed from the good 'ol vb6 days.So having said I have a few question that are in regards to the GarbageCollector. Now I'm not looking to modify or mess with it at all, but rather it's exact functionality and where I should be disposing of and handling my own unloading.For the sake of my coding style I like to run my application differently than most(unless this is the way it should be done) but this only applies to my more large project.[code]

So as you can already guess my startup object is the AppMain sub, and I have the application framework disabled.I'm not sure how the Garbage Collecter functions, so truly I'm not sure if my code there is necessary or unnecessary. What it does is unloads all open forms that may have been left behind, plus it closes the database connection if one is open. Also I'm wondering if its a good idea to clear all my collection as well. My concern with the collections is just I have sooo much information being stored(it's a business management system that handles transactions, appointments, inventory clients employees etc etc) and this keeps growing. So I'm not really sure if all this gets handled automatically by the GarbageCollector or if it's good practice to begin clearing out this data and disposing it before hand.

View 2 Replies

Get Form Click Or Form Control Mouse Events To Fire DURING Form LOADing

Aug 26, 2011

Im Using VB 2008. I have MsgBox() statements in all Mouse & Form Click events to TEST & NOTHING FIRES during Form Load when I click on Form or Button Controls !!! The Form Load event contains code for Displaying the Label.Text control many times with changes in the Text to simmulate annimation.

[Code]...

View 7 Replies

VS 2010 Load Another Form When The User Closes The Current Form

Feb 26, 2012

I am after some code to load another form when the user closes the current form. I have tried this

[Code]...

View 14 Replies

VS 2008 Close Current Form And Show Different Form?

Sep 4, 2009

When I use

Me.Close()
Form1.Show()
It closes the whole app.

How would I change it so that it only closes the current form while opening a new one? EDIT: I put [Not Resolved] Because I accidently pressed the resolved thing

View 8 Replies

Prevent Painting Of .NET Form While Form Is Loading?

Jun 14, 2010

Is there a way to turn off all visual updates to a .NET form while I am manipulating it? When my program first loads, for example, I set the tab control to the tab that was last open. The user can see the program switching tabs.

I have looked into SuspendLayout and ResumeLayout, but either I don't understand what they are doing, or I am not using them correctly, because they don't seem to have any effect. Someone told me that there used to be a way to turn off paint events in VB 6. Does this still exist in .NET?

View 3 Replies

VS 2008 : Loading Form Upon Closing Another Form?

Aug 29, 2011

I have 2 forms. When a user clicks something on form1, form2 pops up. After user is done with form2 and closes it (where the dataset is updated), I want form1 to "reload" the dataset to reflect changes made in form2.

View 1 Replies

Show Another Form And Unload The Current Form ?

Oct 14, 2009

i used to write the code to show another form and unload the current form it always told error on UNLOAD form2.show unload me Do i have to use the code :

.Dispose()

or is there another suggestions

View 2 Replies

Open To Another Form And The Current Form Will Close?

Nov 14, 2010

in my visual basic 2008, i have create like a hospital check form like just pressing some keyword the person data automatically open to another form and the current form will close since i am new to the visual basic 2008 i would like to ask what is the coding work to save the data of a person and how to retrieve a data of that person by pressing the keyword?

View 3 Replies

Pass The Value From Current Form To Another Form

Sep 3, 2009

"how to pass the value from current form to another form"

View 4 Replies

.net - WPF Loading So That Can Move The Form?

Apr 26, 2012

How do i load the Main form of a WPF so that a seperate thread goes and gets data from the database while the form is in an apartmentstate ? (drag-able / movable) I Know this is possible with opening a new window from your main form like this :

Private Sub openOrderWindow()
Dim OrderWindow As Orders = New Orders
OrderWindow.ShowDialog()
End Sub

[code]....

I've tried putting MyBase.ShowDialog() and .Show() and .9000+ other things The only benefit I've got out of using a seperate thread to load from the databse is i can see the screen right away (as oppose to it being a transparent box until it loads) but i cannot move it around or minimize itis there any way to make it Movable while it loads?

View 1 Replies

Anyway To Speed Up Form Loading?

Dec 3, 2002

Does anyone know of anyway that it would be possible to speed up the process of loading forms.With VB6, forms (simple ones) was extremely fast but with VB.net, the initial loading of a form (even the simplest one) takes very long. Although it gets better once it's loaded once and the reloaded the next time (almost instanttaneous), but the first time loading gives a bad impression to any user that .net is actually much slower.

View 7 Replies

Closing Form And Loading Another

Mar 6, 2009

I've got 2 forms; form1 and form2.
Button1 is added to form1.
When I click button1, I want to close form1 and open form2.

I tried the following.
me.close
form2.show
Its not working. Form1 gets closed but form2 is not showing up.

When I use the following code
me.hide
form2.show, its working.
But hide will not unload form1 and it will still occupy memory.

View 5 Replies

Does For..Next Stops The Loading Form

May 5, 2011

In my form3 i have this code

Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim vs As Integer

[code].....

View 1 Replies

Form Loading Over Splashscreen?

Aug 11, 2010

I am using Visual Basic Express Edition 2008. I want my main (and only) form to not be re-sizeable.

FormBorderStyle = FormBorderStyle.FixedDialog
To my main form load function. However, when I add this code, the form loads over my splashscreen. I am trying to have my splash screen displayed for a set amount of time

[code].....

View 6 Replies

Have A Progressbar When Loading A Form?

Jun 8, 2011

I have a form let's call it Form1 that calls another form(Form2) Form2 to has a bit a code that needs to load in the LOAD_EVENT and takes about 4 seconds.

I have made a new form(frmProgress) that only has a progress bar.I want frmProgress to show up and load the progress bar meanwhile Form2 is loading.I've tried using BackgroundWorker but I can't seem to get the grasp of it.

View 5 Replies

How To Insert Loading Bar Into Form

Aug 10, 2009

How I insert loading bar into vb.net form? I want insert loading bar with information that step in loading. I want to show info like when we install new program, in install program we will see progress installing.

View 6 Replies

Loading Form With GIF In Application

Jul 5, 2009

I have an application developed in VB.NET 9.0. I am trying to load a form when the application loads. It is basically a form without border and has a .gif on it. Actually when the form loads I cannot see the gif.
frm.FormBorderStyle = Windows.Forms.FormBorderStyle.None
frm.StartPosition = FormStartPosition.CenterScreen
frm.ShowInTaskbar = False
frm.TopMost = True
frm.Show()

View 6 Replies

Loading Of Child Form

Jan 7, 2009

could you please tell me how to load a child form in a parent form. since i am a beginner i have some confusion ..

View 1 Replies

Regarding Form Loading/Closing?

Aug 5, 2009

When my form first loads or when it closes a number of events which I have in my code fire, such as a combo box's selected index changing as it populates. Is there anyway to prevent this from occuring? Currently I use a boolean variable which I set to true/false depending on if the form is loadig or closing and then each of the events first check this value before they fire.

View 7 Replies

C# - Show Some Form Of Progress Bar When Something Is Loading In ASP.NET?

May 5, 2009

Is there a easy way to show some form of progress bar on your form in ASP.NET that the code is busy running in the background (meaning thinking)? Like the default I.E have the small little window on the top that moves when its thinking

I have done this before with Ajax but its alot of work and my site is not a Ajax enabled site.

View 2 Replies

Disable KeyStroke During Form Loading?

Dec 3, 2009

Problem: Form hasn't fully initialize but shortcut keys can be usedDetails: Launch an mdi child with database access retrieving data, and user is already using the shortcut keys while the data is still been retrieve which results to error since object hasn't fully initialize yet.

Goal: Hinder user from using shortcut keys by disabling the keys at initialization then enabling it after all objects are good to go.

Another Situation is:A form with a gridview and a button.I got a hotkey that when press, handles a gridview getfocus event.

The problem is that the gridview is still making its instance and when press the hotkey, it activates the getfocus property of that gridview(which is still creating its instance).

View 10 Replies

Form Elements Loading Up Blank

Jan 31, 2012

I have a form that I need to show "nonmodal" while I do some work, the form displays a label that outputs strings captured from a cmd window. So I am doing it like this
Dim f As New AutoRDP()
f.Show()
f.doit()
f.Close()
Private Sub lockprompt_Load(ByVal sender As System.Object,
[Code] ......
The problem I have is I can load the form correctly.. all the elements loads up blank. But if I use showdialogue() it loads correctly, but I cant return to do my work..

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved