Search found 15 matches: obrwmenu

Return to advanced search

Re: Tree xBrowse Menu

oBrwMENU:oFont := ARIAL14B

Hello Christiano,
can you please explain the logic how you handle FONTs.
ARIAL14B
Do you use DEFINE or how do you do.


Thanks in advance
Otto
by Otto
Thu Feb 22, 2018 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tree xBrowse Menu (ONE MORE)
Replies: 12
Views: 2459

Re: Evitar puntero XBrowse se mueva al dar enter. (RESUELTO)

... los datos, pero como dije: incomodo y anti-estetico. Aquí está como lo solucioné: :bKeyDown := {|nKey| if( nKey == VK_RETURN, ( PostMessage( oBrwMenu:hWnd, WM_KEYDOWN, VK_LEFT ), MiCalculad(x,x) ),) } La Function MiCalculad(x,x) es un dialogo calculadora para digitar cantidad del producto. ...
by ACC69
Thu Mar 03, 2016 9:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Evitar puntero XBrowse se mueva al dar enter. (RESUELTO)
Replies: 9
Views: 1174

Re: Evitar puntero XBrowse se mueva al dar enter. (RESUELTO)

... los datos, pero como dije: incomodo y anti-estetico. Aquí está como lo solucioné: :bKeyDown := {|nKey| if( nKey == VK_RETURN, ( PostMessage( oBrwMenu:hWnd, WM_KEYDOWN, VK_LEFT ), MiCalculad(x,x) ),) } La Function MiCalculad(x,x) es un dialogo calculadora para digitar cantidad del producto. ...
by FranciscoA
Tue Jan 19, 2016 10:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Evitar puntero XBrowse se mueva al dar enter. (RESUELTO)
Replies: 9
Views: 1174

Re: Evitar puntero XBrowse se mueva al dar enter. (RESUELTO)

Despues de "dar mas vueltas que un trompo". PostMessage( oBrwMenu:hWnd, WM_KEYDOWN, VK_LEFT ) Saludos. Hola buenos dias Ing. Francisco, eso igual andaba buscando y lei tu post, pero al parecer a mi no me funciona , le doy enter y me mueve el puntero ...
by ACC69
Tue Jan 19, 2016 3:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Evitar puntero XBrowse se mueva al dar enter. (RESUELTO)
Replies: 9
Views: 1174

Re: Evitar puntero XBrowse se mueva al dar enter. (RESUELTO)

Despues de "dar mas vueltas que un trompo".

PostMessage( oBrwMenu:hWnd, WM_KEYDOWN, VK_LEFT )

Saludos.
by FranciscoA
Sun Jan 17, 2016 6:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Evitar puntero XBrowse se mueva al dar enter. (RESUELTO)
Replies: 9
Views: 1174

Re: xBrowse colour

Dear Mr.Uwe,

Thank you for the Function XBRW_BRUSH(oBrwMenu, 2)

I tried it. As you said, alternative colours (Pyjama Effect) is not possible when BRUSH is used as background. So sad :(

Regards

Anser
by anserkk
Sat Feb 07, 2009 4:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse colour
Replies: 6
Views: 955

... I was moving in the wrong direction. For the code to work successfully, I had to eliminate the following lines (GET), Detlef you are right. oBrwMenu:aCols[2]:nEditType := EDIT_GET oBrwMenu:aCols[2]:bEditvalue := { || space(0) } Detlef, ...
by anserkk
Mon Dec 22, 2008 5:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disable mouse double click event on xBrowse ? (Solved)
Replies: 25
Views: 4607

disculpa que me he demorado en responder... estube fuera del aire por asuntos personales elimina esta linea oBrwMenu:aCols[2]:bEditvalue := { || space(0) } ya esta no la necesitas oBrwMenu:bLDblClick:={|nRow, nCol| if(nCol == 2, .F., ),MsgInfo("Test"),oBrwMenu:Refresh(),.T.} ...
by Daniel Garcia-Gil
Sat Dec 20, 2008 2:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Deshabilitar doble clic del mouse incluso en la columna Xbrw
Replies: 2
Views: 1381

Problem solved!
I changed my xBrowse.ch and the problem with the syntax erro was solved, but now I have this error:
Array acess in this line: oBrwMenu:aCols[1]:nWidth:=350

I think that is something with my version of fivewin.
by sambomb
Thu Dec 18, 2008 4:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disable mouse double click event on xBrowse ? (Solved)
Replies: 25
Views: 4607

Disable mouse double click event on xBrowse ? (Solved)

Hi, How do I disable a mouse double click event on xBrowse ? How do I trap a mouse double click event on xBrowse ? oBrwMenu:bLClicked is used for left click, what could be the equivalent for Mouse left button double click I want to ignore Mouse Double clicks on a particular column ...
by anserkk
Wed Dec 17, 2008 8:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disable mouse double click event on xBrowse ? (Solved)
Replies: 25
Views: 4607

Is there any way to contol the active column to be always 2 ie oBrwMenu:nColSel should be always 2 I solved active column issue by changing the the bKeyDown to make Column 2 as Selected column before the PostMessage oBrwMenu:bKeyDown= {|nKey| oBrwMenu:nColSel:=2 ...
by anserkk
Wed Dec 17, 2008 7:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse SetCheck,Bitmap Column and bEditValue
Replies: 13
Views: 2717

... is not the 2nd column then the Dialog itself is getting closed. I think it is because of the PostMessage 27. So I changed your sample code to oBrwMenu:bKeyDown= {|nKey| if(oBrwMenu:nColSel == 2,if ( nKey == VK_RETURN, PostMessage( oBrwMenu:hWnd, WM_KEYDOWN, 27 ...
by anserkk
Wed Dec 17, 2008 6:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse SetCheck,Bitmap Column and bEditValue
Replies: 13
Views: 2717

Hi Daniel, Thankyou for the support. oBrwMenu:aArrayData did the trick oBrwMenu:nWidth should be set manually for oBrwMenu:aCols[ 2 ]:bStrData:={||NIL} to work properly otherwise it will give an error Len(0). oBrwMenu:aCols[ 2 ]:nWidth:=100 ...
by anserkk
Tue Dec 16, 2008 4:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and Array Refresh
Replies: 2
Views: 719

... return aMenu oBrwUsers:bChange:={ || nUserId:=oUsers:oRecSet:Fields("User_Id"):Value,; oBrwMenu:aArrayData :=GetUserMenu(oUserMenu,oMenuArray,nUserId,aMenu),; oBrwMenu:Refresh(),; oDlg:UpDate() } ...
by Daniel Garcia-Gil
Mon Dec 15, 2008 1:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and Array Refresh
Replies: 2
Views: 719

xBrowse and Array Refresh

Dear Freinds, In my app I am using a dialog with 2 xBrowse's on it. xBrowse 1 (oBrwUsers) will display the user's list xBrowse 2 (oBrwMenu) will display the Menu's available to the user Wne the user moves thru the xBrowse 1, xBrowse 2 should update/refresh the menu's available to the user ...
by anserkk
Mon Dec 15, 2008 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and Array Refresh
Replies: 2
Views: 719

Return to advanced search