Page 1 of 1

Changing the Splash Screen

Posted: Fri May 31, 2013 8:21 am
by don
I'm trying to change the splash screen of open dental without changing any code. Any ideas on how can this be done?

Re: Changing the Splash Screen

Posted: Fri May 31, 2013 9:11 am
by jsalmon
You're in luck, we just implemented this in the head very recently. Just have your image in the installation path of Open Dental saved as "Splash.jpg".
Here is the code from FormSplash.cs:

Code: Select all

if(File.Exists(Directory.GetCurrentDirectory()+@"\Splash.jpg")) {
	BackgroundImage=new Bitmap(Directory.GetCurrentDirectory()+@"\Splash.jpg");
}

Re: Changing the Splash Screen

Posted: Fri May 31, 2013 9:21 am
by don
Cool! Is this available in the source code version 12.4?

Re: Changing the Splash Screen

Posted: Fri May 31, 2013 2:18 pm
by jsalmon
No, just v13.2 (the head).

Re: Changing the Splash Screen

Posted: Sat Jun 01, 2013 9:08 pm
by don
Thanks!