Please post any comments.
All programs are complete and work
Other links I use for my job
Enjoy
Printable View
Please post any comments.
All programs are complete and work
Other links I use for my job
Enjoy
...and where exactly are the programs ?
In your sig ?
Perhaps you should copy your sig and post those links in the first post with little descriptions. :)
Game2 is an example for Drag Drop images from one location to another.
To understand how to click/drag/drop...I made a game.
I wrote this for extra credit in my first VB6 Class.
Also, this has lots of comments.
Code:' Saving data to the Registry
'
Private Sub Form_Load()
Label1.Caption = "Registry: Save to, Load from Registry"
Command1.Caption = "Save"
Command2.Caption = "Load"
End Sub
Private Sub Command1_Click()
' Save to Registry
' VB and VBA Program Settings
Call SaveSetting("Demo2007", "values", "text1", Text1.Text)
End Sub
Private Sub Command2_Click()
' Loading, retrieving data from "VB and VBA program Settings"
Text2.Text = GetSetting("Demo2007", "values", "text1", "2007-1")
' if the value at "Demo2007" sub "values" sub "text1"
' Text2.Text equals the default value of "2007-1"
End Sub
When posting Code, Use tags.. [code ] *Your Code* [/code ]
When resolved, mark as resolved
"Thread Tools > Resolved"
I posted a 'backupdisk' program...any comments will be appreciated.