From.SHOW() In VB 2008 Exits The System
May 14, 2010
I have just converting my VB6 project to VB.NET 2008. I have set up start with Model. It start with Main() sub, in Main sub I have declare as below:
Dim frm as new Formpwd
frm.show()
In formpwd I have UserId, PWD as test box and Two command buttons. The system executes form_load code and then PWD and UserId_Gotfoucus handler and then closes the system. Why is not waiting to accept UserId and PWD?
View 6 Replies
ADVERTISEMENT
Jul 20, 2010
I want my program to show a confirmation dialog (dlgConfirm) before the program exits to prevent accidental closure.
View 2 Replies
Dec 15, 2010
I have developed a vb.net application which gets a folder as input with n number of .txt.When there are say 5 .txt files the application executes and produces the excel output.When there a n numpber of .txt files say 30, the application takes a long time and exits without producing the output.
View 29 Replies
Sep 20, 2009
I had originally saved the project I was working on to my desktop, but now I have moved the folder to another location on my hard drive (didn't want it on my desktop anymore).
But since I've moved it I get the message:
The working directory does not exist: 'C:old folder locationResources'.
Is there a simple way to update my project to the new folder location?
View 1 Replies
Sep 29, 2009
my form need to show the current date when click on button. the code inside the button is TextBox1.text = System.DateTime.Now.After clicking, the textbox show "9/29/2009 4:32:10 PM" may i know is it possible for me to show only the date and also to change the format to dd/mm/yyyy?
View 1 Replies
Mar 13, 2009
I want to make my Form's icon appear on System tray - as long as my application is running [not just when minimizing]. How do I do that?
[Code]...
View 5 Replies
Dec 6, 2010
I copied a project I wrote on my XP machine to my other computer with Windows 7 64-bit. When I run it through VS2008 it exits immediately. It does not run a single line of code. The exit code is 0. I need to post what else it says. But I did find a posting about this saying the path to the temp files may be wrong for it but he did not know how to change this. If I create a new peoject and put a command button on it, the program runs. So I was wondering if it is something like the temp files or something else. The machine runs a compiled .exe of the program from the XP machone when installed on the Windows 7 machine. So I do not think it is the program not being compatible.
View 5 Replies
Aug 5, 2010
I want to allow my user to add urls to a database, much as a user might add file names. I have a form with a label, a textbox, and a browse button. I would like the browse button to load the user's default browser and then have the final url appear in the textbox when the browser closes. I have not been able to do that, but I have come close. I have not found a way to capture the url from an arbitray browser, so I instead load ie.exe and then capture the url with an OnQuit handler. That works (even verified by the debugger) but I am unable to get the url to appear in the textbox without actually clicking in the textbox once ie closes. I would like a suggestion as to how to avoid making my user click in the textbox and, if possible, to load the user's default browser and still capture the url. Here is my code for the Browse button (IE is defined at the class level as Dim WithEvents IE As SHDocVw.InternetExplorer):
theURL = ""
IE = New SHDocVw.InternetExplorer
AddHandler IE.OnQuit, AddressOf HandleIEQuit
[code].....
View 3 Replies
Jun 11, 2011
I've noticed running in a PE environment and seeing the "Nerd Herd" MRI software, I was wondering if anyone can tell me now to recreate this using VB.NET. I want to show the system info over the background if possible.
View 2 Replies
Sep 22, 2009
I am using VB.net and Sql server 2005.
I have GridView in Application where I have my CPUserID. There can be thousands records in GridView with different CPUserIDs.
Now I have a button "Allocate Token". But before allocating the token I want to check in my Token Table that if that CPUserID has already exists in table it should not allow user to allocate token and will return some message for that user.
For Each curRow As GridViewRow In GridView1.Rows
Dim cpuserid As Label = CType(curRow.Cells(1).FindControl("lblCPUserID"), Label)
Next
[Code].....
View 2 Replies
Jan 2, 2012
I have been using the 'findby' method for sometime, but now it suddenly is failing me on a new data source I have added to the project. I have the data source bound to a form and I am trying to find values based upon a primary key. This evades me, I am able to look up rows using 'findby' with other tables, but not this one.
Dim AnsiX12Row As ansisupplementDataSet.ANSIX12Row = Me.AnsisupplementDataSet.ANSIX12.FindBySegmentElement(CurColName)
If AnsiX12Row IsNot Nothing Then
[Code].....
I have checked and re-checked, the CurColName is for a value in the table, but cant seem to find it... I always have AnsiX12Row = nothingBradford W Brown
View 2 Replies
Nov 1, 2009
I've made an application in Visual Basics, But I Want A msgbox to appear when the form is closed would this work?
Private Sub Form1_OnExit(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.OnExit
MsgBox("Have You Saved, If Not Your Work WILL Be Discarded!", MsgBoxStyle.Critical, "Have You Saved?")
End Sub
View 1 Replies
Mar 16, 2012
I created a game in visual basic. When the user answers correctly, a message box will appear and ask if they would like to play again. How would I get the program to exit when they push "No" . . .
Public Class Form1
Dim temp As String
Private Sub RadioButton7_CheckedChanged(ByVal sender As System.Object, ByVal e As
[Code]....
View 2 Replies
Jul 23, 2009
I need to preserve a collection even after application exits. In ASP if i use application object this can be acheived. But in windows application what could i do to preserve collections?
View 4 Replies
Jun 13, 2011
Im working on a silverlight application where a user can create, edit, delete objects. The changes they make are placed in a queue which is processed every 4 minutes. When it is processed, the updates are sent over an async web method call to be saved in a sql database, one at a time. When the first update finishes, the next starts.Im having a problem when a user makes a change and then exits the browser app before the 4 minute timer has expired.Currently the changes are getting lost.Ive built on what the guy working on this before me has done, and explored the Dispose and Finalize methods, trying to start the update process when the factory is being shut down, but that isnt working due to the async nature of the web service calls. I get errors saying needed objects have already been disposed of.
View 1 Replies
Nov 23, 2011
I'm running a bunch of automated tasks in a thread I'm creating via the Thread class. So I'm not using a BackgroundWorker.
During parts of the automation, the thread may exit. This is normal. But when the thread completes, I need to finish up some additional tasks. I can anticipate all of the conditions in which the thread closes, but I'd rather not to do the final tasks at each point, as this will create a lot of redundant code.
So instead, I wanted to write an event that is triggered when the thread exits. I looked through the Thread class, but all I could find was the ThreadState property, which has a Stopped property. But, when I try to add a handler to that property, it doesn't allow me.
View 11 Replies
Jun 11, 2012
For some reason, the next code found on MSDN crashes or exits after 30 cycles or, in other words, after processing 30th Property, exits without explanation. As I said, I found it in MSDN
[Code]...
View 9 Replies
Jun 24, 2009
I has been looking for the codes which it avoid the system menu to be showing on title bar when you click on your right mouse button. The only one I found is removemenu method. I don't want to use removemenu as it would disable the title bar close button. I only needs the code to avoid me to click the right mouse button on the title bar so I still has no luck.
View 2 Replies
Dec 11, 2009
i need to show the system folders of computer in Treeview
My computer
C:
D:
like this
View 2 Replies
Sep 29, 2011
how can i check if the file exist in the absolute path. for example i have images in the absolute path from which i have to check if the image exits I can do it from FILE.EXIST(path)this method is not working for absolute path, even if the file exits its is showing the file doesnt exist.
View 3 Replies
Aug 29, 2009
I'm designing a Windows Forms Application, and there is a dialog that should NOT exit when the enter key is pressed, instead it has to validate data first, in case enter was pressed after changing the text of a ComboBox. I've tried by telling it what to do on KeyPress event of the ComboBox if e is the Enter key:
[Code]...
But no success so far. When the Enter key is pressed, even with the ComboBox on focus, the whole dialog is closed, returning to the previous form. The validation is NOT done at all, and it has to be done before exiting. In fact, I don't even want to exit on the form's enter KeyPress, the only purpose of the enter key on the whole dialog is to validate the ComboBox (but only when in focus, for the sake of an intuitive UI). I've also tried appending the validation to the KeyPress event of the whole dialog's form, if the key is Enter. NO SUCCESS! It's like my code wasn't there at all.
View 2 Replies
Jan 31, 2012
What is the best method to do data validation? I want to do data validation when the user exits a control so that he gets immediate feedback. I can use the Validating event or the Leave event for that. The problem is, that if the user doesn't know the right answer, and just wants to click the cancel button and leave the form completely, it won't let him. It continues to give him an error message until he completely deletes his answer. Very frustrating. Does anyone have a good method for doing this?
View 5 Replies
Apr 30, 2012
Windows Forms VB Application.. I added a splashScreen to my application. And it was flashing only for a second then going away so I added a sleep timer to my Form Load event... The problem is now the splashScreen stays open even After Application exits, instead of simply closing at the end of the sleeptimer.. The Part of the Form Load event that is causing this is as follows:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
Threading.Thread.Sleep(5000)
[Code].....
View 3 Replies
Feb 3, 2010
I'm working with a listbox that has, let's say, 20 items. The size of the listbox allows the user to see the first 5 items. However, the listbox has one preselected item which is sometimes not visible because it isn't one of the first 5 items.
After I set the selected Item for the listbox how can I ensure that the lisbox is scrolled appropriately so that the selected item is visible to the user?
View 1 Replies
Jun 4, 2012
I'm currently having an issue with VB.Net and Adobe Acrobat. The issue comes from exiting Acrobat but the Windows Taskbar still states that there is an Acrobat.exe process open. I have tried using Marshal.ReleaseComObject(), but it still hangs there. I do not want to have to rely on the "End Process" option on the Task bar in order to remove it.
Below is a snippet of the code that I am try to using:
Try
'Tries To Close Acrobat Application
acrobatApp.Exit()
System.Runtime.InteropServices.Marshal.ReleaseComObject(javaScriptObj)
[Code] .....
Although I am not sure if this could be a problem - I run a javascript saveAs script on the Acrobat side in order to make a copy of the file. This also could be a reason why it is hanging, but I ruled it out based on basic knowledge of saving files and exiting from other Acrobat/Microsoft Programs. Acrobat only closes when my application ends. (Currently) I am trying to make it consider the case if a user manually closes the Acrobat application.
View 1 Replies
Apr 5, 2010
i'm using the AppendText(serialPort.ReadExisting) method of the SerialPort class. i'm sending to the serial port a 12 byte frame. however in the TextBox control streams printed seem choppy as if the ReadExisting method is exiting too quick to grab all 12 bytes so i can display them at once.
View 3 Replies
Jan 31, 2011
I am making program that will show Original system install date and calculate how old is system...How can I code that in VB 2010?
View 3 Replies
Jul 7, 2009
I am struggling with this issue for serveral days now.My application needs to work like wsus (windows updates) does. On a certain event triggered by a windows service working under SYSTEM account it needs to show a (second) form under the user context.The IPC Remoting works fine so I think my issue is in the threading.When I use form2.Show() form2 appears but the form freezes.When I use form2.ShowDialog() the form appears but I cannot get the focus on it.
Service running under system account (in this example a simple console application)
Code:Imports ClassLibrary1Module Serv
Sub Main() Dim SDSIPC As Semaphore = CType(Activator.GetObject (GetType(ClientFromServer), "ipc://Client/SreeniRemoteObj"), Semaphore)
SDSIPC.DoSomething()
[Code]...
View 5 Replies
Aug 12, 2011
Ok so this is going to take some explaining. The process I am trying to do is grab data from a table function in SQL and then fill a dataset with the returned values. I then have to run this query twice more to query an alternative number table. Then add to the same table as the previous queries.This needs to be as fast as possible, so I am currently using an adapter.fill to populate the datasets and then a dataset.merge to put them all into one table.
The problem is the query can return duplicates which waste time and space, because of this I made column 3(part_ID) the primary key to stop duplicates.When this is run with the .merge it quits at the first instance of a duplication and doesn't continue with the population.
[Code]...
View 1 Replies
Aug 21, 2011
I want to work on a project I have in mind and this envolves saving data which would need to be updated every time the user exits the program. I suppose I need to know how to save a file to a blank text document, and how to get the application to read the information when it is called for. I believe I need to set delimiters or such, the helpfile is useful, but limited and some information is not listed at all.
View 7 Replies