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


ADVERTISEMENT

Fire A Method If Key Is Pressed Outside Of Form Focus?

Sep 26, 2011

I am making some sort of panic program where if any key is pressed while the person is using the process in the combobox, it will kill the event....

I.e lets say i am playing a game (or googling something) and I press control-alt

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

Call A Method That Compute Some Data That Method Is On Another Form In Windows Form Application?

Mar 17, 2012

i want to which way is better when concentration is on processing speed. i want to call a method that compute some data that method is on another form in my windows form application then what you prefer is better way 1) to call that method in another form and use returned value or create similar method in form where it is required.i want to make it's processing fast.

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

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

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

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

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

X Does Not Fire Closing / Closed Events

Mar 6, 2009

I have a very simple app working well, problem is that it does not close properly. If the user uses the little "X" to close it, it still remains running, just becomes invisible. The X does not fire the closing/closed events..All I can figure out is that to get it to properly close I need to use "Me.Close()" with a button or menu item.I could remove the standard X and force them to use my own close button but that is rather silly..

View 1 Replies

Closing Opened Form From Another Form?

Dec 29, 2011

I have this form called gamePlay form. This form is showed by my loading form. When the gamePlay form is showed the loading form is closed. At the gameplay form i will be opening another form called congrats form. At congrats form I need to close the gamePlay form. How should I close the gameplay form from the congrats form. I tried creating an instance of the gamePlay form and obviously the gamePlay form won't close since the instance that opened gamePlay was not the one who closed it. I know it's a bit confusing.

[Code]...

View 4 Replies

On Closing A Form Reload Another Form?

Jun 22, 2010

I'm developing a window-based application where I've a Main Form A. I open another form B on a button click. When I close Form B, I want to reload the Form A.

View 5 Replies

Reshow A Form While Closing Another Form?

Aug 20, 2009

I want to reopen a form that was by the main form. Not sure how this can be done noobie programmer.

I Have A Main form that opens up two other forms but it will hide when one form is opened. I want to know how to reshow this form main form when the other form is closed by using the red X at the top right of the window.

View 3 Replies

Can't Seem To Get Form.GotFocus Event To Fire

Oct 21, 2009

I can't seem to get the Form.GotFocus event to fire.I have two forms - a main window and a debug window.The debug window will always be shown with the main window. But, I don't want the debug window to appear in the task bar - it's unnecessary.While my program is running, when I select another program, my main window and the debug window are placed behind the program that I selected. From the task bar, I can bring my program back to the front by clicking on it in the task bar. The problem is, that now my debug window is behind the other program.I have code that will "DebugWindow.BringToFront", and it works. But I need some way to run do this when the main form gets the focus.I do not wish to make any of my forms Modal. At least not permanently. If the solution is to change the modal property of the form temporarily, then that wouldn't be a problem.

I tried Me.Enter, Me.Activated, Me.Click and a few other events. Me.Click only works when I click within the Form window, not the form's title bar. Me.Activated caused problems - The code ran, but it would always end with the focus on the Debug window. When I tried to click on the main form, the Activated event would fire again, sending the focus back to the debug window.[code]

View 2 Replies

Event Won't Fire On Form Exit

Jan 19, 2009

I have a MDIcontainer form witch handles MDIchildren. The problem I'm having is when i open a new Mdi child and close the Main form , The app is supposed to ask if i want to save the current MdiChild. Heres my code

[Code]...

View 2 Replies

.net - Alternatives To SelectedIndexChanged That Don't Fire On Form Load?

Dec 24, 2009

I'm developing in VB.NET with Visual Studio 2005.I have a ComboBox (myCombo) on a form that gets populated within the Load method.I also have handled myCombo.SelectedIndexChanged to change a label on the form.

Edit: The way I added the event handler was by double-clicking on the combo box on the designer. Skeleton code then came up in the code view.It looks like what's happening is when the form loads, SelectedIndexChanged gets fired each time an item is added to myCombo.This isn't what I want, but I'm thinking there's another event handler that only gets called when the user changes the selection.

Here's some code for what I have:

Private Sub myDlg_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' this is all I do with myCombo in this sub
list = GetListOfItemsToAdd()

[code].....

Update: The solution I used was to remove the Handles clause after the event generator, and add this before the "End Sub" above:

AddHandler myCombo.SelectedIndexChanged, AddressOf myCombo_SelectedIndexChanged

View 4 Replies

Alternatives To SelectedIndexChanged That Don't Fire On Form Load?

Jan 16, 2011

I'm developing in VB.NET with Visual Studio 2005.I have a ComboBox (myCombo) on a form that gets populated within the Load method.I also have handled myCombo.SelectedIndexChanged to change a label on the form.Edit: The way I added the event handler was by double-clicking on the combo box on the designer. Skeleton code then came up in the code view.

View 2 Replies

Prevent An Event To Fire While Loading Form?

Mar 3, 2012

I have a form contains NumericUpDown1, TextBox1, TextBox2, at design time i set NumericUpDown1.Value to 4 and TextBox2.Text to 100, and i have this sub[code]...

View 13 Replies

Call A Method In A Form During The Form Load Routine?

Sep 5, 2010

I have a small program which draws some lines with a method called: Drawlines But Now I want to call this method in the load form routine. So if the form is loaded the lines should be drawn in the picturebox. But is this possible or should the form first be loaded completely before you can call methods in that same form?

View 6 Replies

MDI Child Form Call Method From MID Parent Form?

Dec 7, 2009

I have two form :

class form1 'parent form dim number as integer

public sub create ()
dim f2 as new form2
f2.MdiParent = me[code]....

In form2.vb how to use variable number and method test

View 3 Replies

Tabbed Control Form - Procedure Call Does Not Fire

Mar 6, 2012

My main form is a tabbed control with 2 tabs. The first tab is has two listview controls which display information about the current machine. The second tab contains a treeview control and two listview controls. This tab recreates the device manager in windows. I created a Machine class to gather the information about the machine that I want to display to the user. When I call the Display() Method from my form's load event everything appears to be fine the first tab's information is displayed in the listview controls.

Here's the kicker, when I click to the device manager tab there's nothing there. The LoadTree() procedure never fires. This code works, I've seen my device tree display a thousand times in the past. When I comment out the call to Machine.Display() my device tree reappears no problem. The code compiles fine no errors. I know the problem has to be in my Machine class but I have no idea what could cause this kind of response. I've never seen a program compile clean and then refuse to fire a procedure call but not produce some kind of runtime error.

View 16 Replies

VS 2010 Fire Event On Any Textbox Change On Form?

May 10, 2012

I have a form with over 100 textboxes that are set in multiple groupboxes and that number grows as I continue working. I am trying to get an event to fire if there is a keydown on any one of the textboxes. other than individually adding all 100 textboxes to the handler, is there a way for me to create a single event that handles all textbox.keydown events on the form?

I want to run something like the code below every time a textbox on my form changes. The code rules out text boxes within groupboxes that I don't want to fire.

If TypeName(SplitContainer1.ActiveControl) = "TextBox" and InStr(ctrl.Parent.Name, "GroupP1Payoffs") = 0 _
and InStr(ctrl.Parent.Name, "GroupP2Payoffs") = 0 and InStr(ctrl.Parent.Name, "GroupP1LoanDetails") = 0 Then

[Code].....

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

.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







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