First make a copy of your Comctrls.dcu in your Delphi/lib directory.
After copy the ComCtrls.dcu from this Zip into the Delphi/Lib directory.

you must include the wave.res into your application:

p.E.**************
implementation

uses U_Optionen;

{$R *.DFM}
{$R wave.res}
******************

in the Form.Create - methode make the settings:

p.E.************************
procedure TMainForm.FormCreate(Sender: TObject);
begin
     FitForm;
     Toolbutton2.PlayWave := false;
     Toolbutton6.PlayWave := false;
     Toolbutton1.Wave := Wave_3;
     Toolbutton3.Wave := Wave_3;
     Toolbutton4.Wave := Wave_3;
     Toolbutton5.Wave := Wave_3;
     Toolbutton7.Wave := Wave_3;
     workdir := extractFilePath(Application.exename);
     TipsDialog1.Tips.LoadFromFile(workdir + 'Tips.txt');
     TipsDialog1.Execute;
end;
****************************

set PlayWave to true or false
set Wave between Wave_1 and Wave_7 for different wave's

That's it !

(C) 1998 CreativeSoftwareTechnik, R. Vysata
Use this Files on your own risks !!!!!
