VS 2008 Never-closing Console?
Dec 12, 2010
I didn't code for a complete year. Don't ask me why. well I guess I lost 90% of my vb skills, I hope they'll get back eventually.i'm writing a console program, but it closes after a second it opens.I want it open all the time.
View 2 Replies
ADVERTISEMENT
May 11, 2011
so I am making a program that will run a server for a game. I've programmed a console into the form and it works but it only works until it is finished reading the slandered output.
[Code]...
View 2 Replies
Jul 27, 2010
I would like to detect if my Console App is closing but there is no Event like in Windows Forms. I just cant find anything at google
View 6 Replies
Apr 11, 2012
How can I fire off a function when it detects the console closing when using Environment.Exit(0)?
View 1 Replies
Nov 8, 2009
I am encrypting,decrypting information using this tutorial and code (from MS): [URL](scroll all the way to the bottom for the complete code).
View 1 Replies
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
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
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
Jun 1, 2011
I was thinking of adding a simple bandwidth monitor to a console application and I was wondering if it would be possible to keep a line in the console window visible at all times. I could set something up manually to pass new console output into a method that would get the contents of the console, clear the console, add the bandwidth data on the first row, then rewrite each line of previous information back to the console, etc.. but that seems like a really hacky way to go about it, and I'd be limited to the amount of rows visible at once in the console window (no scrolling).
STATS: Downloaded: 2599b, Uploaded: 754b <- this always stays at the top
constantly changing text
constantly changing text
constantly changing text
[code]....
View 3 Replies
Jan 16, 2010
Im trying to set up some error catching. So if the process errors out in the middle of reading a text file using a StreamReader, the file stays opened. What is a good way for me to close that file after the error? For example, here's some
[Code]...
View 8 Replies
Jul 6, 2010
looking for an easy way to close Adobe Reader from VB if it's open.
View 1 Replies
Feb 11, 2010
I'm running a program, the first form is a login form. If you pass this i Hde form1 and show form2.When i'm click the x in the top right hand corner my form goes away but in my processes (task manager) it's still there. why?
View 9 Replies
Nov 18, 2011
so the code is.
Private Sub ToolStripButton6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton6.Click
' End
[code].....
View 4 Replies
May 7, 2009
I have a application I dont want to be close the only way iI want it to close it by the button I have is there away to disable alt f4?
View 2 Replies
Jan 2, 2010
What function would i use to cancel the form from being closed via them pushing the "x" in the top right?Basically want it to hide the form, set showintaskbar to falseand then display the notifyicon. Which all I know how to do, but cant quite seem to figure out how to stop the form from being closed.
View 2 Replies
Apr 3, 2011
I'm having trouble using the HasChanges method.I'm trying to get a message box to show if a user hits the edit button, makes a change, then hits the close button without hitting the save button first. From what I understand, the HasChanges(DataRowState.Modified) statement should work.In reality, when I hit the edit button, make a change to a field (zip for example), then hit the close, it just closes without showing the messagebox.Here's my code so far...
Private Sub CustomerForm_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) _
Handles Me.FormClosing
[code].....
View 2 Replies
Feb 6, 2011
I have closed the client socket using client.close() but netstat command shows the same socket in time-wait state.Because of this I am unable to reuse the socket..
View 2 Replies
Apr 29, 2010
I am working on a program and for some reason when I run it as an executable outside of debug mode, if I run the main subroutine of the program, the process remains in memory after being closed. Even though the form is closed/gone, it will be in the process list and I have to ctl-alt-del to remove it. If I exit right after opening the form without doing anything, it closes like normal. I am closing and disposing everything I can think of, and I've never had this problem before. This is how I am exiting, but the problem also occurs if the user "X's" out.
Me.Close()
Application.Exit()
I have a couple web file requests in my program, which is the only thing out of the ordinary (code-wise) for me, don't know if those are the root of the problem. I can't imagine this is the first time this has happened to anyone, but I couldn't find anything helpful with my search terms. Any ideas/common solutions? I can post sections of my code if it will help, but the whole thing is pretty long and I couldn't narrow down any potential problem areas.
View 12 Replies
Jun 1, 2009
I have a console application I'm using to run scheduled jobs through windows scheduler. All the communication to/from the application is in email, event logging, database logs. Is there any way I can suppress the console window from coming up?
View 5 Replies
Sep 4, 2009
1. I am closing the form which started the thread inside the thread. There are no errors , but Is it safe ?
2. The thread starts at click of a button . If same button is clicked again , the thread is aborted. Should the thread be made Background or foreground ? it is working either way.
my code :
Private Sub BtnOk_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnOk.Click
m_Thread = New System.Threading.Thread(AddressOf MyFunction)
m_Thread.IsBackground = True
[code]....
View 3 Replies
Jan 14, 2010
How can i actually reload a form without actually closing it and re-opening it?By using a button click?
View 34 Replies
Feb 5, 2010
Is there a way to prevent the form closing event from executing if validation fails on a control? If validation on a control fails this stops the form from closing, but the closing event still executes. Scenario is user has focus in a text box, tries to close the form. Validation fails, but closing event is fired. I'm not sure how I can abort that event.
View 5 Replies
Aug 17, 2009
I have a background thread that sits waiting for new clients to connect to my TcpListener and when a new client connects it passes it off onto another worker thread and then loops straight back to waiting for another client. Like so:
[Code]...
Obviously I could just handle the exception and ignore it but I'm sure there must be a more proper way of doing it. One thing I am thinking of trying is using the BeginAcceptTcpClient and EndAcceptTcpClient methods but for one thing I'm not sure if that will actually help and for another thing the Begin and End versions of methods have always confused me in the past... I mean for a start how do you know when to call End?
I figured this must be a fairly common problem but searching the forum only turned up one result and it wasnt any use. I'll keep playing around and trawling google but just wondered if anyone had come across this before?
View 4 Replies
Dec 11, 2009
Im running a program with multiple forms with a menu and toolstrip defined and assigned with properties in a module. each form has the
Call MenuTemplate (Me) in the form_load sub.
My problem is that these menu's have menuitems which need close the shown form and open another. a sample of one of my menuitems is:
[Code]...
View 2 Replies
May 5, 2012
VS 2008 Finding the reason a form is Closing
View 1 Replies
Dec 18, 2009
I have a modal form that does double duty.When a user wants to add a new object to a database, I open the form blank and they fill it out. When the form closes, all of the data is passed back to my main form and is used to create the new object in the database.When a user wants to edit an existing object, I open the form and pre-populate all of the fields with the object's data.I'm running checks on the form as they edit the fields, only enabling the "OK" button (which will update the database) if the form has actually been changed. If they make a change and then undo it, the "OK" button is reset to Enabled = False.At the bottom of the form are a ComboBox, two buttons and a ListBox. The intent is to allow the user to select an item from the ComboBox and "Add" ("Add" button) to the ListBox, or select an item in the ListBox and "Remove" ("Remove" button) it FROM the ListBox.
This function works fine when the form is loaded blank.When the form is loaded with data, however, (and in the testing I've done, the ListBox has no items in it to start, which is valid), adding an item from the ComboBox to the ListBox causes the Modal form to close with a DialogResult of Cancel.I've tried to trace the source of this issue, but stepping through each line in debug mode gives me no clue as to why this is happening.I COULD remove all of the checks and update the form each time the user presses "OK" (in the case of no changes, the database data would be overwritten with the same data), but that seems kludgy and less elegant. Plus, I'd like this logic to work.
View 11 Replies
Mar 6, 2010
Hi guys. Our application got this exception after it was closed... I was wondering how we can solve this...
View 12 Replies
Jun 24, 2009
after running what i wanted in the DOS command prompt with:
System.Diagnostics.Process.Start("cmd.exe","/C C:gds2asc.exe C: emp.gds C: emp.txt")
How do i exit or close the command prompt window?
View 2 Replies
Jan 14, 2009
Context VS2008 SP1VB source file Problem Using xml documentation tags, VB IDE keeps deleting the closing "</remarks>" tag and a couple dozen preceding characters of text if the content is more than a few lines long.Example: Tag has been deleted mysteriously.
[Code]...
View 1 Replies
Dec 9, 2009
I was wondering if you should dispose undisposed resources before closing your application. Maybe it's not necessary to do this because closing your application automatically takes care of this.
View 2 Replies