help with UInt32

  • Thread starter Thread starter shachar
  • Start date Start date
S

shachar

hi all.
i must convert the returning value from the RGB function
to UINT32 type.
how can i do it?
 
Convert.ToUInt32(System.Drawing.Color.Black)


--
OHM ( Terry Burns ) * Use the following to email me *

Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
For i As Int32 = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
Next
Process.Start("mailto:" & New String(ch))
 
shachar said:
i must convert the returning value from the RGB function
to UINT32 type.

How should the data in the 'UInt32' be structured? You can use
'ColorTranslator' to translate the color to a Win32 color or OLE color, for
example.
 

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