Is it possible to export (programatically) an entry in the registry?
Thanks,
Jeff Barnes
(FWH 16.11, xHarbour 1.2.3, Bcc730)
Jeff Barnes
(FWH 16.11, xHarbour 1.2.3, Bcc730)
Is it possible to export (programatically) an entry in the registry?
Jeff,
Yes, it is. Do you mean to review all the subentries of an entry ? Or just an entry value ?
Hi Antonio,
I'm looking for the sub-entries of an entry ![]()
#include "FiveWin.ch"
function Main()
local cEntries := StrTran( GetProfString( "Devices" ), Chr( 0 ), CRLF )
local n
for n = 1 to MlCount( cEntries )
MsgInfo( GetProfString( "Devices", MemoLine( cEntries,, n ) ),;
MemoLine( cEntries,, n ) )
next
return nil