Search found 51 matches: nosysmenu

Return to advanced search

cerrar ejectutable solamente con salir

Estimados tengo el siguiente tema, que tal vez sea una pavada, pero no he logrado solucionarlo en mi programada defino DEFINE WINDOW oWnd NOSYSMENU TITLE "Sistema Generico " MENU BuildMenu() >>> >>> ACTIVATE WINDOW oWnd MAXIMIZED VALID MsgYesNo("Seguro de Salir ...
by postinelli
Wed Sep 20, 2023 6:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: cerrar ejectutable solamente con salir
Replies: 7
Views: 417

Re: Como desabilitar el aspa de Windows

... init de ambos pero solo desabilita la ventana principal.. Necesito deshabilitarlo para que me permita ver el icono y el título en la barra, ya que NoSysmenu solo oculta el botón Gracias.. :mrgreen:
by cuatecatl82
Sat Jan 25, 2020 4:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como desabilitar el aspa de Windows
Replies: 7
Views: 1298

Re: Error 1064 xBrowse MySQL (solved)

... oDba:Query(cSql) If oPac == Nil Return(Nil) EndIf Define Window oPacWnd Title "Pacotes" MDIChild Of oWnd From 0,0 To MaxRow(),MaxCol() NoSysMenu Define ButtonBar oPacBar Top Size 60,60 2007 3D Of oPacWnd Define Button Of oPacBar NoBorder Resource "ref32" Prompt "Atualizar" ...
by ip_ram
Thu Aug 09, 2018 3:35 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error 1064 xBrowse MySQL
Replies: 8
Views: 1314

Re: We will contact you about MdiChild.

... The point of the question is When setting a window box to no style If the dialog with child is resized, there is no glitter. However, if you use NOSYSMENU or STYLE nOr (WS_CAPTION, WS_BORDER, WS_CLIPCHILDREN, WS_VISIBLE) The first time the window box is loaded and resized, the screen flickers. ...
by kkwan
Tue May 15, 2018 6:26 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: We will contact you about MdiChild.
Replies: 3
Views: 1270

We will contact you about MdiChild.

... window event does not work.              BResize, bPainted, etc.            Define WinDow :: SubWin1 title "test" mdichild of oxwnd NOSYSMENU            This window works normally.            Both older and older versions worked             Is it changed or is it a bug?
by kkwan
Tue May 08, 2018 12:13 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: We will contact you about MdiChild.
Replies: 3
Views: 1270

Re: Bug in mdichild menu

Undestood. But with NOSYSMENU we don't have the three button on the right (minimize, restore and close) anymore. :-(

EMG
by Enrico Maria Giordano
Mon Jun 05, 2017 2:51 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in mdichild menu [Fixed]
Replies: 15
Views: 5054

Re: Bug in mdichild menu

... accelerator table has not been modified), so it appears when you press ALT + 1, the SYSMENU and not the action of item & 1 If you add clausule NOSYSMENU, run OK
by cnavarro
Mon Jun 05, 2017 2:41 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in mdichild menu [Fixed]
Replies: 15
Views: 5054

Re: Bug in mdichild menu

... ACTION MSGINFO( "3" ) ENDMENU DEFINE WINDOW oWnd MDICHILD OF oMdi; TITLE "MDI Child Test"; MENU oMenu NOSYSMENU ACTIVATE WINDOW oWnd; VALID !GETKEYSTATE( VK_ESCAPE ); MAXIMIZED RETURN NIL
by cnavarro
Mon Jun 05, 2017 1:03 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in mdichild menu [Fixed]
Replies: 15
Views: 5054

Re: Errors on 2005 Menu

Yes, it is one old bug previous change styles

Please, look

viewtopic.php?f=18&t=31865#p186096

or add clausule NOSYSMENU
by cnavarro
Mon May 09, 2016 9:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Errors on 2005 Menu
Replies: 6
Views: 1077

Re: uan con GET ... VALID

... 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() ...
by gautxori
Thu Apr 07, 2016 6:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: uan con GET ... VALID
Replies: 9
Views: 2070

Al salir NO CIERRA 3 Dialogos NOWAIT de una Ventana

... 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 ...
by gautxori
Thu Mar 31, 2016 6:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema / Bug TWINDOW y controles
Replies: 12
Views: 2180

Re: Make a dialog never lost focus

... 6 #Define SW_RESTORE 9 /*******************************/ function Main() /* */ define window ownd from 10, 10 to 20, 30 ; nozoom ; noiconize ; nosysmenu ; no caption ; border none title 'Focus Test Application ' @ 3, 5 BUTTON oButton[1] prompt "&Ok" SIZE 40, 20 ACTION MsgInfo( ...
by MGA
Wed Aug 20, 2014 8:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Make a dialog never lost focus
Replies: 16
Views: 3072

Re: DEFINE WINDOW MDI with NOSYSMENU?

Dutch,

Once you create your MDICHILD window, do this:

#define GWL_STYLE -16

SetWindowLong( oWndChild:hWnd, GWL_STYLE, nXor( GetWindowLong( oWndChild:hWnd, GWL_STYLE ), WS_SYSMENU ) )
by Antonio Linares
Tue Jul 02, 2013 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DEFINE WINDOW MDI with NOSYSMENU?
Replies: 1
Views: 554

DEFINE WINDOW MDI with NOSYSMENU?

I would like to create MDICHILD belong to Main WINDOW with NOSYSMENU (as Metro). The MDI command is not support with NOSYSMENU or METRO?

Has the way to do it?

Thanks in advance for any advise.
by dutch
Tue Jul 02, 2013 9:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DEFINE WINDOW MDI with NOSYSMENU?
Replies: 1
Views: 554

Height of Window / Dialog different using same vars ?

... WINDOW oWnd1 FROM nDlgTop, nDlgLeft TO nDlgHeight, nDlgWidth PIXEL ; COLOR CLR_BLACK, CLR_BLUE ; TITLE "Dialog Gradient-sections" ; NOSYSMENU DEFINE DIALOG oGDialog FROM nDlgTop, nDlgLeft TO nDlgHeight, nDlgWidth OF oWnd PIXEL ; TITLE "Dialog GRADIENT" http://www.pflegeplus.com/picturs/wmddlg.jpg ...
by ukoenig
Thu May 02, 2013 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Height of Window / Dialog different using same vars ?
Replies: 2
Views: 615
Next

Return to advanced search