Quote:
Originally Posted by audiofeel
please make examples of "SysFunc.iss". especially interested in "function BrowseDirModern".
|
SysFuncDLL Fix + BrowseDirModern Example
Quote:
Originally Posted by audiofeel
why does the "FDirBrowse" already have a path "C:\Program Files (x86)" and can't apply {code:nosd} ?
|
oops. check this out.
FMXInnoDLL v1.0.0.1 + Fix (Lib Only)
Code:
[Setup]
...
DefaultDirName ={code:DefMyPath}\Inno Example with FMXInno Library
...
{Code]
...
function DefMyPath(Param: String): String;
begin
Result:= ExpandConstant('{win}');
end;
...
procedure FMXDesigning;
begin
...
{ Dir Browse Dlg }
DirBrowseDlg.FCreate(0, 'Select Install Directory', WizardForm.DirEdit.Text);
...
end;