Hello.
I've been working on a small personal project involving a login form. I have developed a system allowing me to take advantage of Internet authentication without the use of MySQL and a database, but rather using DropBox (this, of course, has its limits compared to a MySQL database)
[img]http://localhostr.com/files/a0e241/accstatusstring.png[/img]
If you notice the highlighted piece of code, the data contained in [B]AccData(1)[/B] (this is determining the account level, be it standard, administrator and whatnot) is assigned the string [B]AccStatus[/B].
If it helps you understand my splitting, the syntax for the account files in my DropBox is:
[code]password|status|<reason if banned>[/code]
My problem is I can't read this data from another form. Is there anything I have horribly overlooked while attempting to do this? I couldn't dig out anything from Google.
I'm sorry if this in unclear, feel free to spew questions at me for further in-depth understanding.
Thanks for any help.
Use [B]Public[/B] instead of [B]Dim[/B] for AccData at the start. Public allows the variable to be accessed and modified from any form in the project.
That's fantastic. Thanks, man!
No problem :buddy:
Sorry, you need to Log In to post a reply to this thread.