david_2000 Posted October 11, 2009 Posted October 11, 2009 (edited) hi guysis there any way to reverse number or text in vb6 like this?example:004519E0toE0194500i know StrReverse can do this but it reverses it completely not like i want.thank you Edited October 11, 2009 by david_2000
u-jean Posted October 11, 2009 Posted October 11, 2009 I use the following to reverse under c#, there should be something comparable for vb6byte[] data4 = BitConverter.GetBytes(0x004519E0);Array.Reverse(data4);
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now