Forum: Visual Basic 4 / 5 / 6 Feb 24th, 2007 |
| Replies: 8 Views: 5,266 i think the main idea of a registration form is for people to be unable to crack it... that was a good idea tho
another way to do it wuold be to use hkey classes, and write it to a seperate hkey... |
Forum: Visual Basic 4 / 5 / 6 Feb 23rd, 2007 |
| Replies: 0 Views: 654 im not sure, and i dont have msaccess on my computer, dont like the newer versions and the older versions are too hard to find, but i'm pretty sure your able to use a msdb(mdb) file as an ini file,... |
Forum: Visual Basic 4 / 5 / 6 Feb 23rd, 2007 |
| Replies: 3 Views: 1,143 okay thanks, but is that for any script or...? cause im lookin for it to be done in vb6... thanks a whole bunch
wayne |
Forum: Visual Basic 4 / 5 / 6 Feb 23rd, 2007 |
| Replies: 8 Views: 5,266 another way to do it is to put in a whole bunch of if statements /\/\ kinda a bit harder, but not impossible, done it with other apps... try looking on the internet for a password generator, it will... |
Forum: Visual Basic 4 / 5 / 6 Feb 23rd, 2007 |
| Replies: 1 Views: 1,016 hey, yes it is possible to create a new user button in vb, all you have to do is add a button to the form, as a caption put "new user" for the name put "cmdnew", also add another form called... |
Forum: Visual Basic 4 / 5 / 6 Feb 16th, 2007 |
| Replies: 3 Views: 1,143 i already know how to do a login form using a .INI file, but i was wondering if it is possible to make a form that automatically downloads a file from the web on loading, and uses that as a database... |
Forum: Visual Basic 4 / 5 / 6 Feb 16th, 2007 |
| Replies: 5 Views: 4,576 'this is a script i used the other day, it randomizes the backcolor of the form
'code begins
Private Sub Command1_Click()
Text1.Text = Randomize("-1", "256")
Text2.Text = Randomize("-1",... |
Forum: Visual Basic 4 / 5 / 6 Feb 16th, 2007 |
| Replies: 1 Views: 1,966 'i have an idea, you can use it if you want, you dont have to, but 'here it is,
'create a module, doesnt matter what its called and add this code:
'beginning of code
Public Declare Function... |