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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top