Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Diagnostics;
  11.  
  12. namespace Ease_of_Access
  13. {
  14. public partial class Form1 : Form
  15. {
  16. public Form1()
  17. {
  18. InitializeComponent();
  19. }
  20.  
  21. private void Monitoring_Click(object sender, EventArgs e)
  22. {
  23.  
  24. }
  25.  
  26. private void Fraps_Click(object sender, EventArgs e)
  27. {
  28. ProcessStartInfo startInfo = new ProcessStartInfo();
  29. startInfo.FileName = "fraps.exe";
  30. Process.Start(startInfo);
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement