Delphi

This page is dedicated to Delphi.

Welcome to our web page about Delphi, here we will have links to other Delphi www sites and other Delphi related information.


 If you are new to Delphi you will want ideas and help getting started, one way to do this is to go to different Delphi related Internet www sites. Here are some web sites I have found very helpful:
(I will add more links as I come accross them).
Delphi Deli Delphi32 Torrys Delphi Pages Peter Johnstons Homepage Delphi Pro
Delphi Station The Delphi Source The Delphi Exchange The Delphi Games Creator Delphi Goodies
San Diego 
 Delphi Users 
    Group 
Richey's Delphi-Box Dr.Bob's            Delphi              Clinic
 

Here are some helpful hints:

Since you have the ability to make your own DataBases with Delphi you can consider making a Delphi DB of all your Delphi code. I have made such a DB and I also use Delphi Newsgroups, so when I find a piece of information on a Newsgroup I add it to my Delphi DB for later use, this keeps all your important pieces of Delphi code all in the same place and easy to get at. Adding FIND to the Delphi DB helps so you can find a piece of Delphi data fast.

To insert the Date and Time in a Text Editor(Memo):

procedure TNotesForm.Date1Click(Sender: TObject);
begin
  Memo1.SelText := (FormatDateTime('ddd, mmm d, yyyy ', Now));
end;
procedure TNotesForm.Time1Click(Sender: TObject);
begin
  Memo1.SelText := (FormatDateTime('hh:mm AM/PM ', Now));
end;

To make a Panel Visible or Invisible (Toggle Switch):

procedure TNotesForm.ToolButton11Click(Sender: TObject);
begin
  If Panel1.Visible = True then
     Panel1.Visible := False
  else
     Panel1.Visible := True;
end;

To load a Help File:

procedure TNotesForm.Help1Click(Sender: TObject);
begin
  Application.HelpFile := 'Edit.HLP';
  Application.HelpJump('TApplication_HelpJump');
end;

Paste from Clipboard:

procedure TNotesForm.Paste1Click(Sender: TObject);
begin
  Memo1.PasteFromClipboard;
end;

Copy to the Clipboard:

procedure TNotesForm.Copy1Click(Sender: TObject);
begin
  Memo1.CopyToClipboard;
end;
 
 

All of the above Delphi code has been tried in Delphi 3.
If you would like to add some small helpful pieces of Delphi code to this page please feel free to e-mail me and I will add the code with your name.


Download this Digital Clock (Windows 95 and upwards)!

 
 
To DPR Homepage DPR Delphi Programmers' Ring
Prev DPR Home Next
List Random Chat
This DPR site owned by James Sandbrook.
DPR Buttons were designed with actual Delphi components.


To go to Tracys Web Page, Please "click Here"
To go to Rachels Web Page, Please "click Here"
To go back to Sandbrooks Web Page, Please "click Here"
 
 

This page hosted by Get your own Free Home Page