Hi!!!

I have a "main" form named MuShop and I have another form called Entrada (The SplashScreen form) in this form i've a progressbar.
In MuShop Load event i'v this lines of code
VB Code:
  1. Me.Hide()
  2. Entrada.ApplicationTitle.Text = My.Application.Info.Title
  3. Entrada.Version.Text = System.String.Format(Entrada.Version.Text, My.Application.Info.Version.Major, My.Application.Info.Version.Minor)
  4. Entrada.Copyright.Text = My.Application.Info.Copyright
  5. Entrada.Show()
  6. ByItem_()
  7. Search_()
  8. Entrada.Close()
  9. Me.Show()
In ByItem and in Search subs i'v loops and other code that increase the progressbar value(from Entrada).

With this code the the progressbar reachs the value 100 but the textboxs are not showned correcty they stay like "invisible" (i can beyond the form). So i tried a diffenrent code:
VB Code:
  1. Me.Hide()
  2. Entrada.ApplicationTitle.Text = My.Application.Info.Title
  3. Entrada.Version.Text = System.String.Format(Entrada.Version.Text, My.Application.Info.Version.Major, My.Application.Info.Version.Minor)
  4. Entrada.Copyright.Text = My.Application.Info.Copyright
  5. Entrada.ShowDialog()
  6. Me.Dispose()
  7. ByItem_()
  8. Search_()
  9. Entrada.Close()
  10. Me.Show()
With this code the textboxes stay fine but the progressbar stays like inactive as it wans't get orders althougth they are there.

So anyone know a way to solve this?