S superbabicka Member Licensed User Mar 31, 2008 #1 Hi to all. I have one simple question. How can I make loading page before open application using Basic4PPC. Time while opening on my application is 6-7 seconds, and I want to create loading page with Logo image (.gif, or .jpg) before application show Form1. Can I do this with Basic4PPC..? Thanks!
Hi to all. I have one simple question. How can I make loading page before open application using Basic4PPC. Time while opening on my application is 6-7 seconds, and I want to create loading page with Logo image (.gif, or .jpg) before application show Form1. Can I do this with Basic4PPC..? Thanks!
S superbabicka Member Licensed User Mar 31, 2008 #2 No idea for this question??? No one have no idea how to do this? Thanks!
Erel B4X founder Staff member Licensed User Longtime User Mar 31, 2008 #3 You can show a form at the beginning of sub App_Start followed by DoEvents. B4X: Sub App_Start frmSplash.Show DoEvents ... frmMain.Show End Sub Sub frmMain_Close AppClose End Sub
You can show a form at the beginning of sub App_Start followed by DoEvents. B4X: Sub App_Start frmSplash.Show DoEvents ... frmMain.Show End Sub Sub frmMain_Close AppClose End Sub
S superbabicka Member Licensed User Mar 31, 2008 #4 Hi Erel. Sorry for my impatience. Thank you for your quickly answer again. Regard