Jump to content
Tuts 4 You

is there any way to reverse a text like this in vb6?


david_2000

Recommended Posts

hi guys

is there any way to reverse number or text in vb6 like this?

example:

004519E0

to

E0194500

i know StrReverse can do this but it reverses it completely not like i want.

thank you

Edited by david_2000
Link to comment

I use the following to reverse under c#, there should be something comparable for vb6

byte[] data4 = BitConverter.GetBytes(0x004519E0);

Array.Reverse(data4);

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...