Click here to Skip to main content
15,888,255 members
Home / Discussions / C#
   

C#

 
QuestionIs it possible to change the image in ContextMenu? Pin
Khoramdin9-Apr-07 15:32
Khoramdin9-Apr-07 15:32 
AnswerRe: Is it possible to change the image in ContextMenu? Pin
Nader Elshehabi9-Apr-07 16:08
Nader Elshehabi9-Apr-07 16:08 
QuestionAny snippet code for calling CoCreateGuid ??? Pin
LongRange.Shooter9-Apr-07 14:07
LongRange.Shooter9-Apr-07 14:07 
AnswerRe: Any snippet code for calling CoCreateGuid ??? Pin
Nader Elshehabi9-Apr-07 14:09
Nader Elshehabi9-Apr-07 14:09 
QuestionByte[] to HexString Pin
AAKAra9-Apr-07 12:52
AAKAra9-Apr-07 12:52 
AnswerRe: Byte[] to HexString Pin
Luc Pattyn9-Apr-07 14:04
sitebuilderLuc Pattyn9-Apr-07 14:04 
GeneralRe: Byte[] to HexString Pin
a_anilkumar110-Apr-07 15:38
a_anilkumar110-Apr-07 15:38 
AnswerRe: Byte[] to HexString Pin
Leslie Sanford9-Apr-07 14:06
Leslie Sanford9-Apr-07 14:06 
The conversion is taking place as it should. Here's where I think you're tripping up:

aGroup[] = {0,1,1,0,0,0,0,0,0,0,1,0,0...}


Do you mean for this array to represent a binary value?

When a value of 0 is converted to hex, it is 0. A value of 1 is converted to 1 in hex. So the results of converting the above byte array to hex is not going to look any different than simply printing out the individual values of the array.

What you probably want to do is pack the binary values into the bytes, then do a conversion to hex.

Also:

aGroup[] = {0,1,1,0,0,0,0,0,0,0,1,0,0...}
hexString = ToString(aGroup);


I'm not sure what you're trying to accomplish here, but doing a ToString on an array is just going to give you something like, "System.Byte[]".
AnswerRe: Byte[] to HexString Pin
stancrm9-Apr-07 22:55
stancrm9-Apr-07 22:55 
AnswerRe: Byte[] to HexString Pin
stancrm10-Apr-07 21:02
stancrm10-Apr-07 21:02 
QuestionStarting a timer after another object's event has been fired. Pin
Ylno9-Apr-07 12:29
Ylno9-Apr-07 12:29 
AnswerRe: Starting a timer after another object's event has been fired. Pin
Leslie Sanford9-Apr-07 13:34
Leslie Sanford9-Apr-07 13:34 
GeneralRe: Starting a timer after another object's event has been fired. Pin
Ylno9-Apr-07 21:13
Ylno9-Apr-07 21:13 
GeneralRe: Starting a timer after another object's event has been fired. Pin
Leslie Sanford10-Apr-07 0:22
Leslie Sanford10-Apr-07 0:22 
QuestionInvalidate() Pin
max292979-Apr-07 11:59
max292979-Apr-07 11:59 
AnswerRe: Invalidate() Pin
Christian Graus9-Apr-07 12:09
protectorChristian Graus9-Apr-07 12:09 
QuestionRe: Invalidate() Pin
max292979-Apr-07 12:37
max292979-Apr-07 12:37 
AnswerRe: Invalidate() Pin
Leslie Sanford9-Apr-07 12:48
Leslie Sanford9-Apr-07 12:48 
QuestionRe: Invalidate() Pin
max292979-Apr-07 12:50
max292979-Apr-07 12:50 
AnswerRe: Invalidate() Pin
Leslie Sanford9-Apr-07 12:57
Leslie Sanford9-Apr-07 12:57 
GeneralRe: Invalidate() Pin
max292979-Apr-07 13:01
max292979-Apr-07 13:01 
AnswerOT: How's it going? Pin
Colin Angus Mackay9-Apr-07 13:20
Colin Angus Mackay9-Apr-07 13:20 
QuestionConvert xml to html files Pin
Amr M. K.9-Apr-07 9:38
Amr M. K.9-Apr-07 9:38 
AnswerRe: Convert xml to html files Pin
Not Active9-Apr-07 10:32
mentorNot Active9-Apr-07 10:32 
AnswerRe: Convert xml to html files Pin
Dmitry Khudorozhkov9-Apr-07 10:32
Dmitry Khudorozhkov9-Apr-07 10:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.