I am getting an error in my delphi code when using shellexecute to call an external progrem
procedure TReceiverMainForm.btnSearchClick(Sender: TObject);
var
args:string;
begin
mmoResult.Clear;
// args := ' /d=' + TIdURI.URLEncode(Trim(sSearch)) + ' /t=ReceiverMainForm /s=30 /m=1'
args := ' /q=' + httpencode(Trim(txtSearch.Text)) + ' /t=ReceiverMainForm /s='+Trim(txtS.Text)+' /m='+Trim(txtM.Text);
ShellExecute(Handle, 'open', 'YTD.exe', pWideChar(args), nil, SW_SHOWNORMAL);
end;
how do i reslve this error?
ShellExecuteWinstead. – Andriy M Sep 22 '12 at 23:12args's type. Even if it worked, there would be no point in using the Unicode version instead of the ANSI one, as the original string wasn't a Unicode one. – Andriy M Sep 23 '12 at 18:58