Hallo,
ist es möglich eine variabel HostName in einem String einzugeben
zb.
Code:
'you must disconnect' + HostName + 'Do you want to disconnect now?'
Nun sieht in meine Prozedure bis jetzt so aus:
Code:
procedure TMainForm.Warning1;
begin
if (Application.MessageBox(
'You must disconnect before opening another connection.' + #10 + #13 +
'Do you want to disconnect?',
'Access2All',
MB_YESNO + MB_DEFBUTTON1 + MB_ICONEXCLAMATION) = ID_YES) then
begin
Disconnect1Click(self);
Connect1click(self);
end;
end;
könnt ihr mir vieleicht zeigen wie man sowas macht?
danke schonmal für eure antworten,
Peter Kiers