Well, the GetSaveInfo is a binary string that is not supposed to
be readable by anything except the RB internal framework. If you
really want to see its contents, your best bet would be to
convert each character of the string into hexadecimal and load
the hex into an edit field. But is that really what you are
trying to do, or are you looking for something like the
AbsolutePath of the folderitem?
Mark Nutter
I need to save my FolderItem in my REALSQL file, the way I can do that is
with the getsaveinfo function. After that I convert this string in hex
and I put into the REALSQL file.
When I try to convert the hex information in the File to string and later
to a folderitem with getrelative function, this folderitem is nil
My problem is that the first binary is distinct to the second one, I don't
know why, I use this code for convert the hex data in a string
Dim i, j As Integer
Dim Text As String
Dim TextConvert As string
j = Len(Hexadecimal)
For i = 1 To j Step 2
Text = Mid(Hexadecimal,i,2)
TextConvert = TextConvert + ChrB(Val("&h" + Text))
Next
Return TextConvert
I don't know if my code doesn't work for binary or another thing....
Any suggestion for my problem...?
Atte. Ing. José Andrés Morey
-------------------------------------------
[EMAIL PROTECTED]
[EMAIL PROTECTED]
www.auyantepui.com
_______________________________________________
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>