topic
stringlengths
1
63
text
stringlengths
1
577k
xBrowse refresh
Antonio, en FWH808 creo que hay un problema con los arrays y xBrowse. Te comento, Tengo un array de por ejemplo 200 registros y en pantalla solo entra 50, pues cuando pulso el cursor para abajo, cuando llega a la linea 50, si sigo la 51 en adelante me la pinta sobre la 50 y las demás las deja igual, si pulso sobre repa...
xBrowse refresh
Mike,vamos a revisarlo cuanto antes, gracias! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xBrowse refresh problem
Hi all, I have this code: Use VENDA INDEX VENDA Shared New alias "VENDA" via "DBFCDX" Database oVenda ... oBrwPed := TXBrowse():New( oDlgPed ) oBrwPed:nMarqueeStyle := MARQSTYLE_HIGHLROW oBrwPed:CreateFromResource( 109 ) oBrwPed:nColDividerStyle := 5 //LINESTYLE_BLACK // COLUNAS oBrwPed:...
xBrowse refresh problem
Please use the recommended way to define the xbrowse like this [code=fw:8bm420r8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />FWNumFormat<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"E"</span>, .t. <span style="color: #000000;">&#41;</span>  <span style="color: #B90...
xBrowse refresh problem
[quote="nageswaragunupudi":tur2xdaf]Please use the recommended way to define the xbrowse like this [code=fw:tur2xdaf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />FWNumFormat<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"E"</span>, .t. <span style="color: #000000;">&#...
xBrowse report oLbx:Report
To All Is it possible to select ONLY the fields you wish xBrowse report to Print and also get a total number of records ? Thanks Rick Lipkin
xBrowse report oLbx:Report
The only way is to hide the unwanted columns and call :Report(). This also means that Report() method prints what we see in the browse by default. Total records printed is oBrw:nLen. By using the 4th parameter bSetup, you get the full flexibility to define your own columns. Example: [code=fw:2njnx6f0]<div class="fw" i...
xBrowse report oLbx:Report
Rao Thanks .. that worked ... how do you apply [code=fw:1hj30joc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> oBrw:<span style="color: #000000;">nLen</span><br /> </div>[/code:1hj30joc] to show up at the bottom of the report to sum the number of records ? Rick Lipkin
xBrowse report oLbx:Report
Rao I am using FWH 1707 and your example errors during the compile at: [code=fw:2dm8o7uw]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> COLUMN <span style="color: #0000ff;">TITLE</span> <span style="color: #ff0000;">"First Name"</span> <span style="color: #00C800;">DATA</span> oRs:<span style="color...
xBrowse report oLbx:Report
This works in all versions. Need to include "report.ch" also. Parameters [code=fw:2oimy3cf]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> Report<span style="color: #000000;">&#40;</span> cTitle, lPreview, lModal, bSetUp, aGroupBy, cPDF <span style="color: #000000...
xBrowse report oLbx:Report
Please see my modification.
xBrowse report oLbx:Report
Rao As always ... Thank you! Rick Lipkin
xBrowse resource Pelles window styles?=> Solved
Hi Same source code [code=fw:1h24ytgk]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw := TXBrowse<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> oDlg <span style="color: #000000;"...
xBrowse resource Pelles window styles?=> Solved
After redefining the browse, please try [code=fw:37yn9w7p]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">nStyle</span> := nOr<span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">nStyle</span>, WS_HSCROLL, WS_VSCROLL <span style="color: #000000...
xBrowse resource Pelles window styles?=> Solved
[quote="nageswaragunupudi":2vtw44o3]After redefining the browse, please try [code=fw:2vtw44o3]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">nStyle</span> := nOr<span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">nStyle</span>, WS_HSCROLL, WS...
xBrowse resource Pelles window styles?=> Solved
Please try [code=fw:5ciodpp8]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">CreateFromResource</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">301</span> <span style="color: #000000;">&#41;</span><br />oBrw:<span style="color: #000000;">...
xBrowse resource Pelles window styles?=> Solved
[quote="nageswaragunupudi":2ko476qn]Please try [code=fw:2ko476qn]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">CreateFromResource</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">301</span> <span style="color: #000000;">&#41;</span><br /...
xBrowse resource Pelles window styles?=> Solved
Mr.Rao Look it. [url:28rt2khm]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=31551&p=183851&hilit=0x50210000#p183851[/url:28rt2khm]
xBrowse retrieve current cell value
How can I retrieve the value of the highlighted xbrowse cell Many thanks Peter
xBrowse retrieve current cell value
I used normaly my datas in a array, I get de value with this form: For example I get de data of column number 4 = ? aData[ oBrw:nArrayAt, 4 ] Regards, Carito
xBrowse retrieve current cell value
oBrw:SelectedCol():Value
xBrowse retrieve current cell value
thanks to both Regards Peter
xBrowse seek improvement
Hello Nage, I have a xBrowse with a incremental seek , with a bOnChange that effects a select in a table , each key down a select. Is it posssible to have a seek that effects a select at the end of the search , ( like in Chrome when we press enter ) without adding external get ? Thank Maurizio ? <!-- w --><a cla...
xBrowse setPos(nn) error
I a have an xBrowse listbox where I am calculating a column to go as in this code to replace the GoToCol(n) using oBrow:SetPos(1,47) where I want the cursor to go to the first row then 47th column and I get the following error .. using fwh 910 .. Any Ideas ?? Rick Lipkin [code=fw:z828x9wu]<div class="fw" id="{CB}" s...
xBrowse setPos(nn) error
Hello Rick, Setting the Focus to a defined Cell ( Row = 5 / Col = 2 ), I use : [color=#0000FF:h5nxo76p]oLbx:nRowSel := 5 oLbx:nColSel := 2[/color:h5nxo76p] ---------------------------------------- oLbx := TXBrowse():New( oDlg ) oLbx:nMarqueeStyle := [color=#0000FF:h5nxo76p]MARQSTYLE_HIGHLCELL[/color:h5nxo76p] ... .....
xBrowse setPos(nn) error
1. SetPos(..) should be used in ON INIT clause. 2. oLbx:nRowSel := 5 oLbx:nColSel := 2 also works in many cases. There is no Upstable method in xbrowse and it is not necessary. oBrw:Refresh() is enough.
xBrowse setPos(nn) error
Rao I took out the upstable .. I am trying to migrate hernans browse to xbrowse .. in the screen shots . June 27th is the day that should show up after the 5th column which is frozen : [url=http&#58;//img5&#46;imageshack&#46;us/i/correcti&#46;jpg/:33qr98eg][img:33qr98eg]http&#58;//img5&#46;imageshack&#46;us/img5/4213...
xBrowse setPos(nn) error
SetPos works for visible number of column. nColSel works if the column is already visible. Since your browse is very large, best thing to do is to oBrw:GoRight() 46 times. We can have a general function for this. [code=fw:3d83olsr]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;"...
xBrowse setPos(nn) error
I understand that you want to show the 47th column as the first column after the freeze. We can try this: [code=fw:11rby81p]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> XbrGoToCol<span style="color: #000000;">&#40;</span> oBrw, nCol <span style="color: #000000;...
xBrowse setPos(nn) error
Rao I modified your code and got the colummn to show up in the right place, but the cursor os off 3 columns to the right. Rick Lipkin [code=fw:10vhs9ld]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">//-------------------------------</span><br /><span style="color: #00C8...
xBrowse setPos(nn) error
Mr Rick Please try the code in my last post
xBrowse setPos(nn) error
Rao Your last post gave this result : [code=fw:2cuink6h]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">//--------------------------------------</span><br /><span style="color: #00C800;">function</span> XbrGoToCol<span style="color: #000000;">&#40;</span> oBrw, nCol1 <spa...
xBrowse setPos(nn) error
Mr Rick Please try this: [code=fw:3nwbntdc]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> XbrGoToCol<span style="color: #000000;">&#40;</span> oBrw, nCol1 <span style="color: #000000;">&#41;</span><br /><br />   oBrw:<span style="color: #000000;">nColOffSet</span...
xBrowse setPos(nn) error
Rao It worked .. but had to add oBrw:ReFresh(),SysReFresh() .. Once the browse was refreshed .. the column and cursor lined up correctly .. Thanks Rick [code=fw:6k0lfet5]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">//-------------------------------------</span><br /><...
xBrowse setPos(nn) error
SysRefresh() won't be necessary. I feel it is better to use oBrw:Refresh() separately after this function. In the ON INIT clause, we may use more instructions and at the end we can use oBrw:Refresh() once.
xBrowse setPos(nn) error
Thanks Roa !!
xBrowse shows <Binary> Fieldinfo of a Textfield ?
Hello, adding a Text, I get a Fieldinfo <Binary> from the 1. Record. The DBF-structure is ok, but cannot update the field. The GET shows the defined text. The 1. Record [img:1xj8mdla]http&#58;//www&#46;pflegeplus&#46;com/pictures/binary1&#46;jpg[/img:1xj8mdla] The 2. Record [img:1xj8mdla]http&#58;//www&#46;pflege...
xBrowse shows <Binary> Fieldinfo of a Textfield ?
1. What are the exact contents of the field? 2. FWH Version?
xBrowse shows <Binary> Fieldinfo of a Textfield ?
Mr. Rao, FWH 12.3 xHarbour opend with a external viewer MTITLE = C 40 [img:13byq2qz]http&#58;//www&#46;pflegeplus&#46;com/pictures/binary3&#46;jpg[/img:13byq2qz] Maybe it happens the first time, after creating a new DBF ( if not exists ) from a Metro-panel-preview. Closing and reopen, I could change the field and ...
xBrowse shows <Binary> Fieldinfo of a Textfield ?
If xbrowse finds some binary characters then it shows <binary>, unless it is not a valid picture. I can test if there is any bug in this identification, if I can have the DBF containing the problem text.
xBrowse shows <Binary> Fieldinfo of a Textfield ?
Mr. Rao, another test with some changes filling the 1 record with the vars from the INI-file after the DBF is created ( still the same result ) all other fields are working fine. Fieldname [color=#0000FF:306nwcxm][b:306nwcxm]MTITLE[/b:306nwcxm][/color:306nwcxm] ( Panel-title ) [img:306nwcxm]http&#58;//www&#46;pflegep...
xBrowse simple Leftclick
how can i add action in a xbrowse for a single Left click ?Tx uwe D aus E
xBrowse simple Leftclick
In TxbrwColumn :DATA bLClickHeader,; // codeblock to be evaluated when left clicking on the header bLClickFooter,; // codeblock to be evaluated when left clicking on the footerMaybe you mean that bLClickData not exist. I suppose this can only be used to select a row or columnFrank
xBrowse simple Leftclick
Yes u are right i dont notice itAnother Idea i want a detailed view of this rowhow can i do that like tooltip which was shown after a few seconds
xBrowse simple Leftclick
Hello Frank,have you seen my private email about the-booking platform?Regards,Otto
xBrowse simple Leftclick
Otto,I have no idea , have you sent a private e-mail ?If so , it is not arrived.Frank
xBrowse simple Leftclick
[quote="Uwe Diemer":2w270swb]Yes u are right i dont notice it Another Idea i want a detailed view of this row how can i do that like tooltip which was shown after a few seconds[/quote:2w270swb]UweThis can be done , as oBrwB:bChange := {|Self,lUpDown| ShowLine(Self,lUpDown, @ShowDlg,oDlg) , SetActiveWindow(oDl...
xBrowse simple Leftclick
Frank, I sent on your fototeam address.Regards,Otto
xBrowse simple Leftclick
[quote="Otto":3n8659bm]Frank, I sent on your fototeam address. Regards, Otto[/quote:3n8659bm]Sorry otto , i don't know anything from a fototeam address
xBrowse simple Leftclick
Excuse me . Maybe I mix up something.Aren’t you Robert Frank?Regards,Otto
xBrowse small sample
Hi Friends: I'm looking for a small xbrowse sample with edit by cells, add regs, delete regs, change regs, etc. with recordset (Myql). Somebody can help me? With best regards
xBrowse small sample
Hi Friends: I'm looking for a small sample for xBrowse with edit cells and recordset. Somebody can help me? With best regards
xBrowse small sample
Hi Armando, I think your best bet will be to download tDolphin of Daniel Garcia Gil, this is a small sample: [code=fw:9i0f4pah]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//#include "hbcompat.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: ...
xBrowse small sample
Bayron: Tanks so much but it's too late, my app has several PRGS with many Recordsets, anyway thanks for your suggestion. Regards
xBrowse sort
Hi all, i think it's better to start a seperate topic for this question. i have a 4 column xBrowse over an array. The xBrowse is set with AUTOCOLS and AUTOSORT. I found out that if i rebuild the array my column header names change to Col1, Col2 .... and the sort order is mixed up. How can i call the browse sort pro...
xBrowse sort
Try this: [code:2ig0m6ix]oBrw&#58;aArrayData &#58;= aAnyArray oBrw&#58;refresh()[/code:2ig0m6ix]
xBrowse sort
Julio, many thanks for yor advice. But this doesn't start the sorting process of a specified column. Best regards, Detlef
xBrowse sort
Detlef, Maybe you need to set the column again! With this way, we can redefine the filled array into the header columns of xBrowse.
xBrowse sort
Julio, i'm sorry, but it dosn't work as you suppose. I just need to call a method of xBrowse to start the sorting process for a specified column. Unfortunately i didn't find such method in the xBrowse sources. Antonio, do you have an advice for me? Thanks and regards, Detlef
xBrowse sort
Detlef, Please, try this: [code:1vtwnlgk]oCol&#58;setOrder()[/code:1vtwnlgk]
xBrowse sort
Julio, yes!!!! you were right. Now i got it working with oBrw:aCols[ n ]:SetOrder() But be careful You will have to set [color=#FF0000:289ya563]oBrw:aCols[ 3 ]:cOrder := 'D'[/color:289ya563] after. Otherwise with every call you have alternating ascending and descending sort orders. Thanks again. Regards, Detlef
xBrowse sort
Detlef, Yes! you are right too! Is needed to define cOrder property before!
xBrowse standard keys
Hi, how can I define my own code blocks for some standard keys, e. g. K_RIGHT, , K_LEFT, K_DEL, or K_CTRL_DEL, in a xBrowse?
xBrowse standard keys
You can't use codeblocks, but you can try redefining them at the top of xbrowse.prg and compiling and linking it with your application. The downside is that you will have to update this with each new version of FWH. I don't recommend redefining these keys as they are standards and your users will be confused by it, an...
xBrowse standard keys
Don't know if you can trap left, right etc but you can do this: oBrw:bKeydown := { | nKey | BrowseKeys(nKey) } STATIC FUNCTION BrowseKeys(nKey) IF nKey == VK_F3 ENDIF RETURN NIL Regards, Pete
xBrowse standard keys
James, thank you for the quick answer. I agree with your opinion, regarding the standard navigation keys as follows: K_RIGHT, K_LEFT, K_UP, K_DOWN, K_PGUP, K_PGDN, K_HOME, K_END, ... So I will not redefine these keys. But what about these keys: K_DEL, K_CTRL_DEL, K_INS, K_CTRL_INS, ... These keys were not trapped by...
xBrowse standard keys
Frank, My apologies for saying you couldn't use a codeblock, I had a brain fade and forgot about bKeydown. Can I see the codeblock you have defined, and function you are using to trap the keys? James
xBrowse standard keys
Hello Peter, hello James doesn't know until now that there are two different methods, bKeyChar and bKeyDown, to catch key strokes, thank you Peter. Fortunately bKeyDown trap the keys K_DEL, K_CTRL_DEL, K_INS, K_CTRL_INS, ..., so my function can react on them. One more difference is the value of <nKey> in bKeyDown, s...
xBrowse standard keys
Frank, Yes the two methods, KeyDown() and KeyChar(), do make it more confusing. Perhaps Antonio can explain why there are two? It is probably a Windows thing. I don't think the "K_" values are necessary--they are either reduntant to the "VK_" values or not used (remember, unlike Harbour, in FW everything goes through...
xBrowse standard keys
Hello James, you wrote: [quote:4s2zwqhn]As an alternative interface idea, consider making a right-click pop-up menu with all your options on it. This is a Windows standard and users will automatically try this. Unless your users are expert users that use the program a lot, they will not remember the hot-keys. At the v...
xBrowse standard keys
When I create a menu for Child window, it automatically replaces main menu when Child window has focus. You can also have a toolbar on each window.
xBrowse standard keys
Gale, thank you for the tip, which direct me in the right direction.
xBrowse start indexed
so she opens indexed by column 1 @ 000,000 XBROWSE oZoom ; HEADERS "Placa","Carro" ; OF oWndZoom ; ...
xBrowse start indexed
oBrw:aCols[ 2 ]:SetOrder oBrw:GoTop()
xBrowse start indexed
yes, thanks oBrw:aCols[ 3 ]:SetOrder() or oBrw:aCols[ 4 ]:SetOrder()
xBrowse sum help? (SOLVED)
Hi, I want to sum one column in xbrowse. If I sum all of records, there is not any problem using below. [img:1bkzu3z5]http&#58;//www&#46;objekt&#46;com&#46;tr/fwh_test/xbrowse1&#46;png[/img:1bkzu3z5] [code=fw:1bkzu3z5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">if</span> ! ...
xBrowse sum help? (SOLVED)
[code=fw:1drmdcqj]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">if</span> ! Empty<span style="color: #000000;">&#40;</span> oCol := oBrw:<span style="color: #000000;">oCol</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Tutar"</span> <span style=...
xBrowse sum help? (SOLVED)
Thank you Mr. Rao, I have changed your advice but there is not any change. As I said before, I should sum three condition. 1. all, 2. Header Ödeme Yeri = "Büroda", 3 - Header Ödeme Yeri = "Havale" and I want to show three total in footer "Tutar" column.
xBrowse sum help? (SOLVED)
XBrowse does not natively support multiple totals in a single column. We need to use workaround. Please try this sample: [code=fw:2xlcozvv]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="co...
xBrowse sum help? (SOLVED)
[quote="nageswaragunupudi":1srs5p8z]XBrowse does not natively support multiple totals in a single column. We need to use workaround. Please try this sample: [code=fw:1srs5p8z]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.c...
xBrowse sumar columna segun criterio
Hola buenas tardes, necesito totalizar una columna siempre que no este anulada, de hecho la dejo visible por cuestiones de auditoria. [code=fw:b4bamn0u]<div class="fw" id="{CB}" style="font-family: monospace;">                *-----------------------------------------------------------<br />                oCol := ::<...
xBrowse sumar columna segun criterio
A ver si te vale [quote:16u4pgyx] Class TXBrwColumn bSumCondition B Format: { |@value,oCol| lIncludeInTotals } Used for conditional / calculated totals by MakeTotals(). If specified, the cell value is included in totals only if the block returns .t.. In addition, the block can set the 1st parameter to a different c...
xBrowse sumar columna segun criterio
Hola Cristobal, lo solucione asi: [code=fw:3hwoajwa]<div class="fw" id="{CB}" style="font-family: monospace;">oCol:<span style="color: #000000;">bSumCondition</span> := <span style="color: #000000;">&#123;</span> || ::<span style="color: #000000;">oQry</span>:<span style="color: #000000;">anulado</span><><span style="...
xBrowse tab key error with EDIT_LISTBOX
To All I get this error with FWH1203 as well as FWH 1408 .. when I navigate to the EDIT_LISTBOX and hit the letter P ( for parts ) the drop down listbox finds the correct line, if I hit the TAB key to navigate to the next cell I get this error. The error only occurs if I TAB through the Listbox .. if I hit the ENTER k...
xBrowse tab key error with EDIT_LISTBOX
Thanks for pointing out. We are looking into this.
xBrowse table Tree
Dear all, I have this xBrowse tree with single level on my dbfs for some time now.. I'd like to make this tree to branch-out depending on the column I would like to define as sub-tree.. here: [img:3ldvv5ru]http&#58;//i208&#46;photobucket&#46;com/albums/bb82/fraxzi/FWxHarbour/tree1_zps6f315437&#46;png[/img:3ldvv5ru] ...
xBrowse table Tree
Dear All, I am trying to do is like this on a single table with xbrowse [img:50b1hzxc]http&#58;//i208&#46;photobucket&#46;com/albums/bb82/fraxzi/FWxHarbour/tree3_zps738f977f&#46;png[/img:50b1hzxc]
xBrowse table Tree
RAO?
xBrowse table Tree
Here you have it [code=fw:3ejpwxhd]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">/*<br />*<br />*  XbTree2.Prg<br />*  G.N.Rao<br />*<br />*/</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.Ch"</span><br /><span style="colo...
xBrowse table Tree
Dear RAO, Great example! <!-- s:!: --><img src="{SMILIES_PATH}/icon_exclaim.gif" alt=":!:" title="Exclamation" /><!-- s:!: --> <!-- s:!: --><img src="{SMILIES_PATH}/icon_exclaim.gif" alt=":!:" title="Exclamation" /><!-- s:!: --> This is more than I expected <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)...
xBrowse template creator (Uwe)
Hello Uwe, I did some work today with your xBrowse template creator. This is really a very useful tool. Thank you for sharing. Is the sourcecode of the creator available? If not would you be so kind to prepare a version for me with opens in a size of 800*600 or a little smaller. Thanks in advance Otto
xBrowse template creator (Uwe)
Uwe: Where I can download the tool ? Thank you.
xBrowse template creator (Uwe)
You can Download from here. <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/brwtools5.zip">http://www.pflegeplus.com/fw_downloads/brwtools5.zip</a><!-- m --> Read something about the Update : <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=1383...
xBrowse tipo excel
Maestro Antonio Linares cambie la clase xBrowse para que trabaje en forma de edición tipo excel el trabaja con las tecla direccionales cuando presiono la tecla direccional el se va para la columna o fila y queda en modo edición, cada vez que presiono enter el se va a la columna siguiente y si es la ultima columna pasa ...
xBrowse tipo excel
Con F2 puede mover las teclas direccionales dentro del get
xBrowse to EXCEL
If I export from xBrowse to Excel with the build in :toEXCEL() method I get with values with a decimal place wrong values in EXCEL. Could someone please help. Thanks in advance Otto [img:1oelofrj]http&#58;//www&#46;atzwanger-software&#46;com/fw/excelexport&#46;jpg[/img:1oelofrj]
xBrowse to EXCEL
Otto XbrNumFormat( 'E', .T. ) Hth Richard CHIDIAK
xBrowse to EXCEL
[quote="Richard Chidiak":1atqmh9y]Otto XbrNumFormat( 'E', .T. ) Hth Richard CHIDIAK[/quote:1atqmh9y] Mr Otto If the above advice of Mr. Richard does not work, please try setting oBrw:lExcelCellWise := .t. while defining the browse. Please let us know the results.
xBrowse to EXCEL
Thank you Richard, thank you Mr. Rao, The suggestion from Mr. Rao (oBrw:lExcelCellWise := .t.) is working. XbrNumFormat has no effect. Thank you again. Best regards, Otto
xBrowse to Excel how to bring ON TOP ?
Hello, 1. I have a browser inside a FOLDER. 2. a print and EXCEL-button from the main-dialog. The report is shown on top but it is impossible, to bring EXCEL on top. [img:2v4xtz1o]http&#58;//www&#46;pflegeplus&#46;com/pictures/xbrexcel&#46;jpg[/img:2v4xtz1o] how to bring EXCEL on top ? [color=#0000FF:2v4xtz1o][b:2...