| | |
How to create forms without title bars
Please support our VB.NET advertiser: Intel Parallel Studio Home
Thread Solved |
go to solution explorer > right click your project > click add (i dont have vb at school so not sure but i think its add or it might be add form) > then double click splash screen.
i dont think that has a title bar or a fram border
if it does, go to properties of form and put the "FormBorderStyle" to "none"
i dont think that has a title bar or a fram border
if it does, go to properties of form and put the "FormBorderStyle" to "none"
Last edited by toko; Sep 16th, 2008 at 12:41 pm.
Use timer to make delay and progress bar.
so, draw a timer and progress bar then add this following code :
so, draw a timer and progress bar then add this following code :
vb Syntax (Toggle Plain Text)
Private Sub WelcomeScreen_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Timer1.Enabled = True End Sub Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick ProgressBar1.Value += 2 If ProgressBar1.Value = 98 Then Dim obj As New Form2 obj.ShowDialog() 'open form2 End If If ProgressBar1.Value = 100 Then Timer1.Dispose() Me.Visible = False End If End Sub
Never tried = Never Know
So, Please do something before post your thread.
* PM Asking will be ignored *
So, Please do something before post your thread.
* PM Asking will be ignored *
Just add that code above and set FormBorderStyle = None on form properties to make form without title bar.
Last edited by Jx_Man; Sep 17th, 2008 at 12:20 pm.
Never tried = Never Know
So, Please do something before post your thread.
* PM Asking will be ignored *
So, Please do something before post your thread.
* PM Asking will be ignored *
You're Welcome...
Don't Forget to mark this thread as Solved
Don't Forget to mark this thread as Solved
Never tried = Never Know
So, Please do something before post your thread.
* PM Asking will be ignored *
So, Please do something before post your thread.
* PM Asking will be ignored *
![]() |
Other Threads in the VB.NET Forum
- Previous Thread: Set COLUMN Borders in a datagrid
- Next Thread: Bindind
| Thread Tools | Search this Thread |
Tag cloud for VB.NET
.net 30minutes 2005 2008 access account application arithmetic array arrays basic binary bing button buttons c# center check checkbox code combobox component connectionstring convert crystalreport data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dropdownlist excel file-dialog folder ftp generatetags google gridview hardcopy image images inline insert intel internet listview mobile monitor ms net networking output passingparameters peertopeervideostreaming picturebox picturebox1 plugin port print printing problem problemwithinstallation project reports" save searchbox searchvb.net select serial server soap sorting table tcp text textbox timer toolbox trim update updown user vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web wpf






