Last change
on this file was 123, checked in by chronos, 3 years ago |
- Added: QR code image visible in contact others tab. It can be saved as image to file.
|
File size:
413 bytes
|
Line | |
---|
1 | program LazBarcodeDemo;
|
---|
2 |
|
---|
3 | {$mode objfpc}{$H+}
|
---|
4 |
|
---|
5 | uses
|
---|
6 | {$IFDEF UNIX}
|
---|
7 | cthreads,
|
---|
8 | {$ENDIF}
|
---|
9 | {$IFDEF HASAMIGA}
|
---|
10 | athreads,
|
---|
11 | {$ENDIF}
|
---|
12 | Interfaces, // this includes the LCL widgetset
|
---|
13 | Forms, main
|
---|
14 | { you can add units after this };
|
---|
15 |
|
---|
16 | {$R *.res}
|
---|
17 |
|
---|
18 | begin
|
---|
19 | RequireDerivedFormResource:=True;
|
---|
20 | Application.Scaled:=True;
|
---|
21 | Application.Initialize;
|
---|
22 | Application.CreateForm(TMainForm, MainForm);
|
---|
23 | Application.Run;
|
---|
24 | end.
|
---|
25 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.