EncyclopediaStartPage1Click method |
Applies to
TForm2
Declaration
procedure EncyclopediaStartPage1Click(Sender: TObject);Implementation
procedure TForm2.EncyclopediaStartPage1Click(Sender: TObject); begin try play_snd(1); self.Notebook1.PageIndex:=0; SetPriorityClass(GetCurrentProcess,high_p); if (Trim(wikipedia_console.LocationURL)='')or(Sender=OHHotLabel3) then wikipedia_console.Go(get_ini_params('wikis','wikipedia.main')); except on E : Exception do _log_entry_error(E.ClassName,E.Message,'A20000'); end;End; |
|