Hi..am totally new to vb.net and also designing forms...

1) is there a way you can change the main forms close button image,minimize,maximize

2) Ok I Made An About form..Now How do i link to it from the menu strip

3) i also made a splash but when i load my app, it does not load..

I got several other questions..please support me by chatting wid me..i mean if you prefer helping me a lot by chatting, so here's my email

burhan_fire007@hotmail.com

Thanks..:)

Recommended Answers

All 6 Replies

1. you can hide close, minimize and maximize in form properties.
2. Just Call About form in menu strip click event.
3. Set splash form as Startup object.
Project -> ProjectName Properties
Properties Pages will appear. you can select splash screen as Startup Object

commented: nice +1

Ok I Don't get The 2nd one..Call About From..can you please explain in details

Ok I Don't get The 2nd one..Call About Form..can you please explain in details

What i means in Click Event of strip menu you can call about form.
Ex :

Private Sub MenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem2.Click
    Dim a As New About
    a.Show
End Sub

Hi
Thanks For All your help..i don't want to start another thread for another quest so let me add another one.
when i enable splash on startup of my software..it loads forever..so any code which will set the timer??

And Can I get Your Email Pls..

Member Avatar for iamthwee

Hi
Thanks For All your help..i don't want to start another thread for another quest so let me add another one.
when i enable splash on startup of my software..it loads forever..so any code which will set the timer??

And Can I get Your Email Pls..

Add a new form to your project.

Private Sub Form1_Load(ByVal sender As System.Object, _
                  ByVal e As System.EventArgs) Handles MyBase.Load

        Me.Hide()
        Dim frmSplash As New SplashScreen1
        frmSplash.Show()
        frmSplash.Update()
        System.Threading.Thread.Sleep(3000)
        frmSplash.Close()
        Me.Visible = True
    End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.