Guest User

Untitled

a guest
Mar 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public partial class display_old_request : UserControl
  2. {
  3. public display_old_request(request request)
  4. {
  5. InitializeComponent();
  6. fillData(request);
  7. this.Show();
  8. }
  9.  
  10. void fillData(request request)
  11. {
  12. IList<request> old_request_to_display = request.Get_old_request_information();
  13. dataGridView1.DataSource = old_request_to_display;
  14.  
  15.  
  16. }
  17. }
Add Comment
Please, Sign In to add comment