Hi all,
I am currently trying to remove the zeros from a string the code I have tried is as follows but it does not seem to work propperly
Dim code
code=request("code") 'here there is a string like 0000045
' I want to remove the zeros
Dim c1
c1 = CInt(code)
Dim c2
c2 = CChar(c1)
I've thought in the example below but does not show work as expected
Any idea on how normally this is done in Visual basic 6?
Thanks!