Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.0K
~673 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
2 Posted Topics
[CODE]procedure TForm1.Button1Click(Sender: TObject); begin Button1.WordWrap:=True; Button1.Caption:='Hello'+sLineBreak+'World'; end;[/CODE]
procedure TForm1.RadioGroup1Click(Sender: TObject); begin if RadioGroup1.Items[RadioGroup1.ItemIndex] = 'Yes' then begin Edit1.Enabled:=false; Edit2.Enabled:=true; end else begin Edit1.Enabled:=true; Edit2.Enabled:=false; end; end;
The End.
DesRodman