splashScreen, .exe and con class
-
Hi every one, I have some questions in c# and i'd appreciate any help with this concern. 1)I can't find the splash screen option in the properties of the project and i could'nt add it from add new item dialog box, so how can i add a splash screen?? 2)I need to have a database (ms access) in my application, how can i create the setup for my application that includes the database and other resources such as some .swf files?? 3) can i convert an image (say .jpeg) to an icon (.ico) using the Icon class?? How?? Thanks in advance to all..
-
Hi every one, I have some questions in c# and i'd appreciate any help with this concern. 1)I can't find the splash screen option in the properties of the project and i could'nt add it from add new item dialog box, so how can i add a splash screen?? 2)I need to have a database (ms access) in my application, how can i create the setup for my application that includes the database and other resources such as some .swf files?? 3) can i convert an image (say .jpeg) to an icon (.ico) using the Icon class?? How?? Thanks in advance to all..
r_jaz wrote:
1)I can't find the splash screen option in the properties of the project and i could'nt add it from add new item dialog box, so how can i add a splash screen??
In C#, you have to create a splash screen out of a form, then call it as the startup form.
r_jaz wrote:
- can i convert an image (say .jpeg) to an icon (.ico) using the Icon class?? How??
Just use a bitmap and save it in an icon format, like so:
Bitmap bmp;
bmp = new Bitmap(@"C:\Image.png");
bmp.Save(@"C:\Icon.ico", System.Drawing.Imaging.ImageFormat.Bmp);
Trinity: Neo... nobody has ever done this before. Neo: That's why it's going to work.
-
Hi every one, I have some questions in c# and i'd appreciate any help with this concern. 1)I can't find the splash screen option in the properties of the project and i could'nt add it from add new item dialog box, so how can i add a splash screen?? 2)I need to have a database (ms access) in my application, how can i create the setup for my application that includes the database and other resources such as some .swf files?? 3) can i convert an image (say .jpeg) to an icon (.ico) using the Icon class?? How?? Thanks in advance to all..