Click here to Skip to main content
15,896,118 members
Home / Discussions / Visual Basic
   

Visual Basic

 
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 
AnswerRe: Open a file in a process already running Pin
Dave Kreskowiak22-Feb-18 16:31
mveDave Kreskowiak22-Feb-18 16:31 
You have a problem. Not every application can handle opening another document while it's already running, like Notepad can't do that.

Not every application exposes any kind of interface to be able to programatically support opening multiple documents. Word, Excel, and most other Office apps, supports doing this as they expose COM interfaces to be able to communicate with them. Most applications don't support this. You'd also have to write code specifically against every application you'd want to support. There is no such thing as a "one interface works with all" here.

Some applications may support opening other documents through command line arguments. Launch another copy of the application and it will automatically talk to the already running copy to tell it to open the new document. Not every application supports this and, again, there is no "one command line works for all apps" here either.

There is no way to support every app generically. The only workable solution you have is to simple launch the document you're trying to open. The application associated with that file extension will open the document however it is supported, either by launching another copy of the application or by telling the the already running copy of the app to open it.

YOU WILL HAVE NO CONTROL OVER HOW THIS PROCESS WORKS, NOR CAN YOU GET CONTROL OVER IT!


modified 23-Feb-18 8:04am.

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 
QuestionVB.net , SQL server , Entity framework : Have a foreign key 'refer' to a primary key in the same table?" Pin
desanti17-Feb-18 9:05
desanti17-Feb-18 9: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.