Example #1
0
 private void Prep_Click(object sender, EventArgs e)
 {
     if (CurrentPage == 1)
     {
         customTipDialog.TipMessage = hintFirst;
         customTipDialog.Show();
         return;
     }
     else
     {
         CurrentPage -= 1;
         custQuery();
         CustPagination(CurrentPage, TotalPage);
     }
 }
Example #2
0
 private void Prep_Click(object sender, EventArgs e)
 {
     if (CurrentPage == 1)
     {
         customTipDialog.TipMessage = ResourceCulture.GetString(HINT_FIRST);
         myOpaqueLayer.Show();
         myOpaqueLayer.Tag = customTipDialog;
         customTipDialog.Show();
         return;
     }
     else
     {
         CurrentPage -= 1;
         custQuery();
         CustPagination(CurrentPage, TotalPage);
     }
 }