FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour how to enhance AT() to 3rd.Parameter Position ?
Posts: 1772
Joined: Thu Sep 05, 2019 05:32 AM
how to enhance AT() to 3rd.Parameter Position ?
Posted: Wed Nov 26, 2025 02:43 PM

hi,
in Xbase++ Function AT() have 3 Parameter

Syntax 

At( <cSubString>, <cString>, [<nStartPos>] ) --> nPosition

under harbour it have only 2 Parameter. how to enhance harbour Function with 3rd Parameter ?

greeting,

Jimmy
Posts: 1772
Joined: Thu Sep 05, 2019 05:32 AM
Re: how to enhance AT() to 3rd.Parameter Position ?
Posted: Wed Nov 26, 2025 03:46 PM

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 ?

greeting,

Jimmy
Posts: 137
Joined: Mon Oct 22, 2012 04:43 PM
Re: how to enhance AT() to 3rd.Parameter Position ?
Posted: Wed Nov 26, 2025 04:23 PM
#require "hbwin"

FUNCTION Main()
   LOCAL cUUID
   

   cUUID := win_UuidCreateString()
   ? "UUID:", cUUID
   

   // Alternative: als Binär-Array
   // cUUID := win_UuidCreate()
   

RETURN NIL
Regards



Ing. Anton Lerchster
Posts: 1772
Joined: Thu Sep 05, 2019 05:32 AM
Re: how to enhance AT() to 3rd.Parameter Position ?
Posted: Wed Nov 26, 2025 09:10 PM

hi,

thx for help.
it seems to work, no unknown any more :)

Jimmy

greeting,

Jimmy

Continue the discussion