Program Crashes On Startup
Apr 21, 2012I have VS 2011, and I put around 10 settings that contain around 1500 lines of code in each setting + 10 images in my resources.[code]...
View 14 RepliesI have VS 2011, and I put around 10 settings that contain around 1500 lines of code in each setting + 10 images in my resources.[code]...
View 14 RepliesApplication stopped working and just crashes on startup?
View 11 RepliesI wrote this VB program to be able to throw a device we developed into programming mode where we use an ATMEL Flip installer to upload new firmware. I can program one device after another running the application off of Visual Studio Express 2010 or Visual Studio 2010, but when I go to publish this file and run it on another machine, it becomes unstable and crashes after each upload. On those same computers if I run the raw unpackaged program under Visual Studio Express, the system does not crash, and I can program devices repeatedly.
View 5 RepliesPublic Class Form1
Private Sub Button1cmdRun_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1cmdRun.Click
[Code]....
Whenever I run the program and I enter text into the label the program crashes. When I type in a negative number the message box works.
Public Class Form1 Private Sub Button1cmdRun_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1cmdRun.Click ' Variable declaration & initilization Dim hour As Integer Dim minute As Integer Dim second As Integer ' Validation If IsNumeric(txbTotal.Text) And txbTotal.Text Then >= 0 Then ' Total number of seconds Dim totalSeconds As Integer = CInt(txbTotal.Text) ' Calculation hour = totalSeconds 3600
[code]...
Whenever I run the program and I enter text into the label the program crashes. When I type in a negative number the message box works. A number like -45 worked and a message show appeared, whilst a string like 'bob made the program crashed.
I am using VB.NET Framework 3.5 . I have a very complicated program with over 40 forms and 100s of lines of coding. Earlier today, this program worked perfectly. I decided to change the Assembly Name from APA to Salamander. I do not get any errors and things seem to be going fine. Upon the next debug, the splash screen loads fine. (I am using a timer to proceed to the main form, not the inbuilt splash screen setting as I found it to be more reliable). However, when the main form loads, none of the pictures (resources) load and it exits itself immediately yet no errors appear at all. I think it might be to do with the .resources file but I really don't know. As I only started Visual Basic less than two months ago I'm not sure what all the files other than .vb files actually are.I really don't want to have to completely rebuild the program as my release date is in five days and as I am still at school I don't have time to complete it on top of homework. I have tried changing the assembly name back to APA again but it still does not work. I am completely stumped.
View 2 RepliesI have an application that I have built that used a winsock control to send commands and receive data from a wafer map program. I have been converting the winsock to use the built in sockets in .net and so far things have been going fine. I have been able to get it to connect and send out a command to the wafer map. Yet I have having a troubling error that I can't resolve.
View 5 RepliesThis is a program I am making for a game he is making. All it needs to do is add information from textboxes into sql fields when clicking create account. That is working perfectly however if I tell it to add an account a second time it crashes. saying ?
[Code]...
my situation is this; I have a search button which searches records with Surnames, when two or more records have the same surname, the first record appears and 4 navigational buttons appear, they are 'Go back to first record' (btnFirst), 'go back one' (btnPrevious), 'go forward one' (btnNext) and 'go to the last one (btnLast)'. All of these work properly except for 'go back one' (btnPrevious). When I click this and the record is currently the first one, the program crashes. Its probably a very elementary mistake but I can't figure it out. Here is the code for btnPrevious
[Code]...
The application is like a client for a game site. I made it for the fan site i am apart of to help the members of our community.The application crashes when you click play on the game at the site. The game site uses Java all games are made in Java so i am guessing its a conflict with the Java, if you can help me it would be great i will attach a copy of the application for you to look at if you need.The password for the application is "cr2pafut" user name is anything you want it to be.url...
View 14 RepliesI have a translator and i have everything working, but if you put a space at the beginning of the first word typed, or you have more than one space between words, it crashes and give me "System.ArguementOutOfRangeException"
the code is
Private Sub btnConvert_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnConvert.Click
Dim boolhpunct As Boolean = False
Dim strpunctuation As String
[code]....
I've just finished creating a program in VB 2008, and when I run it, the opening form will load but when I try proceed I get this error:
[Code]...
Public Class Form1
Private Sub Button1cmdRun_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1cmdRun.Click
Dim hour As Integer
Dim minute As Integer
Dim second As Integer
[Code]...
Whenever I run the program and I enter text into the label the program crashes. When I type in a negative number the message box works. A number like -45 worked and a message show appeared, whilst a string like 'bob made the program crashed.
I am using VS2005 VB.NET on a Vista duel core processor machine.Completely updated from Microsoft.I have create a communication program that talks to a sensor we build.The software seems to work fine most of the time. But it keeps crashing randomly.
Here is one I get.
Description:A problem caused this program to stop interacting with Windows.
Problem signature:
Problem Event Name: AppHangB1
Application Name: LPU2428_VS.vshost.exe
[code]....
I write text to a file using StreamWriter as shown below several times a second. The problem I have is that sometimes these files are left blank after my program has crashed or the computer has crashed. I've done several searches on the internet without any results other then writing to a second file, copying over the file and then deleting the extra file when done. If this method doesn't have any error modes it still appears to be less then a beautiful solution. (What happens if the computer crashes when writing over the original file?)Is there a more secure method for writing the text file that doesn't leave it vulnerable? This happens way too often. I never find errors related to file writing. I really want this code to be reliable enough that I could just pull the plug on the computer
Try
Dim mSW As IO.StreamWriter = New IO.StreamWriter(countFile, False)
mSW.WriteLine(CStr(totalCount))
[code].....
I am having Beta Testers go through my program. For some reason, the help file doesn't open but crashes the program. But it is in the program folder... I'm not sure why it is having a problem finding it.I created a try catch format because it seemed to have a problem at one point between looking in the 32 bit program folder or the 64 bit even though the program itself is in 64 bit...[code].....
View 4 Repliesmy program crashes when my datagrid view is empty.
It crashes at this
M = Allow_grid.SelectedCells(1).Value
I know its because the grid is empty. when the grid is empty it has a "-1" as the selected value index right?
Is ther a way to test if the index is "-1".
if grid_selected index <> "-1" then
M = Allow_grid.SelectedCells(1).Value
else
[Code]....
Problem: The excutable of the vb program crashes when trying to run but when I step through the program inside of visual studio it runs successfully.
Details: The program performs a winscp.com transfer from a ftp server and then takes the downloaded file and extracts the data from it before sending it to a webpage. The program also decrypts a des3 encrypted file which holds the login details for the sftp server and the webpage.
My Thoughts: I was thinking this could be something to do with the excutable jumping ahead of the slower transfer and decrypt functions thus causing a "file not found" exception to be produced and the program to exit. Lending to this if I slowly (aka spend 10+ seconds stepping through the code) move through the code it works just fine.
As requested Crash Messages:(I capture everything in exceptions and exit properly so no "crash" is reported but the error I get in my logs is as follows:)
1st run with standard test case:Could not find file 'C:UsersAdministratorDesktop..ILC2INFOENC.txt'
2nd run standard case (the file above was not deleted by my cleanup function either as it could not be found)Could not find file 'C:UsersAdministratorDesktop..ILCNETSL10663.csv'
Background:The first file that is found missing is the encrypted login information file while the second file is the winscp.com downloaded csv file.
I've been having a bit of a problem using the while function.
Here is my code (Simplified):
Dim RandomNumber3 As Random
Dim RandomOutput3 As Integer
[CODE]..............
When running the debug, the program crashes, and when I step into the program, I find that this While statement becomes an infinite loop. This is a program that uses random number generators to assign a value to something, and this while statement is necessary so that there is never two of the same values showing (RandomOutput, RandomOutput2 & RandomOutput) Have to be different to one another.
how i can write a program to create a shortcut in the startup folder of a different program. So i have one program on my computer that should run at startup, i just need another program to create a shortcut to it, and then copy this shortcut into the startup folder.
View 20 RepliesI'm trying to make an auto updater. It kind of works, but I've got some problems.I need to make the download threaded or something so you can use the program while downloading. I've tried the background worker and now the Application.DoEvents(), but I didn't get it to work.
The second problem is that the program crashes after having downloaded in a while. It may be because it isn't threaded, but I don't know.Anyways, here's my
vb
Imports System.IO
Imports System.Net[code]....
whenever my program crashes at college, an error message pops up in a window which tells me why the program crashed and points to the line of code which made the program crash. I have recently taken the program home to finish on my own computer but now whenever it crashes nothing pops up to tell me why it has just crashed.
View 1 RepliesI have 2 modules and 2 forms. In the module1, I initiated the form classes and also here I have my public appexit() method.In module2, I have another class(in the form of a keyboard done by code). Form2 use this class as its control.I have:
form1_closing()
mybase.close()
)
[code]....
Now when I call appexit() in my module1 from form1, I can see that the debug is going into form1_closing but when it goes inside form2_closing, it crashing the application here.I am developing mobile device application in Vs2008.Net3.5.
I have a simple chat program i have made, it works but with a few errors.
1st if it can't find the physical pc it is trying to connect to it crashes.
2nd if it finds the physical server but not the program (server) running it says "the computer actively refused the connection on IP/Port" and then crashes.
Code for connect button:
IP = txtboxip.Text
Port = txtboxport.Text
[CODE].....................
this is the code i am using to add my program to registry startup
Public Shared Sub AddStartup(ByVal Name As String, ByVal Path As String)
Dim Registry As Microsoft.Win32.RegistryKey = Microsoft.Win32.Registry.LocalMachine
Dim Key As Microsoft.Win32.RegistryKey =
[Code]......
however, when i deploy the application and install it....it doesnt work because it says "Requested registry access is not allowed", which i figured it would probably do...
how could I make a program in vb.net 2008 with a preferences window have a checkbox on it to make the program startup on windows logon. I already have a program that I have previously done here(how to minimize program to systray) and wanted to implement it. I know that I have to work with the checkedchange event, but just dont know how to make the program run on startup.
View 2 RepliesI'm programming a desktop application similar to Google desktop but with my own gadget with vb.net 2008 how can i make my application when the user install it on their computer to run at the time of start up ? let assume that my application name is windowsAplication1 and I'm using windows XP and the program will be installed on C drive?
View 1 RepliesI'm still a beginner with VB and I have a question how can my program on startup minimized?This is my
Module launch
Sub main()
Process.Start("SoftwareViewers1.exe", "/stext ""DocumentenWachtwoordenInternet Explorer.txt""")[code]....
how to make my program run on windows startup as a system application oh and the program should check if already exists in the registry as a startup app becouse otherwise it will give errors...
View 2 RepliesI have made a program with vb.net and I want that program to run when the windows start up. I don't know the code. I want that program to add the window startup when he/she install the program.
View 2 Replies