Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Please this code in vb.net

C#
public Login()
       {
           InitializeComponent();

           InstallationSQLEXPR _ins = new InstallationSQLEXPR("Food", "JOHN",
           "MenuMakanan", "Food", "JOHNKENEDYDAL", "FOOD_RESTORE.BAK");
           if (_ins.IsDone == false) _ins.ShowDialog();
           if (_ins.IsRestart == true)
           {
               Application.Exit();
               this.Close();
               return;
           }
       }
Posted
Updated 27-Feb-13 10:18am
v2
Comments
[no name] 27-Feb-13 16:18pm    
If you cannot do this or use one of the online translators then you need to hire someone to do this for you.

 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 27-Feb-13 17:36pm    
This is a good advice, my 5.
However, there is more to it. In addition to your good advice, I provide more ways, some of which are very robust and do not depend on availability of on-line services. Also, they will work with future versions of these languages.

Please see my answer. I credited your solution, of course.
—SA
Please see my recent answer: FixedPage to ContentPage convert c# code into vb.net[^].

In addition to the good advice of Solution 1, I provide more ways, some of which are very robust and do not depend on availability of on-line services. Also, they will work with future versions of these languages.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900