Skip to content

Make your Delphi & Lazarus application more interactive

Notifications You must be signed in to change notification settings

AuliaFadlani/panel_info

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

dfsdf

Source code file "uPanelInfo.pas" ini bisa dimodifikasi secara bebas sesuai dengan keperluan Anda. Jika terjadi sesuatu dengan project Anda setelah menggunakan file "uPanelInfo.pas" bukanlah tanggung jawab Saya, resiko ditanggung sendiri.

cara membuat panel menjadi segitiga dan ujungnya menjadi bundar Saya lupa darimana sumbernya, rasanya dari swissdelphicenter... Terima kasih buat yang membagi koding tersebut.

how to use:

1. add "uPanelInfo.pas" into your project

2. create a global variable:
   var
     pInfo: TPanelInfo;

3. "create object"
   procedure TForm1.FormCreate(Sender: TObject);
   begin
     pInfo := TPanelInfo.Create(Self);
   end;

4. "show the panel info"
   pInfo.Show(Sender, 'Minimal 3 Karakter', 'BOTTOM', 5)
   or
   pInfo.Show(Edit1, 'The text you want to show', 'TOP', 10)

5. "hide the panel info"
   pInfo.hide;

6. "remove object"
   procedure TForm1.FormDestroy(Sender: TObject; var Action: TCloseAction);
   begin
     pInfo.Destroy;
   end;

video:
  https://www.youtube.com/watch?v=_E-E3rBEetU

About

Make your Delphi & Lazarus application more interactive

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages