May 23, 2005 #1 MarkLaz Technical User Joined May 20, 2005 Messages 12 Location GB Hello again everyone, I need to write a hex value (0xA0A0) to a variable (int I suppose) but I'm not quite sure how to accomplish this. Does anyone have a suggestion? Thanks Mark
Hello again everyone, I need to write a hex value (0xA0A0) to a variable (int I suppose) but I'm not quite sure how to accomplish this. Does anyone have a suggestion? Thanks Mark
May 23, 2005 1 #2 xwb Programmer Joined Jul 11, 2002 Messages 6,828 Location GB Code: int variable; variable = 0xA0A0; Upvote 0 Downvote