Registriert seit: 17. Mai 2004
Ort: Kenn
574 Beiträge
Turbo Delphi für Win32
|
Inputbox
5. Nov 2005, 15:23
Hi Leute,
das steht in der Hilfe:
Zitat:
Unit
Dialogs oder QDialogs
Kategorie
Dialogfelder und Meldungen
Delphi-Syntax:
function InputBox(const ACaption, APrompt, ADefault: string): string;
function InputBox(const ACaption, APrompt, ADefault: WideString ): WideString; overload;
function InputBox(const ACaption, APrompt: WideString ; ADefault: Double; Min: Double = Low(Integer); Max: Double = High(Integer); Decimals: Integer = 1): Double; overload;
function InputBox(const ACaption, APrompt: WideString; ADefault: Integer; Min: Integer = Low(Integer); Max: Integer = High(Integer); Increment: Integer = 1): Integer; overload;
Wieso kann ich diesen Aufruf dann nicht machen?
i:=inputbox('hi','gib zahl ein',10,0,1000,1);
Alexander Roth Ich bin umgestiegen auf: Lazarus und Ubuntu! Alles OpenSource!
Besuch doch mal: www.roth.us.ms
|
|
|