views:

59

answers:

2

Hey guys,

I have here a simple question for those expertise out there (but please explain well, I'm very new). I made a visual basic 2008 application that allows you to login from a database. I followed this video:

http://www.youtube.com/watch?v=p0dcPiLYrck

But the problem is that I have to keep debugging my app if I make a new user. Is their a way where I can upload my information through the internet and the application can pick it up from there? Also in my bin/release folder I get 2 sql files, how would I get rid of these but still be able to connect?

Thanks,

Kevin

A: 

I asked myself the same thing. Unfortunately, i don't believe that is easy to make a thing like this, especially for a newbie like me XD But maybe you can ask directly to the autor of the video, he of course know very well the databases of Visualbasic. Bye!

Francesco
A: 

I'm not sure if you're talking about a desktop application or a web application here. But to answer the question about making a new user, if you go by the video (which is desktop development) you will need to make a new form that will insert a username and password into the database. You don't always need to have the application running in debug mode. You can find the file folder that this application was created in and find the .exe that was created and execute the application from that.

I'm not sure what you'r talking about with the SQL files. If they have the extension of .mdb and mdf, then yes you will need those files because that is your physical database.

For more information about desktop development you can check out Microsoft's Beginer Devloper Learning Center. At that website you should be able to find all kinds of tutorials, walk throughs and examples of how to create desktop applications much like you saw in the youtube video.

Good luck and hope this helps.

Chris