Hi

I have a BIG problem....
I'm working on an hex edit project,
So, the problem is that I have the adress of the value that
I want to modifie...this value is an Unsigned Long, when I store the value in a Long type variable
it give me a Signed Long, but me I want a Unsigned Long!!
So, in what type of variable I have to store it to have the correct value of an unsigned long?

Understood?
no?..
hum...

look at this ;

Hex value = C7 CB4A DB
When I store this in a Long..
ea : Dim MyVariable as Long
MyVariable=&HC7CB4ADB
Text1.Text = MyVariable

In the screen, in my text box I see '-615855161', and this value is the Signed Long of the hex value

Me I need to see the Unsigned Long of the hex value that is '3679112135'

So, if you understand something and how to resolve this, please help........