Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
splash
- Page 1
Re: Time for some humour before Jan 20
Community Center
Geeks' Lounge
5 Days Ago
by Reverend Jim
… men hear a squeal of brakes followed by a loud
splash
. One man turns to the other and says, "Maybe…
Splash screen in netbeans 6.0
Programming
Software Development
17 Years Ago
by toomuchfreetime
…setMenuBar(mb); mb.add(m1); final SplashScreen
splash
= SplashScreen.getSplashScreen(); if (
splash
== null) { System.out.println("…returned null"); return; } Graphics2D g = (Graphics2D)
splash
.createGraphics(); if (g == null) { System.out.println…
Splash screen with information
Programming
Software Development
9 Years Ago
by sureshk75
…images's width and height. imgW =
splash
.width() imgH =
splash
.height() # Compute positioning for
splash
screen. Xpos = (scrW - imgW) …__window = window self.__canvas = canvas self.__splash =
splash
def __exit__(self, exc_type, exc_val, exc_tb): # Ensure…
Re: Splash screen with information
Programming
Software Development
9 Years Ago
by Gribouillis
…images's width and height. imgW =
splash
.width() imgH =
splash
.height() # Compute positioning for
splash
screen. Xpos = (scrW - imgW)…__window = window self.__canvas = canvas self.__splash =
splash
return self def __exit__(self, exc_type, exc_val, exc_tb…
Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by martin11ph
…main screen: [CODE]Private Sub Form_Load() Call CameraOn()
splash
.show End Sub[/CODE] I plan to have a … code. loadokay is my Boolean trigger for the
splash
to disappear. It is triggered if all preparations …are complete. [CODE]If (main.loadokay=True) Then
splash
.hide main.show End If[/CODE] However, this is…
Re: Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by martin11ph
…=AndreRet;1460297]There is a much easier way. Set your
splash
screen AND Main form properties as such - MaxButton = False… the "x"/close button. This way the
splash
will show and can not be minimised, closed, moved …(Me)[/CODE][/QUOTE] Thanks for the module. Now the
splash
can't be closed. However, the mouse move codes …
Re: Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by jhai_salvador
In the design time, you must make your form
Splash
Border Style property to None so it cant be moved … or minimized. You can also show your
splash
as modal window like this [CODE=vb]
splash
.show vbModal, Me [/CODE] But make… sure you have a timer event make your
splash
form unload automatically, or unload when user click on the…
Splash-screen Problem
Programming
Software Development
14 Years Ago
by nv136
…up to that point). But the problem is after the
Splash
-screen I cannot close form 1, nor can I …is what have. Startup Form: Form1
Splash
-screen:
Splash
-screen1 as soon as I disable the
splash
screen, Form1 can close, minimize …and move, but when i enable the
Splash
-screen it stops working.... any ideas? ( I am using…
Re: Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by martin11ph
… start looking for it. :) About loading the code on the
splash
screen, I was planning on doing it but I don…. If I hide the main form with a
splash
screen, it just clicks the
splash
. [url]http://www.vb6.us/tutorials/move…
Re: Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by abelingaw
Put your code on the login form. Example: [CODE]
Splash
.Show vbModal, Me[/CODE] Then on your
splash
form after the timer control time is over (?), [CODE]Me.Hide[/CODE]
Re: Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by AndreRet
There is a much easier way. Set your
splash
screen AND Main form properties as such - MaxButton = False MinButton = … disable the "x"/close button. This way the
splash
will show and can not be minimised, closed, moved or…
Re: Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by martin11ph
On second thought, vbModal is okay but it interferes with my mouse clicks. The mouse moves and clicks I execute on the main form are not performed because of the
splash
screen.
Re: Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by martin11ph
[QUOTE=AndreRet;1460809]Yes, set both form properties - "KeyPreview to true until all the code ran.[/QUOTE] Hi Andre, Code still does not work after setting keypreview. I see the mouse being moved and clicked on the
splash
form. When it is unloaded, the main form shows that it was not clicked and modified at all.
Re: Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by AndreRet
I helped another member here about 2 weeks ago. See if you can find the post about keydown events on a form. I gave him all the sample code he needed to get the form mouse move events.:) Another question, why don't you just load all the start up code on the
splash
screen and then show the main form?
Re: Splash Screen Is Not Fixed
Programming
Software Development
14 Years Ago
by martin11ph
Hi Andre, I think it is better to show you what I mean. I have uploaded a sample program which depicts the problem. I don't know why the
splash
screen is not on top anymore in this sample program though. In my original program, it is always on top. Hope you understand what I mean. Thanks, Martin
Re: splash screen woes
Programming
Software Development
19 Years Ago
by iamthwee
…quot;); theFrame.setVisible(true); } } class MyFrame extends Frame {
Splash
mySplash; public MyFrame(String title){ super(title); addWindowListener (new …} ); //file needs to be jpeg or png mySplash = new
Splash
(this, "blart.png"); Thread.sleep(2000); // dummy delay…
Re: Splash-screen Problem
Programming
Software Development
14 Years Ago
by Alexpap
In the properties of your VB Project, there's one option called '
Splash
screen'. There you should select your
splash
screen form, and then the
splash
screen functionality will be implemented. :)
splash screen woes
Programming
Software Development
19 Years Ago
by iamthwee
…theFrame.setVisible(true); } } class MyFrame extends Frame {
Splash
mySplash; public MyFrame(String title){ super(title); addWindowListener (new…WindowEvent e) { System.exit(0); } } ); mySplash = new
Splash
(this, "blart.png"); // dummy delay so we can…
Splash screen - Label and Image doesn't load
Programming
Software Development
14 Years Ago
by Duki
…[code=c#] private void main_Form_Load(object sender, EventArgs e) { //Load
Splash
Screen this.Hide(); Form_Splash form_Splash = new Form_Splash(); form_Splash.Owner = this…bar moves fine, but the label and image on the
splash
screen never update. Any ideas why this is happening?…
Re: Splash-screen Problem
Programming
Software Development
14 Years Ago
by Alexpap
Hey there, I just created a sample project with one form and one
splash
screen. It seems to work just fine. I have attached the project in order for you to check it :) Hope it helps you.
Re: splash screen woes
Programming
Software Development
19 Years Ago
by iamthwee
…QUOTE] You need to make sure the path to your
splash
screen image is actually there. For example [CODE] …mySplash = new
Splash
(this, "blart.png");[/CODE] would be changed …to: [CODE]mySplash = new
Splash
(this, "c:\yourpic.png");[/CODE] As long…
Re: splash screen woes
Programming
Software Development
18 Years Ago
by ciprianpascu
…;blart.png"); // dummy delay so we can see the
Splash
! for(int i = 0; i < 50000; i++) { //PROBLEM HERE…
Re: splash screen woes
Programming
Software Development
19 Years Ago
by iamthwee
… file, and the manifest crap. Is that working? And the
splash
screen image I coded using javaOpengl, however, the rendering was…
Re: splash screen woes
Programming
Software Development
19 Years Ago
by server_crash
It worked fine for me. The manifest was good, the
splash
was good, etc... If it's still not working on your friends computer then maybe check what JRE you are running and compare it to what they are running. Maybe try right clicking on the jar file on the other computer and see if it's running it with javaw.
Re: Splash Screens in Python
Programming
Software Development
16 Years Ago
by Ene Uran
…the Tkinter GUI toolkit to bring up a 5 second
splash
screen. All the info you want needs to be…of the popular image editing utilities: [code=python]# create a
splash
screen, 80% of display screen size, centered, # displaying a…*0.8/2, image=image) canvas.pack() # show the
splash
screen for 5000 milliseconds then destroy root.after(5000, root…
Re: Splash Screens in Python
Programming
Software Development
16 Years Ago
by MikeyFTW
…the popular image editing utilities: [code=python]# create a
splash
screen, 80% of display screen size, centered, # …/2, image=image) canvas.pack() # show the
splash
screen for 5000 milliseconds then destroy root.after(5000, … ... print "How did you like my informative
splash
screen?" [/code][/QUOTE] Awesome man! thanks for…
Re: Splash screen - Label and Image doesn't load
Programming
Software Development
14 Years Ago
by kdion1024
I try to keep my
splash
screens on seperate threads for things like this. However you may be able to add an Application.DoEvents(); before your thread.sleep statements to allow all the events / painting to process. Kenny
Re: Splash Screen
Programming
Software Development
18 Years Ago
by cpopham
You will need to use a submain procedure. Create a
splash
screen form and create a timer event. Set the timer …to how long you want the
splash
screen to stay visible. On you submain, set your splashscreen… main form to open second. When the timer close the
splash
screen, the sub main will open your next form. Please…
Re: Splash screen need help
Programming
Software Development
10 Years Ago
by Santanu.Das
…Project Properties window -> Application Tab ->Select **
Splash
** in
Splash
Screen ComboBox. Now open ApplicationEvents.vb Class file by double…Collections.ObjectModel.ReadOnlyCollection(Of String)) As Boolean ' ----- Display the
splash
form for at least 5 seconds. My.Application.MinimumSplashScreenDisplayTime = …
Re: Splash screen need help
Programming
Software Development
10 Years Ago
by OMER AHMED
thanks Minimalist it works but can i increase the time of
splash
like 5 to 6 secnd? becz i have animation
splash
of 5 6 secnd but this option allow
splash
to close aftr 1 2 secnds. can i increase time ?
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC