Results 1 to 11 of 11

Thread: Form loading issue!

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2014
    Posts
    87

    Angry Form loading issue!

    Today I have a problem. When I try to load a form (well a specific form, the others are fine), it has a massive bug where the controls will make a "hole" of transparency and then within about 10 seconds it will just automatically close. As well as that, the cursor switches to the Windows "loading" cursor. I don't know why it does this, I haven't added in any code except the following to make it show at the bottom right of the screen. To do this, I used the following code however I do not think it is related to this issue:

    Code:
    Dim x As Integer
        Dim y As Integer
        x = Screen.PrimaryScreen.WorkingArea.Width - Me.Width - 5
        y = Screen.PrimaryScreen.WorkingArea.Height - Me.Height
        Me.Location = New Point(x, y)
        Me.BringToFront()
    When I set the loading entry form in Visual Studio project settings, it loads perfect without any issues, however whenever I try to show it from code in my application like:

    Code:
    Dim frm1 As New updateNotify 
    frm1.Show()
    It seems not to work and have this bug. It does the same when I just call it as:

    Code:
    updateNotify.Show()
    Last edited by visualBEER310; Sep 20th, 2014 at 08:38 AM.

Tags for this Thread

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