cenyu Active Member Licensed User Longtime User Aug 5, 2018 #1 Hi, i trying to write this code from VB6 to b4a but without success becouse i do not know this ^ on B4A. I receive Errror "input string was not in correct format. iReturn is declared as Long B4X: iReturn = iReturn + (16 ^ i) * (sf.InString(base,iTemp) - 1) Heeeeelp!
Hi, i trying to write this code from VB6 to b4a but without success becouse i do not know this ^ on B4A. I receive Errror "input string was not in correct format. iReturn is declared as Long B4X: iReturn = iReturn + (16 ^ i) * (sf.InString(base,iTemp) - 1) Heeeeelp!
Star-Dust Expert Licensed User Longtime User Aug 5, 2018 #2 B4X: iReturn = iReturn + Power(16 , i) * (sf.InString(base,iTemp) - 1) Last edited: Aug 5, 2018 Upvote 0
BillMeyer Well-Known Member Licensed User Longtime User Aug 5, 2018 #3 I think what you are looking for is this https://www.b4x.com/android/forum/threads/operator-2-n-in-b4a.11926/ Upvote 0
I think what you are looking for is this https://www.b4x.com/android/forum/threads/operator-2-n-in-b4a.11926/
cenyu Active Member Licensed User Longtime User Aug 5, 2018 #4 Thanks for answers friends... Upvote 0