I have a weird error, when I get a string table entry it works fine.
When I try to something like this...
It only shows the string table entry, not the concatenated string.
Anyone ever see this before?
------------------
George W. Bleck
Senior System Engineer
KeySpan Corporation
When I try to something like this...
Code:
MSGBOX GetStringTable(%someid) & "some other data"
Anyone ever see this before?
Code:
'The GetStringTable function I use... FUNCTION GetStringTable( lngStringID AS LONG ) AS STRING LOCAL strBuffer AS STRING strBuffer = STRING$( 1024, 0 ) LoadString ghInst, lngStringID, BYVAL STRPTR( strBuffer ), LEN( strBuffer ) FUNCTION = strBuffer END FUNCTION
------------------
George W. Bleck
Senior System Engineer
KeySpan Corporation
Comment