Search found 415 matches: omenu

Return to advanced search

Marco,

Por favor prueba este cambio y dime si ya se ve bien (aunque estará en una posición distinta en la pantalla):

ACTIVATE POPUP oMenu AT 10 , 0 OF oBtn:oWnd:oWnd
by Antonio Linares
Wed Jan 18, 2006 8:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Menu.... ha habilitado....
Replies: 24
Views: 7470

problemas con el refresh del menu

... tengo el detalle que debo modificar el menu durante la ejecucion, pero al refrescar el menu, no lo hace sera que estoy haciendo algo mal..? oWnd:oMenu:refresh() mientras que la opcion de disable si funciona oWnd:oMenu:disable() Saludos a todos.
by DiGregorio
Fri Jan 06, 2006 7:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problemas con el refresh del menu
Replies: 1
Views: 753

scrolling

... Main() DEFINE WINDOW oWnd from 1,1 TO 30,60 TITLE "Kontoauszug"; VSCROLL; MENU bldMenu() ACTIVATE WINDOW oWnd return nil function bldMenu() LOCAL oMenu set exclusive off MENU oMenu MENUITEM "Start" ; ACTION f_code() ENDMENU return oMenu func f_code LOCAL nRow1 := 0 local hVert := 25 local planfont ...
by Otto
Tue Dec 20, 2005 8:13 pm
 
Forum: FiveWin for CA-Clipper
Topic: scrolling
Replies: 7
Views: 2241

... WINDOW oWnd MAXIMIZED return nil //----------------------------------------------------------------------------// function BuildMenu() LOCAL oMenu LOCAL lSalida Public ALFA :="ABCDEFGHIJKLMNOPQRSTUVWXYZ" Public LLAVE:=.F. MENU oMenu MENUITEM "&Tablas" MENU MENUITEM "&Mantención Alimentos" ...
by lafug
Mon Dec 12, 2005 5:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: de FW CLIPPER A FWH ..TENGO ALGUNAS DIFICULTADES FAVOR AYU..
Replies: 7
Views: 2315

Screen coordinates

... "fivewin.ch" #include "outlook.ch" #include "splitter.Ch" static lBar := .t. FUNCTION Main() local oWnd, oOut, oSpl, oFont, oFont2, oBar, oBtn, oMenu , ; oIcon , ; oLbx , ; nScrnW := GetSysMetrics(0) , ; nScrnH := GetSysMetrics(1) , ; cSearch := "" , ; cSearchK := SPACE(40) , ; aSearch := {} ...
by cdmmaui
Sat Dec 03, 2005 10:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Screen coordinates
Replies: 1
Views: 1050

Try to change oWnd be Static instead of local

Static oWnd

Function Main()


return

function BuildMenu

local oMenu

MENU oMenu

Regards,
Dutch
MENUITEM "&File"
MENU
MENUITEM "Exit" ACTION oWnd:End()
ENDMENU

ENDMENU

return oMenu
by dutch
Mon Nov 21, 2005 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to provide Exit option in Menu class ?
Replies: 4
Views: 1763

... Menu Program" ; MENU BuildMenu(oWnd) ; BRUSH oBrush ; ICON oIcon MDI ACTIVATE WINDOW oWnd MAXIMIZED return nil function BuildMenu (oWnd) local oMenu MENU oMenu MENUITEM "&File" MENU MENUITEM "Exit" ACTION oWnd:End() ENDMENU ENDMENU return oMenu --------------------------Paste----------------------------
by Milan Mehta
Mon Nov 21, 2005 5:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to provide Exit option in Menu class ?
Replies: 4
Views: 1763

... ICON oIcon RESOURCE "PETROSUR" //"SANTAC" oTray := TaskAddIcon( oWnd, oIcon, "Programa Actualizador MYSQL" ) Return NIL Function RMenu(r,c) Local oMenu MENU oMenu POPUP MENUITEM "Abrir Programa Actualizador MYSQL" ACTION ( oWnd:Show() ) MENUITEM "Cerrar Programa Actualizador MYSQL" ACTION ( oWnd:end() ...
by DanielPuente
Mon Oct 31, 2005 2:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tray System
Replies: 5
Views: 2071

Problem with application terminating

... case it helps. // PROGRAM: cargo.prg //----------------------------------------------------------------------------- #include "fivewin.ch" static oMenu REQUEST DBFCDX REQUEST DBFFPT REQUEST _ADS function Main() PUBLIC cEol := CHR(13)+CHR(10) , ; Pdebug := .F. , ; oWnd[25] , ; PA[25] , ; cSay := ...
by cdmmaui
Fri Oct 28, 2005 10:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with application terminating
Replies: 1
Views: 1926

Re: Dudas sobre Toolbar

... del botón * por el ancho: LOCAL nTop := GetClientRect( ::oToolbar:hwnd )[3] LOCAL nLeft := ::oToolBar:nBtnWidth * (nButton-1) .... ACTIVATE MENU oMenu AT nTop - 8, nLeft - 5 OF ::oToolbar Y me funciona correctamente Saludos
by tsales
Sat Oct 22, 2005 6:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dudas sobre Toolbar
Replies: 12
Views: 3874
Previous

Return to advanced search