Ok I own a website and Justhost.com told me this when I asked them (I after i tried figuring this out for hours... I'll add). Dear XXXXX,
I am very sorry, but we are unable to advise you on your request as we can only
provide technical support on our direct services such as cPanel, emails, FTP
MySQL connections and a lot of other administrative tasks. Please, turn to web
developers regarding this matter.
Thank you.
(Why did I pay them 4 years of money in advance again? Um, anyways on to my question)
How do I add a progress bar to my website? I already created one with Windows Visual Basic and it works I just dont know were to upload it to or whatever. I assume I have to go in the File manager but theres a million files there...... I feel very lost.
My website is
www.myexuse.com if you go to the music selection you'll see that its loading buffering in the backround but its hardly noticable at all it looks like its doing nothing for a full 60 seconds before it loads the page.
Heres the code if it helps:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
ProgressBar1.Increment(1)
If ProgressBar1.Value = ProgressBar1.Maximum Then
Button2.Enabled = True
End If
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
MsgBox("Be Sure To Download Our ToolBar", MsgBoxStyle.Exclamation)
End Sub
End Class