Open Program With A Specific Form?
Feb 22, 2011
I am developing an application with a number of windows forms. The first form I designed is the one that opens when I run the program. This was fine all during the development and testing.
Now I want to add a Login form but can't figure out how to get it to be the opening form when a user starts the program.
View 3 Replies
ADVERTISEMENT
Jun 9, 2010
I have an embedded EXE file, that my program extracts. I want to open a specific file with this program. How do I do this?
BTW: If you want to extract an embedded resource in one line, here it is: My.Computer.FileSystem.WriteAllBytes(PathToExtract,ResourceFile, PutFalseIfYouWantToOverwrite)
View 16 Replies
Mar 15, 2012
I have form A that has a datagrid on it, I want to be able to double click a row in form A and open form B to that record.
I know how to do that in VBA in Access 2007, but I am having trouble comprehending the procedure for VB 2010.
View 8 Replies
Dec 7, 2011
I am wondering how to open a specific program with the textbox contents. Here is my situation: I want the text in the textbox to be saved to a html file and then open that html file in a specific browser.
View 5 Replies
Apr 16, 2011
I'm making a program to open specific web pages with button clicks. I have a form with the buttons and 'WebBrowser1'. Everything works ok, except that when clicking on certain links within a website, it opens a full-screen window of Internet Explorer.How can I prevent it from opening a new window. It should just navigate to the link within the WebBrowser1 window.
View 6 Replies
Feb 24, 2010
i m using vb. net when i run my form
View 1 Replies
Mar 29, 2010
i'm not expert in writting vb codes. but there's this IT project im doing in access
View 3 Replies
Jun 12, 2011
Is there a way that I can use like F1, F2, F3, etc to open a specific form? I would like to have an options form but not have it to where anyone can access it unless they know the Function key to use.
View 1 Replies
Sep 6, 2010
I have a small "options" form that when shown, the user submits some changes, clicks a button, and then it fades out. I want the form to open at the mouse location. How would I do that?
View 1 Replies
May 22, 2009
I have a dataset called KeyData made up of two tables Customers and Orders.
I have two forms, one named MainForm that shows records from Customers in details view and the related Orders shown in GridView called OrdersDataGridView. The other form is called OrdersForm and is populated with the Orders table from the keydata dataset and shows records in details view.
When I navigate the MainForm customer records the correct orders are shown in the OrdersDataGridView. So far so good.
Here's the code that was generated when I dropped the tables within KeyData dataset onto the MainForm:
Private Sub MainForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'KeyData.Orders' table. You can move, or remove it, as needed.
[Code]....
View 4 Replies
Oct 22, 2009
How would i make it so when the user clicks a button. it will open a form with a some tabs but go to a specific tab like lets say i have 4 lets say i click the button and it goes to 2.
View 10 Replies
Jan 9, 2010
I want to know how you can open a form with specific information as if you are just calling a sub, kinda like how a message box is. Example:
MyForm.Show("The form title")I also want to know how I could apply this to forms that are being created from pre existing forms. Exaple:
vb Dim NewMyForm as New MyForm("Title Text")'Now I want to know for each of these next 2 lines of code, think of them as being different codes all together.NewMyForm.Show() ' orNewMyForm.MdiParent = Form1NewMyForm.Show
View 30 Replies
Feb 19, 2009
I've got 2 levels of users, and I'd like to find a way to open a certain form for each user. I have tried something that I thought would work, but it just opens the same form for all users:
If "MenuType" = "Landscaper" Then
Dim MainPanel As frmOwnerPanel
MainPanel = New frmOwnerPanel
[code]......
View 11 Replies
Mar 20, 2010
I have this frm_customers and this button called View/Edit.
What I want is that when i click this button it should ask me a customer Id and then go to that customer id in frm_customer
View 1 Replies
Aug 17, 2011
I've created a very simple form with one button on. I need it so when the form runs, it opens in the bottom right hand corner of the screen regardless of the resolution. It also needs to be always on top of all other applications.
When the buttons pressed, i need it to close all iexplore instances and reopen a fresh instance.
I've tried to search for the answer but to no avail.
View 10 Replies
Oct 8, 2009
im having trouble opening adobe from my coding, also is my file ok or do i need to call from its folder location within the program.i need to be able to open a specific .pdf file from a whole range of file located in the program.what im getting the user to do is press 1 of about 14 buttons to select a brand. then in textbox1,enter the first part of the file name so in this case a274 (adobe runs in .pdf format so the file would be a274.pdf).at the moment i get a win32 error high lighting startinfo as the problem so im thinking its the adobe.exe is the problem. [code]
View 9 Replies
Jan 21, 2011
I develop a small calculator in VB 2008 but i lost the code due to virus attack on my computer. But i make a exe when i complete is it any way i open this exe in my new project?
View 5 Replies
May 28, 2009
How can I get Visual Basic to open another form using code? I have attempted to google the solution several times and never found anything that works.
Also, do VB forms share variables? Is there any way for one form to send data to another form?
View 1 Replies
Oct 13, 2009
I have a vb.net form which has a button in it. The button will call A.exe (it's a vb.net exe) using the command Shell("A.exe ", AppWinStyle.NormalFocus).
How can I make sure that everytime I press on the button, A.exe will only open once, and does not open a new form each time?
View 4 Replies
Mar 18, 2009
Does anyone know how to call an InfoPath form to open from VB? The form is located on a webserver so the path would be something similar to[url]...
View 1 Replies
Jan 22, 2010
i need to open a form (loginform1.vb) when the program starts. i do not want this form to be able to be closed, as it will be used as a login for the form. i have already tried loginform1.show() but this is able to be exited, and it is started in the background.
View 4 Replies
Feb 23, 2012
Is there a way to direct a form in VB.NET to open and maximize in the second monitor. That is if there are two monitors displayed, to have the form load in the second window maximized by default?
Say a program was made with two forms and a computer has two monitors attached.
I want FormA to show in MonitorA by default and FormB to show in MonitorB maximized by default
View 1 Replies
Jul 16, 2010
How do I Close a Form and then open a new one straight away? Im trying to make a Login for a Program, but I want the Login Box to open first, then disappear when the credentials are correct and a new Form to load.
View 3 Replies
Feb 1, 2010
I've got a VB.Net form application that dynamically loads user controls based on which navigation link the user clicks on. I'd like to make it easier to use at Design time by putting a link of some sort to open the User Control at design time. The link would go onto the form in the space where the User Control will be going. This just saves a little time from having to browse through the files to open the correct file.
View 2 Replies
Feb 23, 2009
How I Can open the same form in my application one time only can not open the form tow time in same time
View 5 Replies
Jun 15, 2012
I was wondering if it was possible to check if the file "test.txt" is open? and if so then display a message that the file is in use? My biggest problem is that the file can be opened in notepad, word, excel etc. I have some basic coding, which checks if the file is open - what I am trying to do is check if the file is currently open and if its not in use then proceed with the coding, I have the following coding so far.
Dim Process() As Process = System.Diagnostics.Process.GetProcessesByName("notepad")
Dim Process2() As Process = System.Diagnostics.Process.GetProcessesByName("word")
For Each p As Process In Process
[Code].....
View 2 Replies
Jan 19, 2011
I create Ms word document MyWord in C hard disk then I create this code to open it but didn't success without any error.
vb
Dim oWord As New Word.Application
Dim oDoc As New Word.Document
oDoc = oWord.Documents.Open(Application.StartupPath & "c:MyWord.doc")
View 12 Replies
Jun 13, 2011
At the moment I am using this:
Dim Open As New OpenFileDialog
Open.ShowDialog()
TextBox2.Text = Open.FileName
But that only allows me to open specific files. Can I make it so I can open a folder?
View 7 Replies
Sep 13, 2011
I'm making a program that will allow people to enter a URL, click on a button and the URL will open in 6 different browsers. Now I can't figure out how to open a specific browser with a specific URL.
I know this though:
process.start(browserpath)
This will just open up the browser, but how can I open the browser with a specific URL?
View 3 Replies
Nov 10, 2010
Im working on a way to use a Select statement to set the image of a picture box.[code]...
View 5 Replies