Hi
ich habe jetzt den code:
Delphi-Quellcode:
function abfrage(const Msg: string; DlgType: TMsgDlgType;
Buttons: TMsgDlgButtons; Captions: array of string): Integer;
var
aMsgDlg: TForm;
i: Integer;
dlgButton: TButton;
CaptionIndex: Integer;
begin
aMsgDlg := CreateMessageDialog(Msg, DlgType, Buttons);
captionIndex := 0;
for i := 0 to aMsgDlg.ComponentCount - 1 do
begin
if (aMsgDlg.Components[i] is TButton) then
begin
dlgButton := TButton(aMsgDlg.Components[i]);
if CaptionIndex > High(Captions) then Break;
dlgButton.Caption := Captions[CaptionIndex];
Inc(CaptionIndex);
end;
end;
Result := aMsgDlg.ShowModal;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
if abfrage('Druckervorschau:' + #10 + 'balbal', mtConfirmation, mbOKCancel,
['Drucken', 'Abrechen']) = mrOk then
ShowMessage('"1" clicked')
else
ShowMessage('"2" clicked');
end;
nur ist da jetzt beim ersten 'popup' fenster links ein fragezeichen, das will ich nicht da haben, wie bekomme ich das weg?
danke,
ferby