Click here to Skip to main content
15,914,594 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Tab control event Pin
phil.o25-Feb-18 3:14
professionalphil.o25-Feb-18 3:14 
AnswerRe: Tab control event Pin
Ralf Meier25-Feb-18 22:27
mveRalf Meier25-Feb-18 22:27 
QuestionGetting an "Index was outside the bounds of the array" Error Message Pin
Member 1369355623-Feb-18 12:11
Member 1369355623-Feb-18 12:11 
AnswerRe: Getting an "Index was outside the bounds of the array" Error Message Pin
Richard Deeming23-Feb-18 13:11
mveRichard Deeming23-Feb-18 13:11 
PraiseRe: Getting an "Index was outside the bounds of the array" Error Message Pin
Member 1369355623-Feb-18 14:23
Member 1369355623-Feb-18 14:23 
GeneralRe: Getting an "Index was outside the bounds of the array" Error Message Pin
Richard Deeming26-Feb-18 0:56
mveRichard Deeming26-Feb-18 0:56 
GeneralRe: Getting an "Index was outside the bounds of the array" Error Message Pin
Member 1369355626-Feb-18 5:53
Member 1369355626-Feb-18 5:53 
QuestionOpen a file in a process already running Pin
Member 1361289622-Feb-18 9:36
Member 1361289622-Feb-18 9:36 
I populate a list box with files from a file search. Then I can select a file from the list box and open it with a certain program. If I select a second file from the list box and open it, it starts another instance of the program. These are text files I am opening in a text editor. What I want to do is if the text editor is already running just open the new file in the already opened program. The extensions can be anything so I cannot associate them to this file editor. (too numerous) I know how to find out if the program is running, just not how to add another file to it. Here is code that I have been using to find out if the program is open and if not start the file in the program. This works fine but what I want to do is instead of showing message box if the process is running, is open the file in it without staring another instance of it.

Dim ProcessIsRunning As Boolean = Process.GetProcessesByName("editcnc").Length > 0

If ProcessIsRunning = True Then

MessageBox.Show("EditCNC already Running")

Else

openf = """" & openf & """"
Process.Start(editFile.Text, openf)

End If

modified 22-Feb-18 15:55pm.

AnswerRe: Open a file in a process already running Pin
Dave Kreskowiak22-Feb-18 16:31
mveDave Kreskowiak22-Feb-18 16:31 
GeneralRe: Open a file in a process already running Pin
Member 1361289622-Feb-18 22:33
Member 1361289622-Feb-18 22:33 
GeneralRe: Open a file in a process already running Pin
Dave Kreskowiak23-Feb-18 2:14
mveDave Kreskowiak23-Feb-18 2:14 
SuggestionRe: Open a file in a process already running Pin
Richard Deeming23-Feb-18 0:57
mveRichard Deeming23-Feb-18 0:57 
GeneralRe: Open a file in a process already running Pin
Dave Kreskowiak23-Feb-18 2:15
mveDave Kreskowiak23-Feb-18 2:15 
QuestionIntegrate Excel worksheet in Windows form Pin
Frankie_M22-Feb-18 2:55
Frankie_M22-Feb-18 2:55 
AnswerRe: Integrate Excel worksheet in Windows form Pin
A_Griffin22-Feb-18 3:22
A_Griffin22-Feb-18 3:22 
GeneralRe: Integrate Excel worksheet in Windows form Pin
Frankie_M22-Feb-18 3:48
Frankie_M22-Feb-18 3:48 
AnswerRe: Integrate Excel worksheet in Windows form Pin
Alan Burkhart2-Mar-18 6:39
Alan Burkhart2-Mar-18 6:39 
Questionvb.net : How to open a form full screen Pin
desanti19-Feb-18 14:29
desanti19-Feb-18 14:29 
AnswerRe: vb.net : How to open a form full screen Pin
Eddy Vluggen19-Feb-18 17:15
professionalEddy Vluggen19-Feb-18 17:15 
QuestionBackup and restore sql server databases using SMO - How to make it work for all sql server versions Pin
desanti18-Feb-18 11:04
desanti18-Feb-18 11:04 
AnswerRe: Backup and restore sql server databases using SMO - How to make it work for all sql server versions Pin
Eddy Vluggen18-Feb-18 13:41
professionalEddy Vluggen18-Feb-18 13:41 
GeneralRe: Backup and restore sql server databases using SMO - How to make it work for all sql server versions Pin
desanti18-Feb-18 17:06
desanti18-Feb-18 17:06 
GeneralRe: Backup and restore sql server databases using SMO - How to make it work for all sql server versions Pin
Eddy Vluggen19-Feb-18 1:01
professionalEddy Vluggen19-Feb-18 1:01 
GeneralRe: Backup and restore sql server databases using SMO - How to make it work for all sql server versions Pin
desanti20-Feb-18 13:54
desanti20-Feb-18 13:54 
GeneralRe: Backup and restore sql server databases using SMO - How to make it work for all sql server versions Pin
Eddy Vluggen21-Feb-18 2:05
professionalEddy Vluggen21-Feb-18 2:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.