So leute ich hab heut delphi7 bekommen und gleich tüchtig angefangen zu proggen und stoße auch gleich auf ein prob......
ich wollt son nen prog machen bei dem der user nur titel und text eingeben muss dann nen paar radio-buttons drücken und schon erscheint ne messagebox...
^^und ich scheitere schon an ner beta versions des progs
hier habt ihr erstmal das script damit ihr mir sagen könnt was ich falsch mache:
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, XPMan, Comobj;
type
TForm1 =
class(TForm)
Titelmess: TEdit;
Textmess: TMemo;
Go: TButton;
XPManifest1: TXPManifest;
procedure GoClick(Sender: TObject);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.GoClick(Sender: TObject);
var titel: shortstring;
var text: ansistring;
begin
titel := titelmess.text;
text := textmess.text;
Application.MessageBox('
'+ text + '
', '
' + titel + '
')
end;
end.
^^kan mir da einer helfen??