Skip to content

Commit d4841f7

Browse files
committed
Minimum window size much smaller now
1 parent a294eef commit d4841f7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DataDigger.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ DataDigger version 25
5353
- Change: Better naming for connecting db with a name that already is connected
5454
- Change: Save-as Excel file now uses .xlsx format instead of .xls
5555
- Change: Removed unused tracking of DD functions
56+
- Change: Minimum window size much smaller now
5657

5758
- New : Option to change window title via myDataDigger.p (Johan Geerts)
5859
- New : Generate dump/load: toggle for selected fields only (Dirk Vreken)

wDataDigger.w

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5566,7 +5566,7 @@ PROCEDURE connectDatabase :
55665566
cProgDir = getProgramDir().
55675567

55685568
cDatabasesOld = getDatabaseList().
5569-
RUN value(cProgDir + 'wConnections.w') (INPUT 'CONNECT', INPUT pcDatabase, OUTPUT cError).
5569+
RUN VALUE(cProgDir + 'wConnections.w') (INPUT 'CONNECT', INPUT pcDatabase, OUTPUT cError).
55705570
IF cError <> '' THEN
55715571
MESSAGE cError VIEW-AS ALERT-BOX INFORMATION BUTTONS OK.
55725572

@@ -9112,8 +9112,8 @@ PROCEDURE initializeVisuals :
91129112
btnMoveBottom:MOVE-TO-TOP().
91139113

91149114
/* Set minimum size of the window */
9115-
C-Win:MIN-WIDTH-PIXELS = 650.
9116-
C-Win:MIN-HEIGHT-PIXELS = 460.
9115+
C-Win:MIN-WIDTH-PIXELS = 200.
9116+
C-Win:MIN-HEIGHT-PIXELS = 330.
91179117

91189118
/* To avoid scrollbars on the frame */
91199119
FRAME {&FRAME-NAME}:SCROLLABLE = FALSE.
@@ -13073,7 +13073,6 @@ FUNCTION createMenuItem RETURNS HANDLE
1307313073

1307413074
END CASE.
1307513075

13076-
1307713076
RETURN hMenuItem.
1307813077

1307913078
END FUNCTION. /* createMenuItem */

wDataDigger.wrx

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)