-1

Im currently building a software in visual basic using vb.net programming. The software includes a login page. But right now the login username and password is hard coded into the coding. I want it to be so that user can register their own username and password during installation process (during setup.exe). How do I do this?

  • 1
    Instead of during installation, why not during first run? – Hans Kesting Oct 28 '22 at 09:36
  • I apologise for my noobness, but may I ask, what is a first run? – seenchan Oct 28 '22 at 11:46
  • When the user starts your app for the first time (no username/password are registered yet): then ask to register. Else ask to login against stored credentials – Hans Kesting Oct 28 '22 at 12:59
  • Is there any tutorial I can look at online? For example, making one of the form on vb net only appearing once which is during initial setup. I dont see much tutorial on it unfortunately – seenchan Oct 28 '22 at 15:31

1 Answers1

0

You can use WiX Toolset that will allow you to create .wixproj installer project in .net. Then you can also take input during the installation. You can follow this nice article on stackoverflow

n-azad
  • 69
  • 5