On Sep 22, 2006, at 4:35 PM, Charles E. Heizer wrote:

Sorry for the lame question, how do I convert the decimal to a string for integer format (e.g. 775)

if you have the octal (ie/ 775) in a string variable (say O) try

   dim i as integer = val("&o" + O)

if you have the integer (i) and need the octal

 Dim OctVersion As String
 OctVersion=Oct (5) //returns "5"
 OctVersion=Oct(75)   //returns "113"
 OctVersion=Oct(256)  //returns "400"



_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to