J johnpc Member Licensed User Longtime User Feb 23, 2010 #1 See the attached PDF file for usage infomation. Attachments Conversions.zip 300.8 KB · Views: 348 Last edited: Feb 23, 2010
Erel B4X founder Staff member Licensed User Longtime User Feb 23, 2010 #2 Looks very good! I think I found a bug. In the base conversion, if you choose base 1 (which doesn't have any real meaning!) the program enters an endless loop.
Looks very good! I think I found a bug. In the base conversion, if you choose base 1 (which doesn't have any real meaning!) the program enters an endless loop.
J johnpc Member Licensed User Longtime User Mar 2, 2010 #3 Conversions Thanks for pointing this out Erel. The following changes should fix the endless loop problem for base 1 In Sub App_Start Line - 37 change: For i = 1 to 36 to For i = 2 to 36 In Sub ListBase_SelectionChanged (Index, Value) -Line 4386 change: Base = ad + 1 to Base ad + 2 Revised Zip File Attached Last edited: Mar 8, 2010
Conversions Thanks for pointing this out Erel. The following changes should fix the endless loop problem for base 1 In Sub App_Start Line - 37 change: For i = 1 to 36 to For i = 2 to 36 In Sub ListBase_SelectionChanged (Index, Value) -Line 4386 change: Base = ad + 1 to Base ad + 2 Revised Zip File Attached