Hi, how in visual studio to create app for entering login and password to connect to sql server database ?

  • Thread starter Thread starter pavlob
  • Start date Start date
P

pavlob

Guest
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Login
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}

Continue reading...
 
Back
Top