Form Closing For No Apparent Reason?

May 9, 2009

I have a problem where a form is closing when it shouldn't be. I just don't see why this is happening so I hope someone can see the obvious error that I'm missing.The user is on a form called frmPersonalAddress. If he clicks on a button labled "Add Children", he will open a new form, using the .showdialogue method called frmChildren.FrmChildren contains several text fields that may be filled and a single CLOSE button. When closing, the program will examine the fields. If it finds an error, a Messagebox will display with the error and the form should remain open. If there are no errors, the form will close

View 2 Replies


ADVERTISEMENT

Using Streamwriter, Text Cleared For No Apparent Reason

May 14, 2012

So I am trying to change the directory where the files are beeing saved. I've made a file where the location is saved. But for some reason, when I have saved the new location and restart the application, the file is is cleared, leaving it empty.

Show
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

[Code]....

View 3 Replies

VS 2008 : Client Freezes Up For No Apparent Reason?

Jan 31, 2010

I have created an authentication system in the Server that verifies the user exists and password is valid. Here's the code I use for checking a Connect:

vb.net
Private Sub messageReceived(ByVal sender As ConnectedClient, ByVal message As String) If message <> String.Empty Then Me.Invoke(New WriteLog(AddressOf WriteMessage), String.Format("Message: {0}", message)) Me.Invoke(New WriteLog(AddressOf WriteMessage), String.Empty) Me.Invoke(New WriteLog(AddressOf WriteMessage), String.Empty) 'A message has

[code]....

Basically, I follow through the code and I do receive the user list and it is created as needed. But the GUI thread still remains locked up and I don't know why.

View 9 Replies

VS 2008 Finding The Reason A Form Is Closing?

May 5, 2012

VS 2008 Finding the reason a form is Closing

View 1 Replies

VS 2008 Finding The Reason A Form Is Closing (By X Button , By Code Etc)?

Mar 5, 2011

Is there any way I can find the exact reason a form is closing ? To be more specific , I'd like to find when a form is closing :1) because the user pressed the X button on the upper right corner2) due to code (Me.Close , MyForm.Close etc)I know I can use the FormClosing event and use this code :If e.CloseReason = CloseReason.UserClosing Thenhowever it seems that the CloseReason.UserClosing catches both cases (closed by te X button or by code) . So , is there any way I can find exactly the reason a form is closing ?Back in VB6 , the correspondent UnloadMode variable of the Form_Unload event could be "vbFormCode" which indicated specifically that the form was closed by code

View 4 Replies

VS 2008 Closing All Forms When Program Closes Vs. Closing All But Main Form

Jun 4, 2010

Dim frm As Form
For Each frm In Forms
Set frm = Nothing
Next frm

The above code is what I used in VB6 to close all forms associated with my programs before my program closed. I have been searching for information on how to make sure all forms are closed when closing a VB2008 program.

I have seen info on using the Project Property Shutdown mode When startup form closes and I currently have this set.

Is this all that is really necessary? Will the garbage disposal close everything else to free up RAM?

Also, if I have several forms open and want to close all from the main form without closing each one individually, what is the best approach? Is there a collection like in VB6, go through the collection, compare it to the name of the main form and close it if it is not the main form?

View 4 Replies

Closing Child Form Without Closing The Parent?

Apr 27, 2011

I have the following code to close a form which is a child. The problem is that when it closes, it closes the MDI parent too.

Private Sub frmTransaction_Closing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
If ListView1.Items.Count >= 1 Then

[Code]....

View 4 Replies

Apparent Bug When Repopulating A Datagridview?

Jul 27, 2011

I am using VS2010 and .NET 4. My form has a DataGridView (dgvTest), and a checkbox (CheckBox1). I am selecting 2 or 3 fields from a table, depending on whether the checkbox is checked (which it is initially). My possible SQL statements are "SELECT ID,strForenames,strSurname FROM tblAlumni" and "SELECT strForenames,strSurname FROM tblAlumni".

I have used SQL Profiler to confirm that these are the queries sent to the DB. All seems well when I load the form (I see 3 fields, in the order I expect), and when I uncheck the box (I see 2 fields, in the order I expect). However, when I check it again, the ID field appears THIRD in the columns of the DataGridView, not first! I have found a couple of reports of something similar to this (mis)behaviour on the Net, but folks just seem to find some other way to do the job rather than ask is this a problem with DataGridView that needs fixed.

Imports System.Data.SqlClient
Imports System.Windows.Forms
Imports System

[code]....

do your experts agree this is a bug? The "fix" is to wipe the DataGridView between repopulations, but I'm not sure I should have to?

dgvTest.DataSource = Nothing
dgvTest.Refresh()

View 1 Replies

Get Around Of The Apparent Issues Of Using The Basic File Saving Dialog?

Sep 28, 2010

Is there any way I can get around of the apparent issues of using the basic file saving dialog to at least allow another way to save files from my program?What I am talking about is possibly a way to be able to drag something from the program to somewhere on the PC saving it there. I know of a few possible ways to get this done already but the ones I know of aren't exactly great, I could stick with the basic save file dialog but it's a bit slower than you could likely do with simple drag & drop file saving, while then I have to do my own code so files that are allowed to be named to have the special characters like "?" which aren't allowed in filenames in windows will be replaced with different characters instead.

View 7 Replies

Vb6 LEGACY Application And New Functionality (Form) Written In C# - Closing The .net Form From Vb6

Feb 8, 2012

Alright, I have a vb6 LEGACY application and new Functionality (Form) written in c#. I have a VB.NET COM Class as a wrapper. I can launch the .NET Form just fine. THe problem I am having is closing the .net form from vb6.

Example:

In VB6, I have something like this:

CODE:

But it does not work becuase frmViewer is Nothing for some reason. how I should close the .NET form that was launched from VB6?

View 8 Replies

VS 2010 Child Form Tell Parent Form It Is Closing And Send ID?

Apr 2, 2012

I have a parent form that has a list of items and each item has a unique ID. The user can open one or many of the items in a child form (it is set up in a tabbed MDI), but it can only open one instance of each item at a time.

In the parent form, I was going to make a collection (or something like that, maybe there is a better way) to keep track of which items are open in the child forms. I need to know when each child is closed so that it can be removed from the collection and reopened at a later time. I was thinking that when the child form closes, it somehow does something (like raise an event) that tells the parent form to remove the unique ID from the list of current open child forms.

My questions are, is this a good way to do this and I am pretty sure I would use the form closed event in the child form to update that parent form, but as well, I didn't know if this is the best way of handling it.

If raising the event is a good way, are some examples on how to do it out there? I found some for controls, but not while the form is closing/closed.

View 4 Replies

VS 2010 - Create Error Handling MsgBox If No Apparent Internet Connection?

Aug 18, 2010

Using the following
If GeBrowse.DownloadString("URL GOES HERE").Contains("CHECKS FOR TEXT HERE.") Then
Something goes here
If there is no apparent internet connection, how would i create an error handling Message box or something of the sort?

View 6 Replies

Closing A Form But Keeping The Information In The Form?

Apr 28, 2010

I am working on a project that has the user building scrapbook pages through several different forms. When the user selects something a presses a button I have the information about the selection load to a list box which is on a CheckoutForm. One of the options I have is for the user to save what they have made (this includes the information in the list boxes) and return to a previous form to build another page. I have been trying to use the Me.Close() but it does not save the information and using Me.Hide() displays the wrong elements on the forms.

View 5 Replies

Closing Child Form And Parent Form?

Dec 29, 2010

i have a parent form which is having a grid view. In the KeyDown event of the grid view i am calling a child form. If the user closed the child form, my application should close both the parent form and child form. What i have done is, i declared a boolean in the child form and passed the boolean value to parent. May be the code below will give the picture of what i am trying to do.

Private Sub gvJournalEntryDet_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles gvJournalEntryDet.KeyDown

View 8 Replies

Fire A Method On A Different Form When Closing A Form?

Jun 22, 2010

I have a unique challenge that I just cannot seem to get by...I have a form with a series of listboxes that allows the user to rename items in the listbox (I probably should be using a listview control instead). When the user right-clicks and selects rename from the context menu I show a simple form with two labels & text boxes showing the selected list box item in one textbox...the other is blank waiting for the user to enter a new name. What I'd like to do is when the user closes the rename form, the information is passed back to the calling form and a listbox refresh method is fired to show the changed name. Couple question:

First, is there an easier method to implement the renaming concept in a listbox (probably should be using a list view) i.e., have I overcomplicated things?

View 4 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

Closing A Form With Yes/no?

Jun 11, 2011

I a suppose to when the user closes form1 display a messagebox. The messagebox should ask the user if they are sure. If they click yes let them close the form otherwise do not let them. This is the code I have

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim result As DialogResult

[Code]....

View 6 Replies

Closing Application Via X Button Without Closing Forms Inside Mdiparent Causes Exception Error

May 3, 2010

Form1 is a mdi container. It has a bunch of forms that can load inside of it as mdi children. If I close each open form inside the form1, and then click the red X at the top right, application exits fine.If I click the red X without closing the forms inside I get: An unhandled exception of type 'System.CannotUnloadAppDomainException' occurred in mscorlib.dll

Additional information: Error while unloading appdomain. (Exception from HRESULT: 0x80131015) However I can break from it. How do I get the application to not show that error? What must I do to fix those inside forms or close when the red x is clicked?

View 1 Replies

.net - On-closing Form Return Value?

May 27, 2010

Is there a way that a form returns a value? something like ...

sub main()
Dim task as new TaskForm()
dim res as integer=0
res = task.opendialog()
end sub

View 2 Replies

Closing A Form And Saving?

Mar 15, 2012

i have a form with a listbox. the listbox can be edited (things added/deleted) and when the form is closed i would like the items in the listbox to be saved when the red "x" in the top right corner is clicked

View 3 Replies

Closing A Windows Form From Another?

Dec 31, 2009

i want to check if a certain form is loaded and if so then close it from another form.

View 3 Replies

Closing An Inherited Form ?

Oct 27, 2009

I am having a problem with closing a form which I have inherited I have a form called frmAddForm_Simple, which contains 4 main controls (A Data Grid, A Save Button, A Close Button and a Text Box). The idea around the form is to create a form which could be used for inputting of many different types of data which are all entered in the same way (i.e. to add a new row to a database for [Status] table or [Location] table, all of which contain 2 columns in the database (an [Id] and a [value]). On the form I have a property called _FormChanged, which when the textbox text changes, sets the property to True. I then have the following code on the Close Button:-

Public Sub btnClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClose.Click
If _FormChanged Then
If MessageBox.Show("Are you sure you want to close and discard any changes?", "Discard Changes",

[CODE]...

Is opened as a dialog (ShowDialog) and when I go to close the inherited form (by click on btnClose) and answer No to the above MessageBox the form closes anyway. Using the Debugged I have worked out that the following events occur in sequence (all of which runs in the Master Form mentioned above):-

1) btnClose_Click sub Routine runs

2) I answer No to the question do I want to close the form

3) The debugger steps over the Me.Close() line (as expected)

4) The debugger jumps up to the Sub Initialise (where ShowDialog was called from) and closes the form.

So at no point has the debugger even ran a line of code which reads Me.Close(), but the form closes anyway so Im fairly confused as to why the form should close.
My Master Form (frmAddForm_Simple) Code:-

Public Class frmAddForm_Simple
Private _FormChanged As Boolean = False
Private _FormLoading As Boolean = False

[CODE].............................

View 1 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

Closing Form And Not Program?

Sep 13, 2011

I am trying to close Form1 and then open Form2, but when i do it closes the whole program.I have tried to just hide Form1, but then i can't close the program and I have tried this method too but could not get it to work?

View 2 Replies

Closing Form And Reopening?

Jan 7, 2009

if there is a way that you can close a form and reopen it. The reason is because I have created a tic tac toe game, but at the end I want them to be able to play again. The problem is that if I want them to start over I would have to set alot of stuff back to 0 and or change the buttons on the screen etc. Is there a simple way to just close the form and have it reopen?

View 2 Replies

Error While Closing MDI Form

Mar 6, 2011

I'm working on an application that opens different mdi child forms to do different things whit the data from an Access database. For example I have a form that searches an item in the data base. The other form shows the items details or history. All database communication is handled by data-manager classes. Each whit it own instance of the class. The child forms have no connection to each other (passing of the item is by global variable object).The error occurs after the formclosed event from the closing form.The same error occurs when I open the form one by one.When I have two different child's open and I close one I get this error message: System.InvalidOperationException was unhandled. In a no source Available window.to open the two child forms (from a menu in the mdi parent) a use this code:[code]

View 2 Replies

Form Closing And Opening

Dec 5, 2011

I have form1 and form2 and have when a user clicks on an icon on form1 it shows form2 and hides form1. But how would I get it to when a user closes form2 it will show form1 again?

View 3 Replies

Form Not Closing / Does Not Hide

Jul 8, 2009

[Code] when the program is launched normally it works fine but when the program is passed the appropriate command line my program responds accordingly except for the fact that the first form does not hide() when told to. its like the program just skips that line and shows the recovery form.

View 2 Replies

Forms :: Form Not Closing?

Nov 6, 2009

In my one form I have a cancel button whcih is supposed to the form when the button is clicked. But its not closing the form. What could be possible reasons. I am using VS2008.Net3.5

The code is:
Private Sub cbCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cbCancel.Click

[code].....

View 7 Replies

How Could Application Form In Vb Be Closing By Itself

Feb 24, 2012

I have a form in a Pocket PC app that is set to be the Application form using:Application.Run(New frmMain())Somehow this form is getting closed for no reason while working on another form. No closing event is fired and nowhere in my code can you close the main form anyway. It is only closed by clicking the OK button at the top right of the window. When this is clicked, the user is prompted if he/she really wants to close the application. However, this is not occurring either.Basically, I am on another form which adds a new record to the database. After adding the record the gotFocus event is somehow called for frmMain. When the code in the gotFocus event reaches a reference to a control on the form, there is an exception that states that the object is disposed.

View 1 Replies







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