Re: Embedding to a webpage
You can use the registry:
VB Code:
Option Explicit
Private Sub Form_Initialize()
'change 0 if you want another default value
Label1.Caption = GetSetting(App.Title, "Settings", "Highscore", 0)
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
SaveSetting App.Title, "Settings", "Highscore", Label1.Caption
End Sub
Re: Embedding to a webpage
Thanks, but i can't test it. I had my thing working before but now I can't get to it from the webpage again. Any help on getting a program on a webpage?