hi,
in Xbase++ Function AT() have 3 Parameter
Syntax
At( <cSubString>, <cString>, [<nStartPos>] ) --> nPositionunder harbour it have only 2 Parameter. how to enhance harbour Function with 3rd Parameter ?
greeting,
Jimmy
Jimmy
hi,
in Xbase++ Function AT() have 3 Parameter
Syntax
At( <cSubString>, <cString>, [<nStartPos>] ) --> nPositionunder harbour it have only 2 Parameter. how to enhance harbour Function with 3rd Parameter ?
hi,
found it it is called HB_AT() under harbour ...
now next : where do i find UUIDCREATE() under harbour ? how is it called under harbour ? in which LIB ?
#require "hbwin"
FUNCTION Main()
LOCAL cUUID
cUUID := win_UuidCreateString()
? "UUID:", cUUID
// Alternative: als Binär-Array
// cUUID := win_UuidCreate()
RETURN NILhi,
thx for help.
it seems to work, no unknown any more :)
Jimmy