[Solved] Fetching VB Variables to insert with SQL Query [closed]

To link VB variables to an SQL query, you need to add parameters that store the variables and then use those parameters in your SQL command: Using parameters MyCommand = New SqlCommand(“SELECT Height, Weight, DoB, Gender, FROM `User` WHERE Username = @Username”, DatabaseConnection) MyCommand.Parameters.AddWithValue(“@Username”, Username) UPDATE: How to connect to database ‘Leads to the database … Read more

[Solved] Combining two exe files [closed]

The only good solution is to port the oldest code (2006) to VS2010 (or both project to newer compilers), and compile a new executable from a fresh solution where you combine both projects as you wish. As commented, merging two executables makes little sense in general (what is the entry point ? What about conflicting … Read more