Open Url From An Application?
Jun 9, 2011
I have little problem to open any url link from my application i have placed a textbox and a button on the screen. what i want is any url which i write in the textbox and when i press the button automatically that url would open in the browser.
View 19 Replies
ADVERTISEMENT
Nov 27, 2011
I want to open up an existing instance if my program is already running only if its running the same version.I noticed that this question was asked for only if the name exists, but what if the version is older, I just want to notify the user that an older version is still running, "please remove older version before starting this version."The other link is this one:Return to an already open application when a user tries to open a new instance but they don't talk about closing an instance if an older or newer version is detected.
View 3 Replies
Nov 12, 2011
How to open an application from 1 button (not to open the application, only to select it)
Example: 1 button> when it press to display only .exe file for choose
View 16 Replies
Sep 12, 2011
With the click of a button I want to open a rtf file embeded in the application itself.
how can I do this?
View 1 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
Nov 16, 2009
What is the code to open a folder or application in a vb.net application?
View 2 Replies
Jul 19, 2010
i have 2 vb applications. this is the code for the first one which when a button is clicked it will check if the other application is already open. If not, it'll open that application -
Dim sComputer As String
sComputer = Environ("COMPUTERNAME")
Dim LocalByName As Process() = Process.GetProcessesByName("ticket.prices", sComputer)
[code]....
this runs fine. but what i need is that the customerid on the application 1 that is calling application 2, should be transfered while opening app 2.e.g -Customer 10001 screen is open on app 1. When i click open app 2, the above code runs and opens app 2. how do i make app 2 open to customer 10001 screen. Is there any way to pass parameters while opening app 2 in System.Diagnostics.Process.Start ?
View 2 Replies
Jun 1, 2012
I was wondering if it is possible to check if a specific application is running when I open up a form.
If the application is running I want a label to say running, but if it isn't running then the label will say closed.
View 2 Replies
Jun 3, 2010
I would like to close my appliaction and then open it based on a condition.Lets say I have a Lab1.EXE file, I want to close if the flag = True and then reopen it.
If ClFlag = True then
Application.Exit
---Then
RUN LAB1.EXE
Endif
View 9 Replies
Mar 5, 2012
I made a vb 2010 project that in turn is pretty dumb, just one that you click a button to open the file that the button contains.... but all i know how to do is basically open .exe files, image and audio files, but i would like to know how to open anotherpublished project of mine by clicking a button.
View 1 Replies
Jan 27, 2010
I my window project (vb.net 2005) , there are 20 forms. I want to open particular form when Press F2 when my application is running
View 1 Replies
Mar 10, 2010
I am making a Movie Launcher for myself, because i have a **** load of movies :P (They are all digital). Now it's working fine, but i have a question.
Some of the movies have a VIDEO_TS folder, witch i need to open in VLC player. How can i let a VB application open a whole folder (so the VIDEO_TS folder) in a program like VLC?
View 1 Replies
Mar 28, 2009
I have to write a macro which should run a .BAT file and
should enter username and password. click on 'OK' button. click on other buttons available on the application.
how can i do all these things from excel VBA.
View 1 Replies
Jun 20, 2012
I was if there is a way to open a application in a texbox or something similar on the form
View 8 Replies
Feb 22, 2011
My application commits data to the database via OLEDB and I have no problems with that, but I'd like to be able to have a feature of my application which will enable me to open the database.accdb and display a query/report which already exists within the db.
In the old vb5/6 days this would be as simple as executing msaccess.exe and passing it over the filepath/report name in one string.
This has problems, what if the install path of access if different? Is this even supported in .Net ?
View 3 Replies
Feb 23, 2011
How do I add a button which, when clicked, will load a .exe from a location on my program files? And then to close the form app after the .exe is loaded?
View 2 Replies
Jun 3, 2011
I have an application that will take in specific details from the customer and generate a URL address with query string items.I need to open up an internet window that will navigate to that URL?
View 1 Replies
Jun 23, 2011
I have an application that will take in specific details from the customer and generate a URL address with query string items.
View 5 Replies
Feb 2, 2012
I have a menu with a lit of mp3 files, once I click on a name it should open and run mp3 file using the default player (example windows media player), I searched and found how to do that but within the application which I don't want.
View 1 Replies
Jun 22, 2007
How i can open pdf file in vb.net applicatin?
View 19 Replies
Feb 16, 2010
There three way to open PDF in .Net Window Application
1) Process.Start
2) MS Browser Control
3) PDF Com Copmonent
I do not want to use process.start (coz it not open in same window)
in 2 and 3 there is a big issue with focus. Both the control grab the focus
View 1 Replies
Oct 27, 2009
When a user closes my application, I want to display a message asking them if they really want to do this, and display a yes/no option.
If they say yes close the whole application If they say no keep the application running
Here is what I currently have:
vb.net
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
[Code]...
I am not sure if I am on the right track or not using "FormClosing" and if they say "no" how do I keep this application open?
View 4 Replies
Oct 12, 2011
I'm looking for some WPF applications specifically designed for touch. Preferably they'd be open source. I don't really care about the apps function, I just want to get some design ideas for a Win7 WPF touch app I'll be writing. I'd like to see what can be done with WPF touch.
View 2 Replies
Mar 2, 2010
I have referenced this thread and the website it points to:pening a file in my application from File ExplorerAs of now, I can't get My.Application.CommandLineArgs to work properly. Any time I select an file to open in my program I get a windows error forcing the program to close. I only want to get the file path from My.Application.CommandLineArgs and pass it to a function that will then parse the file (a text file of various extensions, even if it is not associated with my program) and display the contents in a RichTextBox.My function to open the file is complete and works, but if I try to use My.Application.CommandLineArgs on a file the program crashes immediately.here is the code I'm trying as a test:
Private Sub ParseCommandLineArgs()
If My.Application.CommandLineArgs.Count > 0 Then
MessageBox.Show(My.Application.CommandLineArgs(0))
[code].....
View 1 Replies
Jul 31, 2011
I have a program I made in vb.net express 2008 that used java.utils.zip to compress my work files to a Zip archive that I ran occassionaly to have a backup. I worked fine, but with net framework 4 and vb.net 2010 it doesn't work. So I modified it to use sharpziplib and it works fine if all files on the filter list in the folder are closed, but if I have a file open in OpenOffice writer, my program can't access it and won't create the zip file. The file that usually stays open all the time is my TODO list, that is updated several times a day , so usually gets printed, and updated( adding or deleting entries), without closing it.
[Code]...
View 14 Replies
Apr 5, 2011
had i problem when re-open the program.
all the data that i saved into the database gone when i close and re-open my program.
is this error come from my code or my database...?
this is my work.
Imports System.Data.OleDb
Imports System.Data.Common.DbConnection
Public Class Borang_Pendaftaran
[Code].....
View 2 Replies
Feb 2, 2010
My program has many forms that can be launched from the main form, and when launching a form, I need for my program to know whether or not there is already an existing instance of the requested form open before it launches the requested form.
So, if I have form "Search" with button "View" that launches form "Details", I need to know if the "Details" form is already open when the user clicks the "View" button.
Apparently, if I had developed my application as an MDI application intead of an SDI application, I could just do "If frmDetails.visible = True then DoStuff()", but the Details form's Visible property always comes back as False, even when the form is already open. If the form is always being reported as not being visible even when it is indeed visible, what method do I use instead to find out that the form is open/visible/in use?
View 1 Replies
Jul 5, 2010
Is it possible to develop open source VB.Net/C# application, I have developed many application using .Net, but first time want to develop open source application.
View 7 Replies
May 6, 2009
I have A program which contains a combo box that has a value which is a link to a local file. I want the user to be able to open this file when they click a button.
Previously I have done this in VBA using Application.FollowHyperlink Me.txtAuth. Is there a way to do this in VB.NET?
The target file is a .TIF I've read a bit on using a file browser to complete this but I want it to open the file selected on the form.
View 6 Replies
May 18, 2009
Most of them are for things like this, where I am looping through the open windows in my application and then if I find a certain window I do something to that window:
For Each wnd As Window In Application.Current.Windows
If Found Then
Exit For[code]......
Is that the kind of thing I'm supposed to do to fix all of these type conversion issues or am I going about this the wrong way? Also in situations like that, should I be using DirectCast or CType?
View 9 Replies