Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. using GUI.Forms;
  2.  
  3. namespace WFComanda
  4. {
  5. static class Program
  6. {
  7.  
  8. /// <summary>
  9. /// The main entry point for the application.
  10. /// </summary>
  11. [STAThread]
  12. static void Main()
  13. {
  14. Application.EnableVisualStyles();
  15. Application.SetCompatibleTextRenderingDefault(false);
  16. Application.Run(new FrLogin());
  17. }
  18. }
  19. }
  20.  
  21. namespace NovoProject
  22. {
  23. public partial class FrLogin : Form
  24. {
  25. public FrLogin()
  26. {
  27. InitializeComponent();
  28. }
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement