Hello, i've been clicked around on your forum and found incredible works from people allover the world, incredible.. I hope you can help me with my project..

I have created a just a simple "Create" form, that creates .txt files into the right folder where i want it, then my question is.. how can i make a login form for it?

And my second question, How can i get it to get "public" so people can
connect to the same server, is it Winsock i'll be using or Mysql??
I just want a simple login system to my program.
So the easiest way will be the best in this case.
Hope you can give me a answer, thanks..
here's the code i use.
------------------------------------------------
Private Sub Command1_Click()
If Len(Dir$(App.Path & Text1.Text & ".txt")) = False Then


Open App.Path & Text1.Text & ".txt" For Output As #1


Print #1, Text1.Text
Print #1, Text2.Text
Print #1, Text3.Text
Print #1, Text4.Text
Close #1



Let Text1.Text = ""
Let Text2.Text = ""
Let Text3.Text = ""
Let Text3.Text = ""
Call MsgBox("text " & Text1.Text & " text ")

Else

Call MsgBox("text " & Text1.Text & " text ")



Call MsgBox(" text , " & Text3.Text & " text")
Exit Sub

End If

End Sub
------------------------------------------------------