Search found 18 matches: nominimize

Searched query: nominimize

by Jimmy
Sat Nov 05, 2022 9:04 am
Forum: FiveWin for Harbour/xHarbour
Topic: NOSIZE / NORESIZE
Replies: 2
Views: 179

NOSIZE / NORESIZE

hi,

i have use NOMAXIMIZE, NOMINIMIZE so only "X" Buuton is left
but you can "resize" Form as there is no Keyword NOSIZE / NORESIZE under Fivewin :(

---

i try to use
oASKFORM:bResized := { |nType, nWidth, nHeight| oASKFORM:SetSize(nWidth, nHeight) }
which was not the Solution :(

i have to use ...
by gautxori
Thu Apr 07, 2016 6:05 pm
Forum: FiveWin para Harbour/xHarbour
Topic: uan con GET ... VALID
Replies: 9
Views: 2360

Re: uan con GET ... VALID

... DEFINE Window oWndIva From 0,0 to MaxRow(),MaxCol();
ICON oIconAbm;
COLOR "N/W+";
TITLE OemToAnsi("Apuntes con Iva");
BORDER NONE NOSYSMENU NOMINIMIZE NOMAXIMIZE
Barra()
Cfactura()
Dfactura()
Barra2()
Linea()
Lineas()
DbSelectArea("civa")
oDCObra:Enable()
oBtnRas:SetFocus()
DEFINE ...
by gautxori
Thu Mar 31, 2016 6:17 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Problema / Bug TWINDOW y controles
Replies: 12
Views: 2621

Al salir NO CIERRA 3 Dialogos NOWAIT de una Ventana

... oWndCon OF oWnd From 0,0 to MaxRow(),MaxCol();
ICON oIconAbm;
COLOR "N/W+";
TITLE OemToAnsi("Fichero De Conceptos");
BORDER NONE NOSYSMENU NOMINIMIZE NOMAXIMIZE
SET MESSAGE OF oWndCon TO "" KEYBOARD DATE CENTERED
Barra() // Dialog 1
Codigo() // Dialog 2
Datos() // Dialog 3
oDDAbmCon ...
by postinelli
Mon Sep 10, 2012 5:31 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Ventana que no permita cambiar de tamaño
Replies: 6
Views: 1641

Re: Ventana que no permita cambiar de tamaño

DEFINE WINDOW <oWnd> NOMINIMIZE, NO MAXIMIZE TITLE "Window 1"


Creating a new Window:

DEFINE WINDOW <oWnd> ;

[ FROM <nTop>, <nLeft> TO <nBottom>, <nRight> ] ;
[ TITLE <cTitle> ] ;
[ <color: COLOR, COLORS> <nClrFore> [,<nClrBack>] ];
[ OF <oParent> ] ;
[ BRUSH <oBrush> ] ;
[ CURSOR <oCursor ...
by mosh1
Tue Jun 26, 2012 10:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TIMER on Dialog
Replies: 14
Views: 4345

Re: TIMER on Dialog

... for data from barcode scanner.

One more question : when i open MDI Child

DEFINE WINDOW oWndChild MDICHILD OF oWnd ;
FROM 5,5 TO 6,6;
COLOR "N/W" ;
TITLE " New Sale " ;
border none nomaximize nominimize

oWnd is in static it creates new instance but not the timer ? (Timer created ON INIT of Dialog)
by Rick Lipkin
Sun Jul 17, 2011 4:23 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse errors using ADO and column READ
Replies: 8
Views: 2732

Re: Xbrowse errors using ADO and column READ

... DEFINE WINDOW oUser ;
FROM 2,2 to 25,65 ;
of oWndMDI ;
TITLE "USERINFO Administrative Browse" ;
MENU BuildMenu(oRsUser) ;
ICON oICO ;
NOMINIMIZE ;
NOZOOM ;
MDICHILD

@ 0, 0 xBROWSE oBrow of oUser ;
RECORDSET oRsUser ;
COLUMNS "USERID", ;
"WRITE", ;
"MGR", ;
"SUPER", ;
"lastlog ...
by EASYSOFT
Wed Aug 25, 2010 7:41 pm
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse tree ayuda (SOLUCIONADO)
Replies: 1
Views: 1477

xbrowse tree ayuda (SOLUCIONADO)

... DEFINE WINDOW oChild TITLE "Consulta de Cheques Posfechados" MDICHILD ;
FROM 0,0 TO 850,1250; //690,1025
COLOR "N/W" PIXEL ;
border none nominimize nomaximize //prevent resizing nominimize

DEFINE DIALOG oDlg RESOURCE "d_consulta_cheques1" of oChild


REDEFINE DTPICKER cfecini ID 101 OF oDlg ...
by anserkk
Wed Feb 03, 2010 5:15 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to identify WindowState
Replies: 11
Views: 3008

Re: How to identify WindowState

Dear Mr.Rao,

It is true that we can disable maximize or minimize buttons by simply using clauses NOMAXIMIZE, NOMINIMIZE, etc. while creating the window. But still the user can resize the window by dragging the right bottom corner of the window.

aMinMaxInfo gives us the full control on resizing ...
by anserkk
Wed Feb 03, 2010 5:12 am
Forum: FiveWin for Harbour/xHarbour
Topic: how to disable minimize and maximize buttons on main window
Replies: 9
Views: 3842

Re: how to disable minimize and maximize buttons on main window

Dear Mr.Rao,

Your Quote
It is true that we can disable maximize or minimize buttons by simply using clauses NOMAXIMIZE, NOMINIMIZE, etc. while creating the window. But still the user can resize the window by dragging the right bottom corner of the window.

aMinMaxInfo gives us the full control on ...
by nageswaragunupudi
Tue Feb 02, 2010 1:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to disable minimize and maximize buttons on main window
Replies: 9
Views: 3842

Re: how to disable minimize and maximize buttons on main window

Where is the need to adopt such complex approach? Cant we simply disable these buttons while creating the window ( normal, MDI, MDICHILD ) by using the syntax already provided by FWH?

CREATE WINDOW ....... NOMINIMIZE NOMAXIMIZE

This does the job. Or am I missing something?
by nageswaragunupudi
Tue Feb 02, 2010 1:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to identify WindowState
Replies: 11
Views: 3008

Re: How to identify WindowState

... window using the Windows Style.

Regards
Anser
It is true that we can disable maximize or minimize buttons by simply using clauses NOMAXIMIZE, NOMINIMIZE, etc. while creating the window. But still the user can resize the window by dragging the right bottom corner of the window.

aMinMaxInfo gives ...
by James Bott
Tue Aug 26, 2008 1:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Disable Windows Resizable?
Replies: 3
Views: 700

define window oWnd mdichild of wndMain();
title "Audit Trail" nominimize nosysmenu

activate window oWnd maximized
by fergonm
Mon Apr 21, 2008 3:07 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Busqueda en TSBrowse
Replies: 7
Views: 1793

... 0
nOldSal := 0
aStates := {}

DEFINE BITMAP oBmp RESOURCE "Head"

If nSample == 7
DEFINE WINDOW aWChild[ nSample ] OF oWnd BORDER NONE NOMINIMIZE NOMAXIMIZE ;
TITLE "Sample " + LTrim( Str( nSample ) ) BRUSH aBrush[ 8 ] ;
FROM 0,0 TO oWnd:nBottom, oWnd:nRight PIXEL ;
ICON oIco ;
MDICHILD ...
by Rick Lipkin
Wed Nov 21, 2007 12:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: Question about SQL
Replies: 52
Views: 13294

... CleanUp()
RETURN(.F.)
ENDIF
oRs:MoveFirst()
DEFINE WINDOW oGRP ;
FROM 2,2 to 30,70 ;
of oWndMDI ;
TITLE cTITLE ;
MENU BuildMenu( oRs ) ;
NOMINIMIZE ;
NOZOOM ;
MDICHILD
@ 0, 0 LISTBOX oBrow FIELDS ;
oRs:Fields("CODE"):Value, ;
oRs:Fields("DESC"):Value, ;
oRs:Fields("progid"):Value ...
by Rick Lipkin
Thu Jun 21, 2007 1:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADO update visability between workstations
Replies: 18
Views: 5765

... eof
oRs:MoveFirst()
ENDIF

DEFINE WINDOW oUser ;
FROM 2,2 to 25,65 ;
of oWndMDI ;
TITLE "USERINFO Records Browse" ;
MENU BuildMenu(oRs) ;
NOMINIMIZE ;
NOZOOM ;
MDICHILD

@ 0, 0 LISTBOX oBrow FIELDS ;
oRs:Fields("USERID"):Value, ;
oRs:Fields("READ"):Value, ;
oRs:Fields("WRITE"):Value ...