As The New Form Opens Up Everything Closes?
Jan 23, 2010
when you login it is the meaning that another form opens. But as soon as the new form opens up everything closes. The code i used is this:
Public Class Form1
Public Goldhave As Integer
Public UserName2, Password As String
[Code].....
View 4 Replies
ADVERTISEMENT
Jun 22, 2010
When opening a button and opening a new form as soon as it opens it close for some reason but its not giving any errors as to why its doing this now I've checked the linked linking it to the next form that's fine.
Private Sub PrintPerscription_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Login.con.Open()
sql = "SELECT Patient.* FROM Patient where Patient.Wardno = " & Login.WardNo.ToString
da = New OleDb.OleDbDataAdapter(sql, Login.con)
noOfRows = da.Fill(dsPatient, "Patient")
[Code] .....
View 6 Replies
Mar 31, 2012
I developed a winform .NET 4 application that has the ability to asyncronous save image from scanner using Bytescout Scan. Anyway I noticed that in some cases (with some scanners) the scanner's GUI opens and then closes immediately after load without performing any scan. Since no error message is raised either from my code and from scanner software itself; is there some settings/tweak somewhere I should pay attention?
View 2 Replies
Aug 12, 2009
How do I make it so that when the program starts it shows splash, then the splash screen closes after 5 seconds and opens Form1.vb?
View 6 Replies
Apr 9, 2012
I have a small problem with sockets (I'm new to sockets). Below is the code I'm using. The problem is that when the client closes, the server closes aswell. How do I stop it from doing that?
[Code]...
View 1 Replies
May 26, 2012
I tried it every way I can think off, but nothing can stop it .
View 7 Replies
Oct 28, 2009
I have been making a webbrowser for a while now, everything works well, except i am unable to make the 'open in a new window' button work right. So far i have managed to get a new instance of my form to open with the right url, but i am unable to keep that new form open when the orginal parent form closes.
Code:
Private Sub WebBrowser1_NewWindow(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles WebBrowser1.NewWindow
e.Cancel = True
Dim Href As String
[code]....
View 2 Replies
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
Jul 9, 2010
How can I make the main form grey out/translucent black when a new form opens on top?
View 8 Replies
Jan 15, 2009
Whenever I want to reopen a project that I didn't worked on for several month and want to view my form in design mode I receive following error.
Warning1Method not found: 'Void System.Windows.Forms.Design.ParentControlDesigner.WndProc(System.Windows.Forms.Message ByRef)'.00
[Code]....
I used this project in VB2005 express, but also in VB2008.
View 4 Replies
Jun 10, 2012
I have one form which stays open, and lots of other forms which can are opened and closed regularly how can i detect that a form has closed on the main form?
View 6 Replies
Feb 9, 2011
Iīm new here, so excuse me if this is the wrong area. I've already read about this in this forum, but it didnīt kill my doubts. I have an form, called AddInstrPadr, wich is created by the MdiParent:
[Code]...
View 9 Replies
May 2, 2009
I have the following code so the user must confirm cancel action, however the form closes on both yes/no action.why the form does not remain active when the result = no?
Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click
Dim resultDialogue As System.Windows.Forms.DialogResult
resultDialogue = MessageBox.Show(
"Do you want to cancel the Add Worker function?", "Confirm Cancel", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
If resultDialogue = Windows.Forms.DialogResult.Yes Then
ClearDtls()
Me.Close()
End If
End Sub
View 8 Replies
Jun 13, 2009
i'm using exit sub when a certain condition does not meet. but the problem is that the form closes. it should not close the form, instead, it should only exit from a click event. I'm using VB2008Express Edition and MS Access at the back end.[code]
View 4 Replies
Jun 16, 2011
I have a form ( call it NewForm ) that can be opened from many other forms, but I don't want to have the user to run into the problem of having many windows/forms open.I want to close the calling form and open NewForm.NewForm will prompt the user for information, but if the user doesn't find what they are looking for I want to have a "Cancel" button on the form. With the "Cancel" button I want to go to the previous form.is there a way to tell which form called NewForm so I can just reopen/unhide that form/window.
View 5 Replies
Nov 2, 2011
When I initialize a new form to open, the subroutine in the new form starts before the new form is shown on the screen and so when the subroutine finishes and the MsgBox comes up, the form isn't showing.
Is there a way to make the form pop up first before the subroutine starts?
View 4 Replies
Apr 6, 2009
I have a problem here I hope someone can help me out. I have this application in which I show information about workplans. It has a Main Form which show the general information and the activites that are going to take place during the execution.
The application has the ability to "attach" documents to the activities. I have created another form (and MDI form) that I use to show the documents (pdfs) when a user clicks on one of the documents attached. The problem is that when I close the form that shows the documents, it ends the application and I don't know why. It should just close and leave me again with the Main Form. Can someone tell me why is this form terminating the app. Is it because is MDI or what?
View 4 Replies
Jun 3, 2011
Basically, I have developed one form which is generic and display different views. On that form I have used Close button. Alphabet E is short-cut for closing the form (i.e. mnemonic functionality).During execution of the form, when I press "E" on that form, my form closes automatically. As per my understanding mnemonic works with Alt control only. I am not sure if I am missing any properties that should be set so that this problem is resolved.
View 1 Replies
Dec 8, 2011
So I've got a somewhat common problem from what I can tell from the search results..I developed a program, got a beta version performing well, noticed a few small bugs, fixed the (all code-related) bugs, and now the program will open and then close immediately. I believe I have determined that the problem is not code related as I have commented outall of the code and it still refuses to stay open until I tell it otherwise. From heaforementioned search results many people have found this to be due to a ensingtonproduct, however I do not own such a product nor do I have any Kensington softwa
View 5 Replies
Apr 4, 2010
[MyCode]
Rigger.Show()
Me.Close()
Instead of showing Rigger.vb and then closing form1.vb, it closes the whole thing. I need it to leave Rigger open, and close form1
View 1 Replies
Feb 6, 2011
I've got some troubles with the socket multithreading, basically the form closes without returning any exception and if I run my application after the compilation it just gives me an error about a yet disposed object (read the code for more information)
I'm quite sure I'm mistaking something in the EndReceive method, anyway that's the resource I've looked into: [URL]..I can't figure out why I should use a state object which contains a socket (or tcpclient etc..) variable instead of some public variables in my current socket class.
View 6 Replies
Jun 11, 2011
I have 2 forms right now Form1 and Form2 the default setting start up is Form2. Inside Form 2 there was a button that will release the Form1 button using Form1.Show().[code]...
View 4 Replies
Feb 22, 2012
I am using VS 2008, Windows XP R3, and Visual Basic.When I open some forms in the form designer, (In Solution Explorer, right click on the form, then select View Designer) the form always opens as Edited. An Asterisk "*" appears after the form name in the open window tabs. If I open the form to just view the code (In Solution Explorer, right click on the form, then select View Code), the form opens normally. This happens for just some forms.
It always happens for the same forms, and never happens for the other forms. What I am missing in those forms where the designer always thinks the form has been edited?
View 3 Replies
Aug 16, 2011
I've made a Windows Forms Application that runs fine. It has some buttons that open child forms, which can simply close again without any problem. As I need the form to be in a dll, I changed the application type to a class library and added an extra project containing an exe-file that only references the main form in the dll and shows it. So far so good...
The main form is basically a tabcontrol with a bunch of controls, buttons among others. Five buttons on different tabs use the same handler to open a child form. When I click the button on the first tab everything works fine. The form opens and when it closes, only the child closes. When I click any of the buttons on the other tabs, the child form opens and when it closes again, both the child and the main form close...
I am stumped, especially since all buttons use the same code to open the child form and everything appears to be completely identical, yet the results are not. Below I have pasted the code that opens the main and child forms. I am undoubtedly not looking in the right place, but I also have no idea where to look anymore, let alone what to look for...
The code opening the main form:
Public Sub StartProgram()
'Load the form and show it
Dim frmProgram As frmMain = New frmMain
[Code].....
View 5 Replies
Jul 1, 2009
We have a window that has a text box on it that the user must enter in valid data before going on. So we have put in a message box letting the user know that they have to enter in the correct data before going on in the Leave event. That works just fine, but when the user press ALT+F4, or presses the X in the upper right corner of the window it still goes through the event. We would not like for that to happen. When we were using VB6 the same code was in the lost focus, and when the user pressed ALT+F4, and the X the LostFocus event did not fire, or acted like it did not fire. We have also tried moving the code to the Validating event, but it behaives similar to the Leave event? how to close a window, and either have the Leave, LostFocus, and Validating events not fire when the user Presses ALT+F4, or the X
View 6 Replies
Apr 25, 2012
I am new to these forums. I had a VB.net class several years ago and cant seem to find this info in the text from the book used in the class. Here is what I would like to do. I have a 2 forms. One with three buttons and the other with a listbox. When I click on one of the three buttons (on form1), I want to fill the listbox (on form 2) with one of three arrays. is this possible, it seems like it should be.
View 15 Replies
Nov 5, 2010
I have a form that opens a other form in multi threading but after that it wont close I have tried:
application.exit (Works but closes the whole app)
me.close (nothing happens)
end (nothing happens)
me.hide (nothing happens)
This form is form1 that wont close and opens form3 I every other form works.(7 forms total)
View 7 Replies
Mar 19, 2010
I need to create a program that requires password entry. I was thinking of having a form that the user uses to set the password that only opens once (unless a button on the main form is clicked to reset the password.) once the password has been set, the form closes and another opens to enter the password and for each and every time the program is run. Another thing is that if the password has been entered wrong 3 times, the program gives a message box and closes on the ok button.
View 7 Replies
Mar 16, 2010
I am trying to reference an Array when a form opens. When the code below runs I get a "Type Mismatch" error.
Dim strText0 As String
strText0 = Form_frmRVNumber.Text0.Value
Dim strRVNum() As String
[Code]....
View 3 Replies
Mar 26, 2010
I am creating a form and I have a label that will display the user's name, but what I need to do it trigger a text box when the application opens that will allow the user to type in their name and then assign that value to the label in my form. How do I trigger the text box and assign the value to my label? My label is named lblStudent.
View 11 Replies