Search found 2881 matches: left

Return to advanced search

Re: right-clicking on the TMenuItem

I didn't understand. How can I use SwapMouseButton(1 ) ? Any click (both right and left) on the TMenuItem object causes the selection of a menu option. I need to make this choice only on the left click. And use the right click for other purposes.
by Natter
Thu Nov 21, 2024 1:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: right-clicking on the TMenuItem
Replies: 9
Views: 258

Subclass Xbrowse with method GoLeft() and GoRight()

... ::Super:GoLeft()  I was wondering .... If I wanted to add a method MyLeft() + MyRight() and I want this method to go left, but do nothing else, no checking, reading etc.. can that be done ? If I try i'm using return ::Super:GoLeft() as return, but then Xbrowse off ...
by Marc Venken
Wed Nov 20, 2024 7:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Subclass Xbrowse with method GoLeft() and GoRight()
Replies: 0
Views: 72

Re: cloud or not cloud

... “soft transition,” and then guess what? They move everything to another development language. They switch the client to something else, and we’re left out in the cold. It’s a disaster waiting to happen. And it gets worse—other developers with finished solutions can swoop in and replace you at ...
by Otto
Fri Nov 15, 2024 7:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cloud or not cloud
Replies: 34
Views: 1120

Re: xbrowse(autosort) + tdolphin - erro

Param 1: C "SELECT * FROM nfsaida AS nf LEFT JOIN pedidos AS p ON (nf.chave=p.chave) LEFT JOIN clientes AS c ON (nf.cliente = c.codigo) WHERE IF(nf.filialfiscal!=0,nf.filialfiscal,nf.filial) = 1 AND nf.emissao BETWEEN '2024-11-01' AND '2024-11-30' ...
by cmsoft
Fri Nov 15, 2024 2:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 198

Re: xbrowse(autosort) + tdolphin - erro

... O Class: ERROR TDOLPHINSRV:SQLQUERY Local 1: N 1052 Local 2: U Local 3: L .F. TDOLPHINQRY:LOADQUERY Param 1: C "SELECT * FROM nfsaida AS nf LEFT JOIN pedidos AS p ON (nf.chave=p.chave) LEFT JOIN clientes AS c ON (nf.cliente = c.codigo) WHERE IF(nf.filialfiscal!=0,nf.filialfiscal,nf.filial) ...
by MGA
Thu Nov 14, 2024 6:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 198

Re: xbrowse(autosort) + tdolphin - erro

... 'miclave' ; PORT 3306 ; FLAGS 0; DATABASE 'test' oQry := oServer:Query('SELECT p.chave as chave, p.data as data, c.nome as nome FROM ped AS p LEFT JOIN cli AS c ON(c.codigo=p.codigo) ORDER BY p.chave') DEFINE DIALOG oForm TITLE "MGA" FROM 05,10 TO 42,100 @ 00,00 XBROWSE oBrw DATASOURCE ...
by MGA
Thu Nov 14, 2024 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 198

xbrowse(autosort) + tdolphin - erro

... a field in the table with the same name: "key". But this field is not part of the query. SELECT p.key, p.data, c.name FROM orders AS p LEFT JOIN customers AS c ON(c.code=p.code) the browse works fine, however when clicking on the header (autosort) of the "key" column, an error ...
by MGA
Wed Nov 13, 2024 9:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 198

Re: cloud or not cloud

... to the cloud was a task far beyond the time I wanted to spend programming since I have other things that are very important, and not so many years left that I can do them. The real focus, however, is that most of my clients run systems with 3 -25 workstations, and to put it simply, their internet ...
by TimStone
Wed Nov 13, 2024 1:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cloud or not cloud
Replies: 34
Views: 1120

Re: draw lines on xbrowse

Silvio, you cannot use i because 1 is always on the far left. You need to link the lines with the date. Create the msginfo's and check what is in aCols[ i ], for example, with xbrowse(aCols[ i ]). You need some kind of offset. Best regards, Otto static ...
by Silvio.Falconi
Tue Nov 12, 2024 3:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: draw lines on xbrowse
Replies: 6
Views: 304

Re: draw lines on xbrowse

Silvio, you cannot use i because 1 is always on the far left. You need to link the lines with the date. Create the msginfo's and check what is in aCols[ i ], for example, with xbrowse(aCols[ i ]). You need some kind of offset. Best regards, Otto static ...
by Otto
Tue Nov 12, 2024 11:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: draw lines on xbrowse
Replies: 6
Views: 304

Re: Xbrowse having a extra space between footer and scrollbar

SET MESSAGE TO oBrw The Spacerline would go from left to right, so just 1 line in total covering all footers. I was planning to put on this line HELP-info like : Press F1 .... - Pres F2 ..... etc. en this when they are on eacht column (The help line ...
by nageswaragunupudi
Thu Nov 07, 2024 11:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse having a extra space between footer and scrollbar
Replies: 3
Views: 183

Xbrowse having a extra space between footer and scrollbar

... and the scrollbar, or when no scrollbar only below the footer. maybe a extra XBrowse data ? SET MESSAGE TO oBrw The Spacerline would go from left to right, so just 1 line in total covering all footers. I was planning to put on this line HELP-info like : Press F1 .... - Pres F2 ..... etc. ...
by Marc Venken
Wed Nov 06, 2024 3:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse having a extra space between footer and scrollbar
Replies: 3
Views: 183

Re: Ins from ClipBoard to Xbrowse

... Here it works. You have to give the cell focus and then past. Don't enter the cell and try to paste. I noticed that when you give focus to the top/left cell and paste, all cells and rows are pasted. The array don't need all the rows, but the columns it does. Xbrowse appends automaticaly the folowing ...
by Marc Venken
Wed Oct 30, 2024 11:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ins from ClipBoard to Xbrowse
Replies: 8
Views: 295

Re: Ins with tab on xbrowse

... numbers using the tab key, TAB key is never used to insert (write) data. If you mean navigating cells.... Arrow keys move the cursor to right or left. If you want to use TAB key to move to next right cell for editing, the same way as in Excel, then use oBrw:lTabLikeExcel := .t. If you set this ...
by nageswaragunupudi
Tue Oct 29, 2024 1:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ins with tab on xbrowse
Replies: 1
Views: 93

Re: btnbmp

Hola y gracias.

Igual que la imagen anterior. El bmp esta muy pegado al margen del boton.
Si pongo LEFT pegado a la izquierda, RIGHT pegado a la derecha.
Perdona, no es que sea exquicito, pero los bmp en rbbtn se ven mejor.

Saludos y gracias por tu tiempo.

Dario Fernandez
by D.Fernandez
Mon Oct 28, 2024 6:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: btnbmp
Replies: 16
Views: 445
Next

Return to advanced search