Click here to Skip to main content
15,910,118 members
Home / Discussions / C#
   

C#

 
AnswerRe: can you solve this? plesa help Pin
Corinna John18-Mar-04 1:33
Corinna John18-Mar-04 1:33 
AnswerRe: can you solve this? plesa help Pin
Heath Stewart18-Mar-04 4:39
protectorHeath Stewart18-Mar-04 4:39 
GeneralForum Board Pin
mil_an17-Mar-04 23:12
mil_an17-Mar-04 23:12 
GeneralRe: Forum Board Pin
John Fisher18-Mar-04 3:50
John Fisher18-Mar-04 3:50 
GeneralRe: Forum Board Pin
Heath Stewart18-Mar-04 4:36
protectorHeath Stewart18-Mar-04 4:36 
GeneralDisabling splash screen Pin
SatyaDY17-Mar-04 22:36
SatyaDY17-Mar-04 22:36 
GeneralRe: Disabling splash screen Pin
Mazdak17-Mar-04 23:03
Mazdak17-Mar-04 23:03 
GeneralRe: Disabling splash screen Pin
Heath Stewart18-Mar-04 4:33
protectorHeath Stewart18-Mar-04 4:33 
Mazdak's pretty much correct, but there are a couple of alternatives. First, you can hide the main window UI (see the ProcessStartnfo for information) while the process is starting and after a reasonable amount of time, re-show it.

One other option is to use Spy++ (comes with the Platform SDK which gets installed by default with Visual Studio) to find out what the window class is, P/Invoke the FindWindow API, and call that with the window class. When you start the process, use FindWindow in a finite loop. When the window is found with that window class, you can call ShowWindow (which you'd also need to P/Invoke) to hide it (passing false as the second param). These are only work-arounds, though. There really isn't a way to tell the application not to display the splash screen unless it exposes a way. It's completely under the absolute control of the application that created it.

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: Disabling splash screen Pin
Jeremy Kimball18-Mar-04 7:36
Jeremy Kimball18-Mar-04 7:36 
Generalchecking the running processes Pin
SatyaDY17-Mar-04 22:34
SatyaDY17-Mar-04 22:34 
GeneralRe: checking the running processes Pin
Mazdak17-Mar-04 22:43
Mazdak17-Mar-04 22:43 
GeneralGrey checkboxes Pin
Krisst K17-Mar-04 21:40
Krisst K17-Mar-04 21:40 
GeneralRe: Grey checkboxes Pin
Heath Stewart18-Mar-04 4:28
protectorHeath Stewart18-Mar-04 4:28 
GeneralUserControl and Listbox's datasource at design time Pin
Mr. Labenche17-Mar-04 21:10
Mr. Labenche17-Mar-04 21:10 
GeneralRe: UserControl and Listbox's datasource at design time Pin
Heath Stewart18-Mar-04 4:22
protectorHeath Stewart18-Mar-04 4:22 
GeneralRe: UserControl and Listbox's datasource at design time Pin
John Fisher18-Mar-04 4:22
John Fisher18-Mar-04 4:22 
Generalgetting data from database and separating them Pin
ASGill17-Mar-04 20:21
ASGill17-Mar-04 20:21 
GeneralRe: getting data from database and separating them Pin
Mazdak17-Mar-04 22:52
Mazdak17-Mar-04 22:52 
GeneralRe: getting data from database and separating them Pin
Heath Stewart18-Mar-04 4:17
protectorHeath Stewart18-Mar-04 4:17 
GeneralWindow UI modification in C# Pin
authenticgeek17-Mar-04 16:51
authenticgeek17-Mar-04 16:51 
GeneralRe: Window UI modification in C# Pin
Dave Kreskowiak17-Mar-04 16:54
mveDave Kreskowiak17-Mar-04 16:54 
GeneralRe: Window UI modification in C# Pin
authenticgeek17-Mar-04 17:07
authenticgeek17-Mar-04 17:07 
GeneralRe: Window UI modification in C# Pin
Dave Kreskowiak18-Mar-04 1:44
mveDave Kreskowiak18-Mar-04 1:44 
GeneralRe: Window UI modification in C# Pin
authenticgeek18-Mar-04 20:48
authenticgeek18-Mar-04 20:48 
GeneralRe: Window UI modification in C# Pin
Dave Kreskowiak19-Mar-04 11:10
mveDave Kreskowiak19-Mar-04 11:10 

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.