-
Notifications
You must be signed in to change notification settings - Fork 1
/
About_Events.prg
39 lines (22 loc) · 965 Bytes
/
About_Events.prg
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
29
30
31
32
33
34
35
36
37
38
39
*-----------------------------------------------------------------------------*
PROCEDURE About_btn_OK()
*-----------------------------------------------------------------------------*
#IFDEF __SQLITE__
DataBaseSqliteViewData( nPage )
#ELSE
ViewData( nPage )
#ENDIF
aFrm := CTK_Release( aFrm )
ThisWindow.Release
RETURN
*-----------------------------------------------------------------------------*
*-----------------------------------------------------------------------------*
PROCEDURE About_OnGotFocus()
*-----------------------------------------------------------------------------*
CenterModalWindow( "win_About" )
AutoAdjustControls( "win_About" )
CTK_DrawBorder( "win_About" )
RETURN
*-----------------------------------------------------------------------------*
*-----------------------------------------------------------------------------*
*-----------------------------------------------------------------------------*