-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit3.cpp
28 lines (24 loc) · 894 Bytes
/
Unit3.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit3.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm3 *Form3;
//---------------------------------------------------------------------------
__fastcall TForm3::TForm3(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm3::Button2Click(TObject *Sender)
{
ShellExecute(0, "open", "ios_mojeflagi.exe", "", "flagi", SW_SHOWNORMAL);
}
//---------------------------------------------------------------------------
void __fastcall TForm3::ZamknijClick(TObject *Sender)
{
Form3->Close();
}
//---------------------------------------------------------------------------