Results 1 to 14 of 14

Thread: [RESOLVED] Splash Screen "Coding to make it Optional"

Threaded View

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jul 2007
    Posts
    18

    Resolved [RESOLVED] Splash Screen "Coding to make it Optional"

    I'm writing a small program and it uses a Splash screen. This program will be accessible on various PC's. I was attempting to make it optional for users with powerful PC's. The following code is what I have and it yields an runtime error. This option is a ToolStripMenuItem. Is it possible to save this setting?

    VB.NET Code:
    1. If My.Application.SplashScreen.Enabled = True Then
    2.             Me.EnableSpToolStripMenuItem.Checked = False
    3.             My.Application.SplashScreen.Enabled = False
    4.         Else
    5.             Me.EnableSpToolStripMenuItem.Checked = True
    6.             My.Application.SplashScreen.Enabled = True  
    7.         End If
    Last edited by mykewall; Jul 25th, 2007 at 08:56 AM. Reason: Grammar

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width