Application Not Exiting Completely?
Oct 23, 2010
the application I am developing does not exit completely. i.e. the process can be seen in the Task manager. This happens only when I click on the [X] button on the title bar of the window of my MDI form. If I use the File >> Exit in the menu of my application, it exits without leaving any traces. I have used the "End" method there. But the process stays when I click the [X] on the control box on the title bar.
View 6 Replies
ADVERTISEMENT
Jan 4, 2011
We have an application that works well on XP/Pro, Vista, Windows 7, Windows 2003 Server, Windows 2008 Server (32 bit) but is problematic on Windows 2008 Server (64 bit). The application uses an unsigned activeX control which may or may not be related to the problem. To install we need to add the program name and regsvr32 as DEP exceptions. Once that is done the application installs correctly and operates normally except when the application closes.
If a user clicks the 'exit' button our code basically says 'unload me' (where me = the main form of the application) and there is no code in the form_unload section of the program.
Everything works well on every Windows platform except Win 2008 64 bit where we get
APPCRASH
Application Name: PDFPrint.exe
Application Version: 10.10.0.18
Application Timestamp: 4d238253
[Code].....
After we continue to close the program we see a message box with run time error 216 at 00002B24 message.
View 2 Replies
May 4, 2010
why does finalize not get fired when i try to destroy a class until the application is exiting. i feel like because these objects were never actually finalized until the program is exiting that its somehow bogging down the operation of my app VS 2008?
View 1 Replies
Dec 2, 2010
recently i came across a requirement. I have to create a text box with a vertical scroll bar. I hav to check whether the scroll bar is dragged down completely or not. i hav to do it in VB.net
View 1 Replies
Nov 8, 2011
I have an app written in vb.net. When I close it (I've tried me.close and application.exit), it doesn't completely close. Ie, I still see it in task manager.
View 7 Replies
Jun 12, 2009
Is it possible to use the strategy to force an application to update completely every s often to prevent piracy.I mean somenone manage to crack our click once application and make some modification.but inside the application there is some part of the code that make mandatory to update it.in each update all the application is replaced completely in this way the application on the user computer is a clean one and not the cracked one so the checks for seraching for serials numbers are reinstaed is it possibile to use this as technique to prevent piracy?
View 2 Replies
Feb 12, 2009
how can i hide my application completely from windows and when i press a shortcut key it shows my application.
View 4 Replies
Jun 16, 2011
How do I completely remove a visual basic application?
View 3 Replies
Jan 25, 2010
I am trying to do the following check to see if the user presses the Cancel button or the exit application (X). But for some reason it is not working. Can anyone let me know what am I doing wrong?
CheckCancel
If NewStationInfo.CancelButton.DialogResult = Windows.Forms.DialogResult.OK Then
do sometheing
[code].....
View 4 Replies
Nov 24, 2011
I've previously posted with regards to searching for a string within Excel, although the replies were enough to get my application 'working' the solution was riddled with over-complicated methods.Therefore I bought some books and figured it out for myself and came up with the below (which works like a charm may I add).
Dim oExcel As New Microsoft.Office.Interop.Excel.Application
Dim oBook As Microsoft.Office.Interop.Excel.Workbook
Dim oSheet As Microsoft.Office.Interop.Excel.Worksheet
[code]....
None of these (even if combined) make ANY effect whatsoever.I have also saved the workbook on exit, again to no avail.
View 9 Replies
May 22, 2011
Trying to exit an application but can't seem to kill it without an error."An error occurred creating the form. See Exception.InnerException for details. The error is: The form referred to itself during construction from a default instance, which led to infinite recursion. Within the Form's constructor refer to the form using 'Me.'"The form hasn't loaded yet, it is still in the process of looking for a file to load, if the user doesn't want to specify a working directory, that is their choice, but I need to close the app since it can't continue without it.I'm stuck in a class and can't get back to the main form without it continuing to load everything up. I wan't to force a shut down. [code] I was trying to get back to the main form without loading any more from the class to kill it there. [code]
View 6 Replies
Mar 2, 2009
I have a project that has three windows running at the same time, and exiting anyone one of them leave the others windows running.What is the best way in the code to stop the whole thing executing?
View 1 Replies
Mar 14, 2010
I find myself frequently turning off Intellisense because it adds wrong choices to my code. For example if I try to type "i " (without the quotes) it causes "int " to be put into my code. If I type "for " it may put "form " into my text.
Reaching for the ESC key constantly slows down my typing. (It's such a long way to reach for small hands). Is there an alternative way to exit out of intellisense without the highlighted choice being placed into my code, or is a way I can define a different key for this purpose?
View 2 Replies
Nov 30, 2010
I want to make a button that opens a program. Just for the sake of this post, we'll call the program Notepad.I want the users of my program to open Notepad, but not everyone saves Notepad in the same location. Is it possible to save a value (and the text in the TextBox) so the user doesn't have to retype it every time the program loads?
View 4 Replies
Aug 2, 2010
I have a simple for loop with the following code
For i As Integer = 0 To 4
Snake(i).X = (120 - 20 * i)
Snake(i).Y = 120
SnakeBody(i).Location = New Point(Snake(i).X, Snake(i).Y)
Snake(i).Facing = 3
Next i
But for some reason I unable to debug it. I place a breakpoint on the line Snake(i).X = (120 - 20 * i) and When I try to see what the values are the second time the loop iterates it simply exits the loop.
View 1 Replies
Jul 14, 2011
Why a public variable is not retaining it's value when exiting a subroutine.
I want to search through an array and if a condition is hit then the subroutine exited (thereby holding the index value of a variable named MarkerNo)[code]...
View 3 Replies
Feb 23, 2011
how do i add an already exiting .exe or file etc. to vb window form? i mean like make it execute just by clicking on a button or link lable. example like "linklable1" *click* -open up the file or .exe-
here is my code so far
Imports UpdateVB
Public Class Form1
Public updater As New UpdateVB.UpdateVB
[Code].....
View 1 Replies
Apr 6, 2011
i manage to get my dropdown list working, but when change related data in the built program, it does not save it when exiting the program. How do I save the data when exiting?My database name is Database1.sdf?
View 2 Replies
Jun 21, 2010
I need to exit a loop when the spacebar is pressed. [code]
View 18 Replies
Apr 24, 2011
This code is supposed to check if an item already exists in a ListView, and if not, add it. But it still adds it even if it was already there. All variables are set and fully working. The addable string is in an array.
Private Sub btnCombine_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCombine.Click
For Each comb As Array In combinables
If comb(0) = Selection1 Then
[CODE]...
View 5 Replies
Apr 29, 2009
Im using VB.NET 2008
I know I can exit a program by using the End statement.
But i was wanting to know how to check to see if the data has been changed since it was loaded and bring up a diaglog box up saying the data has been changed or not saved, would you like to save the data before exiting?
I will have a form that will have a yes, no, and cancel buttons.
View 3 Replies
Apr 29, 2009
Im using VB.NET 2008 I know I can exit a program by using the End statement.But i was wanting to know how to check to see if the data has been changed since it was loaded and bring up a diaglog box up saying the data has been changed or not saved, would you like to save the data before exiting?
I will have a form that will have a yes, no, and cancel buttons.
View 7 Replies
Jan 25, 2011
I have written a windows application, that can take in some command line arguments and can be ran from the command line as a scheduled task. It all works fine, but i am trying to give the user some feedback on the console if they launch it from thee.I have used the info described here, and have got some output on the command line, but when the application finishes it does not drop back to the command prompt unless you hit enter it just sits there waiting.
View 2 Replies
Jan 2, 2009
I've been applying some recursive techniques to the second version of my app. This recursive procedure simply iterates through all nodes in a tree view and tests whether the text in the "department text box" matches the text name of a particular node. If there is a match, then the user's name, stored in the "name" variable, is added as a node to the node that has the same name as the department text box text.
[Code]...
View 5 Replies
Mar 31, 2009
I know you can open a windows program like calculator but is there anyway if calculator is open i can close it with code ?
View 5 Replies
Sep 19, 2010
I had designed a simple form with Groupbox and some checkboxes (colors)where I need to program the following :When I checked one checkbox in this collection I need the previously checked checkbox to be unchecked and the new one to be checkedbut what I'm getting is not like this where after writting the following code :
Private Sub obj_checked(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkred.CheckedChanged, chkblue.CheckedChanged, chkbrown.CheckedChanged, _
chkgreen.CheckedChanged, chkwhite.CheckedChanged, chkyellow.CheckedChanged
[code].....
View 1 Replies
Mar 1, 2011
vb.net Public Function GetCPUTemp(ByVal format As TempFormat) As Single
[Code]...
I place a break point on the enumerator = searcher.Get.GetEnumerator() line, and it exits and runs the app after moving past the While enumerator.MoveNext line (into the While loop). No code runs after this point.
View 4 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
Dec 5, 2010
I have a Visual Basic application that I use to access an SQL 2008 database. When I add a record to my table everything appears to be fine. As long as I keep visual studio running the data remains in the database. But if I exit visual studio and then reopen visual studio the data in the table is gone. I can reenter the data and again everything look fine. When I created this application I selected my SQL Server database from the Add New Item dialog. I selected service-based database. Instead of creating the database from the server explorer. Are there settings I need to change when a database is created this way?
View 1 Replies
Jun 28, 2011
I've created a database in Access 2007 and connected it to Visual Basic 2008. My database have tables Coachee and Coach. Details of Coachee are displayed in one form and there's a button that when clicked will show details of the Coach of that particular Coachee in a another form. If the Coach is not in database, user will be prompt to insert a new Coach record. Problem is, when saved, the newly inserted record will not be displayed and i have to exit and rerun the program, only then the record will be displayed.
View 7 Replies