Skip to content
Pete edited this page Oct 21, 2019 · 4 revisions

🔙 Home

  • hb_eol() cEndOfLineMarker
    returns the platform/OS specific EOL (end of line marker, char or pair of chars).

  • hb_ExecFromArray( <cFuncName>|<sFuncSymbol>|<bCodeBlock> [, aParams] ) xResult
    returns the result produced by execution of the function specified by cFuncName or sFuncSymbol or the bCodeBlock code-block. The parameter aParams is array with parameters that is passed to and used by the executed function or code-block and must be of correct type and number needed for proper functioning, otherwise RTE occurs.
    e.g. ? hb_execFromArray( "Left", {"Hello world", 5} ) Hello
    also ? hb_execFromArray( @Left(), {"Hello world", 5} ) Hello
    but: ? hb_execFromArray( @Val(), {2} ) RTE (runtime error!) // passed {2} is a wrong type for Val(), had to be {"2"}.
    ℹ️ See a very interesting/useful post about this function here.

  • hb_ExecMsg(<sFuncSym>, <object>, [<params,...>]) xResult
    Executes <sFuncSym> with <object> set as QSELF() value.

  • hb_EndObject() oSelf
    (TODO!)

🔙 Home

Index

Harbour exclusive functions Clipper compatible functions
hb_A A
hb_B B
hb_C C
hb_D D
hb_E E
hb_F F
hb_G G
hb_H H
hb_I I
hb_J_K J K
hb_L L
hb_M M
hb_N_O N O
hb_P P
hb_R Q R
hb_S S
hb_T T
hb_U U
hb_V V W
hb_W X Y

  • Contrib. Libraries
HBWIN WinAPI Library Compress Libraries
HBHPDF Library (Haru) Multi Threading
Harbour Socket API hbCT (Cl*pper tools)
Serial API hbNF (NanForum library)
HBCURL cURL API Library Mini-XML docs

Clone this wiki locally