Advertisement
Guest User

Untitled

a guest
Aug 16th, 2016
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2. using System.Windows.Forms;
  3. using System.Collections.Generic;
  4. using System.IO;
  5.  
  6. namespace FinalAssm
  7. {
  8.     internal sealed class Program
  9.     {
  10.         [STAThread]
  11.    
  12.         void Main(string[] args)
  13.         {
  14.             cls_Data.mtd_InsertData();
  15.  
  16.             Application.EnableVisualStyles();
  17.             Application.SetCompatibleTextRenderingDefault(false);
  18.             Application.Run(new MainForm());
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement