Color

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If vb.net is asking me to enter 'Color as system.UInt32' , what's the value of Black??

THANX IN ADVACE
 
* "=?Utf-8?B?V2lsbA==?= said:
If vb.net is asking me to enter 'Color as system.UInt32' , what's the
value of Black???

Where does it ask you this question?!
 
Grid.CellBorder Color As System.UInt32, Left As Integer, Top As Integer, Right As Integer, Bottom As Integer, Vertical As Integer, Horizontal As Intege
 
i think you need the RGB(red as Integer, green as Integer, blue as Integer)
method
so black is RGB(0,0,0) which will give 0 as result :-)
 
it's just asking for the returned RGB(r,g,b) value.. which is a UINT32 data
type returned
 
what's the type of the Grid object?

anyway, this may work - UInt32.Parse(cstr(Color.Black.ToArgb))

Alex
 
Back
Top