Open .exe From A Predetermined Location On Any Drive?
May 1, 2010
I have been trying to figure out how to open an .exe file from a that is in a certain file, what i am trying to do is create a program that will be portable-via jump drive or cd drive, the reason i feel stupid is that I did not realize that visual basic and vb.net are two different animals- I was trying to use app.path for days- then came across a post that set me straight that I can not use ituch for what I need
system.diagnostics.process.start("C:
od.exe")
as long as nod.exe is in my c: -then it works
[code].....
View 1 Replies
ADVERTISEMENT
Apr 30, 2010
I Am very new at this, for the past week I have been trying to figure out how to open an .exe file from a certain file, what i am trying to do is create a program that will be portable-via jump drive or cd drive, the reason i feel stupid is that I did not realize that visual basic and vb.net are two different animals- I was trying to use app.path for days- then came across a post that set me straight that I can not use it-
[Code]...
View 2 Replies
Apr 18, 2009
What I am trying to figure out is a way to copy a file and paste it in another location. So that there will be the original file in the user set location, and then a duplicate of that file in, say, the "Program Files" folder. I would also need some way to check if the file exists to, so that it doesn't keep creating a new file each time the program starts up.
to sum it up: I need to be able to copy a file to a predetermined location and check if the file exists, and if it doesn't, it will copy the file over to the location.
View 1 Replies
Jul 12, 2011
I design photo viewer app using this code
[Code]...
now how to make my photo viewer open when user open drive C and get all photo in the drive to be shown in it ?
View 14 Replies
May 3, 2010
dim cn as oledbconnection
cn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:valid.mdb")
[code]......
View 4 Replies
Feb 19, 2009
First off a short background of the project I am working on- I am developing a program that will be run off removable media (i.e. USB Flash drive). This will be a �virtual desktop� which you will be able to take with you and have the same �desktop� on any system. As we know drive letters can change with each host system the drive is plugged into, I need to be able to determine the path for the flash drive and access a specific folder ( i.e. My Documents)
I have an picture box(representing the icon) placed on my form (form1) and when I click the icon I want to be able to open and view the a specific folder from the portable drive. I need a click event that will determine a dynamic drive letter for a directory on the removable drive and then open that directory in an explorer window.
[Code]....
View 1 Replies
May 1, 2010
how to open an .exe file from a that is in a certain file, what i am trying to do is create a program that will be portable-via jump drive or cd drive, the reason i feel stupid is that I did not realize that visual basic and vb.net are two different animals- I was trying to use app.path for days- then came across a post that set me straight that I can not use it.[code]
View 4 Replies
Jan 31, 2011
What is the best and fastest way to find the exact location(Drive/Folder) of a specific file, without scanning the whole drive. Right now, I am using those two instructions to locate EXCEL.EXE so I can properly call it with a shell command.[code]It is quite a long process, and I have to deal with some access denied folder like System Volume Information. I am quite new to VB programming.
View 3 Replies
Jul 31, 2011
I'm making a program which will open .rtf files into a rich text box by pressing a button. I can't seem to make it work. I'm trying to make the Go Button on Form 1 open the selected rtf file and put it into the rich text box on form 2.
Dim file As String = (destination)
ReadFrm.ShowDialog()
My.Forms.ReadFrm.bookrtb.Text = file
Nothing seems to happen It's trying to read from the C:\Program Files directory.
View 2 Replies
Jul 17, 2010
I'm trying to write a program that opens a folder from the CD disk when a button is clicked. The program will be run from a CD, and aims to open a certain folder. However, I can't use "shell "explorer...."" because the drive letter will change between different computers. Is there a way to open the folder straight from the CD in VB.NET
View 3 Replies
Mar 12, 2010
i was wondering if there is any way to read from a file in the application directory without specifying the drive letter. Here's what i have:Dim var var = My.Computer.FileSystem.ReadAllText("c:appdirectoryfilename")
If i leave off 'c:' it looks for it in system 32 or something. why can't i just say
ReadAllText("filename")
View 6 Replies
Dec 17, 2010
I want my code to open cmd and then change to an other hard drive. But instead bends lots of cmd come up.
I don't know what the problem is, but here is the code.
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code].....
View 5 Replies
Feb 16, 2011
i am currently using this code to open and close my drive in VB. However i want to make a single button to open the drive if its close and to close it if its open.
Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" (ByVal command As String, ByVal buffer As String, ByVal bufferSize As Int32, ByVal hwndCallback As IntPtr) As Int32
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim lRet As Long lRet = mciSendString("set CDAudio door open", vbNullString, 0, 0)
End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)HandlesButton2.Click
Dim lRet As Long lRet = mciSendString("set CDAudio door closed", vbNullString, 0, 0)
View 10 Replies
Mar 18, 2011
i am in need a script to open and close cd drive in a loop i already got this :
[code]...
But i need to start it with a button in visual basic 2008
View 2 Replies
Dec 8, 2008
I can't open an Access database on a mapped drive. However it works if I use the UNC path. how I can get this to work? See the code below for an example of what works and what doesn't...
Code:
mConnString = "provider=Microsoft.Jet.OLEDB.4.0;Data Source=\tiger-2000dvb_mt7MTrackBE.mdb" ' This works
mConnString = "provider=Microsoft.Jet.OLEDB.4.0;Data Source=T:vb_mt7MTrackBE.mdb" ' this does not work
Dim objConn As New OleDbConnection(mConnString)
[code].....
The error message I receive is...'T:vb_mt7MTrackBE.mdb' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.I've done the obvious and verified that t:vb_mt7MtrackBE.mdb is a valid path.
View 3 Replies
Feb 7, 2012
Public Class Form1
Dim strname As String
Dim intage As Integer
[Code]....
i am trying to make this program that asks for your name, age and a password the user already has and returns a id number that is generated randomly. my question is how would i match a word to a predetermined list of words then it would get deleted off that said list so it could not be reused.
View 6 Replies
Jun 3, 2009
I am doing setup project in VS 2008. I used custom action to select file from local drives.On the button click of custom action form, I am launching Open file dialog...asofdGetNetPath.ShowDialogWhen I run the setup on Vista, and click the button to open the openFileDialog, it hanged, form becomes non responsive and I have to cancel the setup.on debugging I got following error"Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your main function has STAThreadAttribute marked in it. This exception is only raised if a debugger is attached to the process."
View 2 Replies
Sep 18, 2009
HTML
If CompLang.Text = "ru***" Then
CompLang2.Text = "working"
End If
This is just a simple example. I'm trying to make it so that if one x.text = ru*** (for instance, ru---, or ruuuu, or rux2x, etc.) to have x.text change to a predetermined value (hardcoded).
View 3 Replies
Jan 23, 2010
i have been looking all over for a tutorial or code snip that will show an image strip on a form from a predetermined dir?
all the ones i see is one pic but there is a browse button.. i need it fix.with all predetermined directories..
View 2 Replies
Feb 24, 2010
i m using vb. net when i run my form
View 1 Replies
Jan 14, 2010
i want to get the location of an open process like its no shit x and y and then im going to move my programs location over it and make my form bg transparent. However when I call the dll to get it like below i get Getwindowplacement not defined, and WINDOWPLACEMENT not defined.[code]
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
May 12, 2012
I went through 10 pages between 3 searches and none of the topics were even relevant.
View 2 Replies
Nov 26, 2011
I'm using Vb.net 2008 This code will open specific Excel file from specific location(C: a1.xlsx) and print data to it. Is it possible to open this file from any location(as when we use Process.Start("ta1.xlsx") )on Pc and complete the process of code( print datat)
vb
Dim exl As New Excel.Application
Dim exlWorkSheet As Excel.Worksheet
exl.Visible = True
[code]....
View 1 Replies
Oct 21, 2009
Im working on a way to use a Select statement to set the image of a picture box.
select case currentno
case 1
PictureBox2.Image = Image.FromFile(C:UsersValued CustomerDocumentsVisual Studio 2010ProjectsChiroReportChiroReportChiroReportPnt_GuideLAT CERVlatcerv52.jpg)
[code]....
The Select statement should work fine but the path to the file i want to open doesnt. Id love a way to reference the Pnt_GuideLat Cerv directory based on where my program gets installed on the Hard drive.
View 1 Replies
Mar 29, 2010
I get the following error message when I try the following:[code]"Excel cannot open the file 'ContactReports.xlsx' because the file format or file extension is not valid. Verify that the file has not been corrupted and that the file extension matches the format of the file."What I would like to do is Open a excel file that is the XLTemplatePath and the either rename or save the file at the XLSaveReportPath and then use that renamed/saved file to fill the report out.I am using Visual Studio 2008 in VB.NET
View 2 Replies
Oct 12, 2009
Im trying to make something that will save something from textbox1.text I got this code
[Code]...
View 1 Replies
Nov 22, 2010
I have a game that will open four windows on the desktop using VBE2008.How do I control the starting location where on the desktop those four windows will appear when I Load (Open) the Window?
View 2 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
Nov 29, 2010
I am trying to copy file from server to the Current Pc useing the following code..[code]
View 4 Replies