Posted October 11, 200915 yr 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, 200915 yr by david_2000
October 11, 200915 yr I use the following to reverse under c#, there should be something comparable for vb6byte[] data4 = BitConverter.GetBytes(0x004519E0);Array.Reverse(data4);
Create an account or sign in to comment