Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.3K

4 Posted Topics

Member Avatar for SteveyD

Hmm i not to sure i get what your trying to do... You will Create a new method.You will pass the _Ver to that Method. Inside the method your logic will check the _Ver and call the correct Startup(). But yes you cannot have the same instances of the method …

Member Avatar for thines01
0
97
Member Avatar for Yamadron

OK your car class needs properties.Read/Write.Everytime you make a new car you will add your class in a collection of car classes by means of a List<Car>. Based on the users input you will get the spesific car object from your collection and send it to the second form. Im …

Member Avatar for Fruit Alchemist
0
113
Member Avatar for jineesh

Check if you username and password is correct on the sqlconnection string. Also make sure your sql instance is configured to allow sql server and windows authentication. Check that also in your sqlconnection string.

Member Avatar for Fruit Alchemist
0
128
Member Avatar for deva89

The Code Above seems a bit on the dodge side to be honest. Your adding values directly from the user input to your sqlcmd. Thats a nono. Try the below: [Code=c] private void btnTest_Click(object sender, EventArgs e) { System.Data.SqlClient.SqlConnection cnn = new System.Data.SqlClient.SqlConnection("YourSqlServerConnectionString"); try { System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand(); …

Member Avatar for hericles
0
133

The End.