Ejemplo n.º 1
0
 internal static void SetRowValue(ref DataGridViewRow row, WUCollums wuCollum, Object obj)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Value = obj;
     }
     catch { }
 }
Ejemplo n.º 2
0
 internal static void SetRowStyleForeColor(ref DataGridViewRow row, WUCollums wuCollum, Color color)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Style.ForeColor = color;
     }
     catch { }
 }
Ejemplo n.º 3
0
 internal static void SetRowStyleFont(ref DataGridViewRow row, WUCollums wuCollum, Font font)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Style.Font = font;
     }
     catch { }
 }
Ejemplo n.º 4
0
 internal static void SetRowValue(ref DataGridViewRow row, WUCollums wuCollum, Object obj)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Value = obj;
     }
     catch { }
 }
Ejemplo n.º 5
0
 internal static void SetRowStyleForeColor(ref DataGridViewRow row, WUCollums wuCollum, Color color)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Style.ForeColor = color;
     }
     catch { }
 }
Ejemplo n.º 6
0
 internal static void SetRowStyleFont(ref DataGridViewRow row, WUCollums wuCollum, Font font)
 {
     try
     {
         row.Cells[wuCollum.ToString()].Style.Font = font;
     }
     catch { }
 }
Ejemplo n.º 7
0
 internal static Object GetRowValue(ref DataGridViewRow row, WUCollums wuCollum)
 {
     try
     {
         return(row.Cells[wuCollum.ToString()].Value);
     }
     catch
     {
         return("row not found");
     }
 }