Autor Beitrag
rulingorc Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 40



BeitragVerfasst: Mo 04.06.07 23:26 
programm starten=> zeit einstellen=> aufs button klicken um das zu aktivieren aber das button feld kann ich nicht anklicken um das zu aktivieren und dann kann ich jahre warten. wenn ich etwas nicht kapier bitte nicht böse werden... trotzdem schonmal vielen dank dass du trotz der umstände mir geholfen hast.! echt nett
Christian S.
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 20451
Erhaltene Danke: 2264

Win 10
C# (VS 2019)
BeitragVerfasst: Mo 04.06.07 23:28 
Wieso kannst Du das Button-Feld (ich nehme an, Du meinst damit den Button) nicht anklicken? Ist der grau (also nicht aktiv)? :gruebel:

_________________
Zwei Worte werden Dir im Leben viele Türen öffnen - "ziehen" und "drücken".
rulingorc Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 40



BeitragVerfasst: Mo 04.06.07 23:29 
vllt ist ja noch irgendwas falsch.
ausblenden volle Höhe Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ComCtrls, ExtCtrls, StdCtrls;

type
  TForm1 = class(TForm)
    Timer1: TTimer;
    DateTimePicker1: TDateTimePicker;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Timer1Timer(Sender: TObject);
  private
    { Private-Deklarationen }
  public
    { Public-Deklarationen }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Timer1Timer(Sender: TObject);
begin
if now > DateTimePicker1.DateTime then //bin mir nicht sicher ob die entsprechende property .DateTime heisst, musste ma nachgucken
 begin
    TTimer(Sender).Enabled := False;
    beep;
    beep;
    beep;
    Showmessage('AUFSTEHEN!!');
end;

end;

procedure TForm1.Button1Click(Sender: TObject);
begin
Timer1.Enabled:=True;
end;

end.

?
genau er ist grau
rulingorc Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 40



BeitragVerfasst: Mo 04.06.07 23:31 
yeah ich habs xD hatte den wecker aus versehen noch auf false gestellt gehabt jetzt klappts ey echt danke hast mir super geholfen :lol:
Christian S.
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 20451
Erhaltene Danke: 2264

Win 10
C# (VS 2019)
BeitragVerfasst: Mo 04.06.07 23:33 
Dann viel Spaß im Info-Unterricht ;-)

_________________
Zwei Worte werden Dir im Leben viele Türen öffnen - "ziehen" und "drücken".
rulingorc Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 40



BeitragVerfasst: Mo 04.06.07 23:36 
jo danke nochmal werd mich in zukunft auch mehr für delphi interessieren und mehr selber versuchen. cu dann und gn8^^