topic
stringlengths
1
63
text
stringlengths
1
577k
xbrowse Devolver valor de una celda
oXBrowse:SelectedCol() --> oColumn oXBrowse:nAt --> nColumnPosition // OJO: Posición en las columnas visualizadas Es interesante ver el código del método nAt(): METHOD nAt() INLINE ::ColPos( ::SelectedCol() ) oColumn:nCreationOrder es el índice de columna cuando se creó
xbrowse ERROR ADS (Dynamic descend not supported) RESUELTO
Estimados, la clase xbrowse produce este error la presionar la columna 2 veces para ordenar Time from start: 0 hours 0 mins 11 secs Error occurred at: 10-10-2012, 10:13:06 Error description: Error DBCMD/1034 Dynamic descend not supported in this version: ORDDESCEND Stack Calls =========== Called from: ...
xbrowse ERROR ADS (Dynamic descend not supported) RESUELTO
Este puede ser la solucion [code=fw:20m34pga]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> SetOrder<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TXBrwColumn<br />..<br />..<br /><br...
xbrowse ERROR ADS (Dynamic descend not supported) RESUELTO
Hola Patricio: El problema debe ser otro, ya que a mi me funciona bien. Creo que es problema es de version, yo uso la ver. 9.xx Hace tiempo usaba la version 7.x y tenia problemas como ese, no lo recuerdo bien. El error [b:281fayww]DBCMD/1034[/b:281fayww] no parece ser de ADS. Para mayor detalle fijate en la info ...
xbrowse ERROR ADS (Dynamic descend not supported) RESUELTO
Hola Rolando Puedes reproducir el ejemplo que he puesto arriba, puede que este haciendo algo mal. ahora yo utilizo ads v10 modo local
xbrowse ERROR ADS (Dynamic descend not supported) RESUELTO
Patricio, compilado con buildx.bat de \fwh\samples sin cambiar ningun pelito de codigo, funciona correctamente: [u:1e7sgz2g]https://www.box.com/s/268kylkq0xtmn4keumzo[/u:1e7sgz2g] xhb 1.2.1 oct 2012 saludos.. Cesar SysCtrl Soft.
xbrowse ERROR ADS (Dynamic descend not supported) RESUELTO
Gracias a todos el problema era la libreria rddads.lib que tenia, ahora compile la nueva bajada del svn
xbrowse Email|PDF
Good evening, is it possible to send an Email with the data exported to TXT or PDF directly out of xbrowse? Thank you and kind regards Iris
xbrowse Email|PDF
You need to write your own function for this. Here is a sample function: [code=fw:2a6a8ais]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> SendMail<span style="color: #000000;">&#40;</span> oBrw, cPdf, cAddress <span style="color: #000000;">&#41;</span><br /><br ...
xbrowse FWH 903
Antonio, in FWH 903 there is a little bug in xbrowse.prg In METHOD SelectCol( ) I found this: [code=fw:30f174bo]<div class="fw" id="{CB}" style="font-family: monospace;">?   ::<span style="color: #000000;">nColSel</span> := <span style="color: #0000ff;">Min</span><span style="color: #000000;">&#40;</span> ::<span sty...
xbrowse FWH 903
Hello Dietmar, Please see this topic: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=15258&p=79138&hilit=xbrowse#p79138">viewtopic.php?f=3&t=15258&p=79138&hilit=xbrowse#p79138</a><!-- l --> I think this bug is fixed in 9.04. Best regards, Otto
xbrowse FastEdit
If I use oBrw:lFastEdit := .t. How can I prevent one cell from editing. Thanks inadvance Otto
xbrowse FastEdit
oCol:bEditWhen := { || <condition> }
xbrowse FastEdit
Dear Rao, thank you very much for your help. Best regards, Otto PS: drag&drop oCursor I have to install the newest FWH to test.
xbrowse Footer sum of all numeric fileds in a row
is it possible to show the sum of all fields in one row of a xbrowsetx Uwe D aus E
xbrowse Footer sum of all numeric fileds in a row
How about something like:oCol:bStrData := { || str(field1 + field2 + field3) }
xbrowse Footer sum of all numeric fileds in a row
Excuse my errorsum of one column
xbrowse Footer sum of all numeric fileds in a row
Uwe,>sum of one columnThis is more difficult. You have to read through the entire database and sum all the columns BEFORE you display the browse. Summing the entire database might be feasible with small databases (or subsets), but it would create an unaccepatble delay with larger ones.If any record is then edited, you ...
xbrowse Footer sum of all numeric fileds in a row
Uwe,I have the same problem with my xBrowse with „meter“.<!-- m --><a class="postlink" href="http://forums.fivetechsoft.com/viewtopic.php?t=11473">http://forums.fivetechsoft.com/viewtopic.php?t=11473</a><!-- m -->I have to browse thought the whole database to get the maximum value.Otherwise you can’t show a percentage...
xbrowse Footer sum of all numeric fileds in a row
Otto,>I have to browse thought the whole database to get the maximum value. To the find the largest value in a field, you can index on that field then do a GO BOTTOM.James
xbrowse Footer sum of all numeric fileds in a row
>Maybe there is a function to show the max- value of a database field?>You can use sql statment to find maximum value. example:SELECT MAX(SALARY) FROM EMPLOYEE WHERE AGE > 30( or some appropriate statement like that).You will get the result much faster if the SALARY column and AGE column are indexed in the above examp...
xbrowse Footer sum of all numeric fileds in a row
Hello James, hello NagesWaraRao,thank you very much for your help.As I never tried using a dbf through a SQL statement I would like to ask about performance and speed?Best regards,Otto
xbrowse Footer sum of all numeric fileds in a row
NageswaraRao,I am not clear on how xBrowse updates the footer totals. Does it scan through the entire database and add up all the values every time you refresh the footers?I can see how it might update the footer for one column if you are editing a column value within xBrowse (spreadsheet style) because that is interna...
xbrowse Footer sum of all numeric fileds in a row
Mr Otto>As I never tried using a dbf through a SQL statement I would like to ask about performance and speed?>There are definite speed advantages when using server based databases, like Advantage and other RDMSs. The reason is the entire iteration through the table is performed on the server and only the result is rea...
xbrowse Footer sum of all numeric fileds in a row
Mr James>I am not clear on how xBrowse updates the footer totals. Does it scan through the entire database and add up all the values every time you refresh the footers?>I am sorry if I my post gave such an impression. No it does not. As usual it is the programmer's reesponsibility to recompute the totals after each edi...
xbrowse Footer sum of all numeric fileds in a row
NageswaraRao,Thanks for clearing that up.James
xbrowse Footer sum of all numeric fileds in a row
With XBrowse 8.06, coding for recalculation of totals and refreshing footers is made simpler:Example:[code:rcbardtg] #include 'fivewin&#46;ch' #include 'xbrowse&#46;ch' //----------------------------------------------------------------------------// function main&#40;&#41; local oDlg, oBrw, oFont local nTotal ...
xbrowse Header extension
Maybe I'm not remembering correctly. I'm using the new COMMAND syntax for xBrowse and all works well. To be consistent for my clients, all main dialogs are the same size, and the xbrowse in the .rc is also the same width. In some cases, the data I am displaying does not fill the full width of the browse control spac...
xbrowse Header extension
Tim, try oBrw:nStretchCol := STRETCHCOL_LAST
xbrowse Header extension
Thanks ... I may "game" this a bit and try adding an extra blank column. That can throw things off if we have numeric data. Tim
xbrowse Header extension
New in FWH16.04 Set oBrw:lGradientComplete := .t.
xbrowse Header extension
Nice ... I will look at adding that.
xbrowse Help window
We like to create a smal window to open into xbrowse to show help Key How We can create a Dialog / window with SHADOW and when the use click esc or click with the mouse the xbrowse this help window must be hide
xbrowse MakeTotals()
Hello everyone. After updating to a more recent fwh, I find all my apps break when executing xbrowse's makeTotals() method after a cell is changed. This happens when MakeTotals is called on bchange or on bOnPostEdit. I understand how new enhancements to the xbrowse class makes it unnecessary -at least on most cas...
xbrowse MakeTotals()
Below is a self-contained sample that demonstrates some of the problems with xbrowse. Once the app is built, click on the square "edit_get_button" button on any tree leaf for column "AmtPaid". Notice when clicking on the button of a branch cell of the tree it works as expected -that is, as coded on bEditBlock. When ...
xbrowse MakeTotals()
Reinaldo Forgive me .. I am not a class and method kind of programmer .. I have found this code to be effective when you have to update Maketotals() When ever I need to update my total ( once it is initialized ) just call oLbx:MakeTotals() from your function and refresh the browse and your totals are updated. From l...
xbrowse MakeTotals()
Thank you Rick. I appreciate your response. Perhaps I should break this post into two separate subjects. The makeTotals() problem arrises when you try to run MakeTotals from the bChange or bOnPostEdit property of the column and problem #2 is the one I demonstrate with my code. I'm guessing problem #2 is related but...
xbrowse MakeTotals()
[code=fw:z92a5xgi]<div class="fw" id="{CB}" style="font-family: monospace;"><br />      :<span style="color: #000000;">bOnPostEdit</span> := <span style="color: #000000;">&#123;</span> |o,x| ::<span style="color: #000000;">oBrw</span>:<span style="color: #000000;">oTreeItem</span>:<span style="color: #000000;">Cargo</s...
xbrowse MakeTotals()
Mr. Rao. Thank you very much for your response and detailed explanation. [quote:rcdwyizd] :bOnPostEdit := { |o,x,k| If( k == VK_ESCAPE, nil, ( ::oBrw:oTreeItem:Cargo[ _PAID ]:= x , ::ReCalculate() ) ) }[/quote:rcdwyizd] Notice the error occurs when clicking on the square box of the leaf cell -**Esc key is not bei...
xbrowse MakeTotals()
[quote:222xwxy9]Even though you argue that there is no change on MakeTotals, I still think there are since I had to add code to return cursor position to the current cell after calling MakeTotals. [/quote:222xwxy9] I do not know which current version are you using. You do not need to re-position after MakeTotals() in t...
xbrowse RETURN no hace nada en combobox.
Hola. Tengo un combobox en una celda, si expando la lista y selecciono con el mouse anda perfecto. Ahora si expando o solo quiero seleccionar con las flechas... al presionar la tecla RETURN no me deja la opcion que he seleccionado. Que hago mal? gracias.
xbrowse Report from array ( images field logic)
As you can see here I have a xbrowse and I make oGrid:Report() [img:1y24wh3w]https&#58;//i&#46;postimg&#46;cc/WzJFmZRT/errore-stampa&#46;jpg[/img:1y24wh3w] the images are printed but the 3th column not print the image but .t. or .f. How I can to print images as xbrowse ?
xbrowse Report from array ( images field logic)
As of now, these images are not printed. We will try to improve this soon.
xbrowse Report from array ( images field logic)
Can i print with particolar setup of xb report ? Or i must report to hand
xbrowse Report from array ( images field logic)
You need to do it by hand. It is coplex to do it from xbrowse. We need time to provide for that.
xbrowse SCROOL...
Hola. Por favor podrian decirme porque esto no funciona? ya me he leido los post dicen que hay que poner un WINDOWS STYLE, pero yo trabajo con .res no con .rc [code=fw:31rhev19]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp; &nbsp; :<span style="color: #000000;">lKinetic</span> &nbsp; &nbs...
xbrowse SCROOL...
Cual? [code=fw:1xwz6zwr]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;:<span style="color: #000000;">lHScroll</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= <span style="color: #000000;">&#40;</span>.T.<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;:<span style="color: ...
xbrowse SCROOL...
Teste \samples\COLIN.prg que está errado? Regards, saludos.
xbrowse SCROOL...
Mira: [code=fw:1uha4v3p]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \samples\COLIN.PRG - Modificado en: 14/11/2021 - Joao.</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00D...
xbrowse SCROOL...
[quote="karinha":5ms9sy6r]Mira: [code=fw:5ms9sy6r]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \samples\COLIN.PRG - Modificado en: 14/11/2021 - Joao.</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br ...
xbrowse SCROOL...
Post un ejemplo de como usted está haciendo para testes. Donde está el error que usted produce. Mister Nages puede mirar. Saludos.
xbrowse SCROOL...
Hola, Si usas PELLES revisa la propiedad DISABLE NO SCROLL debe estar en YES Espero sea eso.
xbrowse SCROOL...
[quote="JoseAlvarez":2o86z2yu]Hola, Si usas PELLES revisa la propiedad DISABLE NO SCROLL debe estar en YES Espero sea eso.[/quote:2o86z2yu] FUNCIONO! perfecto! gracias
xbrowse Tree - Error alguien le pasa esto
Alguien me puede dar una indicacion que pasa cuando genera este error, cuando cargo el browse xbrowse tree cuando ubico el puntero en cuanquier columna menos en la primera me genera un error al salir. cuando me ubico el la columna primera no pasa esto. Anexo error y pantalla. Codigo cuando me digo salir [code=fw:1wpu...
xbrowse Tree - Error alguien le pasa esto
[quote="ruben Dario":1dv9y5nf]Alguien me puede dar una indicacion que pasa cuando genera este error, cuando cargo el browse xbrowse tree cuando ubico el puntero en cuanquier columna menos en la primera me genera un error al salir. cuando me ubico el la columna primera no pasa esto. Anexo error y pantalla. Codigo cuand...
xbrowse TreeItem
Dear All, How to delete oTreeItem ( oItem:Delete() ) if oTreeItem:oNext is NIL? Kind Regards, Frances
xbrowse TreeItem
Dear Mr. RAO, Any sample how to remove a tree treeitem from oTree? If a condition is met.. this treeitem mus be remove. Any help? Kind Regards, Frances
xbrowse TreeItem
you Know how delete a record from xbrowse ?
xbrowse TreeItem
[quote="fraxzi":2y4vlrhz]Dear Mr. RAO, Any sample how to remove a tree treeitem from oTree? If a condition is met.. this treeitem mus be remove. Any help? Kind Regards, Frances[/quote:2y4vlrhz] Actually this is not quite simple. Version 10.12 handles this properly.
xbrowse TreeItem
[quote="nageswaragunupudi":2ls4efrd][quote="fraxzi":2ls4efrd]Dear Mr. RAO, Any sample how to remove a tree treeitem from oTree? If a condition is met.. this treeitem mus be remove. Any help? Kind Regards, Frances[/quote:2ls4efrd] Actually this is not quite simple. Version 10.12 handles this properly.[/quote:2ls4...
xbrowse TreeItem
[quote="Silvio":ldmyplna]you Know how delete a record from xbrowse ?[/quote:ldmyplna] Dear Silvio, In my case, I used VK_DELETE key assign it to bKeyChar with code block alias->( dbdelete() ) and refresh the xbrowse. if you mean the ::oTreeItem:Delete(), doesn't work perfectly with my case. Kind regards, Frances
xbrowse TreeItem
but I think you can delete a record and then refresh the tree
xbrowse TreeItem
[quote="MdaSolution":3rzmyrmv]but I think you can delete a record and then refresh the tree[/quote:3rzmyrmv] My alternate solution is to exclude a record matching my condition.. Thank you for your suggestion. Kind Regards, Frances
xbrowse TreeItem
Yes. For the time being, you can delete the record from the original data and then reconstruct the tree and refresh the browse. Seems very crude solution but works quite well and I myself used it under complex situations without hitting the performance.
xbrowse TreeItem
Hello, in other way are there the option to create a subtree or tree on run-time, per example all the item in the xbrowse are level 0 in the tree then by double click or another method we add a tree for the current row in the xbrowse and open it. regards Marcelo
xbrowse TreeItem
Yes. [code=fw:qgj2ps6k]<div class="fw" id="{CB}" style="font-family: monospace;">WITH OBJECT oBrw:<span style="color: #000000;">oTreeItem</span><br />&nbsp; &nbsp;:<span style="color: #000000;">SetTree</span><span style="color: #000000;">&#40;</span> oSubTree <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp...
xbrowse TreeItem
Thanks very much Mr. RAO, I found it and work, another question how can delete the tree without delete the root, in other words delete only the same tree added regards Marcelo
xbrowse TreeItem
Hello again. because I have thousands of records, I want to know if it possible to have a normal xBrowse database associated with the possibility to make a tree in some row by demand, no for all, only for selected row thanks in advance Marcelo
xbrowse TreeItem
[quote="Marcelo Via Giglio":j9g0t5na]Thanks very much Mr. RAO, I found it and work, another question how can delete the tree without delete the root, in other words delete only the same tree added regards Marcelo[/quote:j9g0t5na] [code=fw:j9g0t5na]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oIte...
xbrowse TreeItem
[quote="Marcelo Via Giglio":3q32885b]Hello again. because I have thousands of records, I want to know if it possible to have a normal xBrowse database associated with the possibility to make a tree in some row by demand, no for all, only for selected row thanks in advance Marcelo[/quote:3q32885b] Please try this: C...
xbrowse TreeItem
Mr. RAO, thanks very much for your answer, to delete tree work perfectly, but not to create a tree inside xbrowse dbf data, do you have other idea? many thanks again regards Marcelo
xbrowse Vs listbox: help to structure the body of invoice
in the old program to display the body of the invoice I used the lbx class now with xbrowse I have many difficulties [b:2y1lpnyu]with listbox[/b:2y1lpnyu] [code=fw:2y1lpnyu]<div class="fw" id="{CB}" style="font-family: monospace;">oDPar:=Open_Dbf<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"...
xbrowse ajustar columnas
estmados como ajustar las columnas al ancho de las celdas tengo este codigo con la version antiguas no pasaba, con la version 16.1 build2 con arreglos no pasa, solo con dbf [quote:1zbpekt8] @ 0,0 XBROWSE oBrw OF oPanel ; FIELDS ; "'"+(alias_articu)->Ar_Codig, ; (alias_articu)->Ar_Descr, ; iif( (ali...
xbrowse ajustar columnas
Estimados aun le estoy dando vuelta al tema y al parecer el problema se resualve parcialmente con //:nRowHeight := 24 se le saco esta instruccion el sistema muestra correcto pero demasiado ajustado y no se ve bien [url=http&#58;//www&#46;subeimagenes&#46;com/img/xbrowse-1636506&#46;html:24juo8am][img:24juo8am]htt...
xbrowse ajuste coluna
fwh1509 [img:6srgx844]https&#58;//uploaddeimagens&#46;com&#46;br/images/000/570/204/full/Sem_t%C3%ADtulo2&#46;jpg?1455632149[/img:6srgx844] fwh1512 [img:6srgx844]https&#58;//uploaddeimagens&#46;com&#46;br/images/000/570/203/full/Sem_t%C3%ADtulo&#46;jpg?1455632001[/img:6srgx844] tem como corrigir isto?
xbrowse ajuste coluna
We are going to review it asap, thanks
xbrowse ajuste coluna
Antonio el problema esta en el este method [b:2bd5wmdn]METHOD DataWidth() CLASS TXBrwColumn[/b:2bd5wmdn] he utilizado momentaneamnete una version antigua 15.2 y las culumnas quedan cuadradas
xbrowse ajuste coluna
UP espera de correccion. []s
xbrowse alinear columnas.
En el ejmeplo que pongo quiero alinear todo a centrado, el titulo si sale centrado, pero no se como alinear centrado los datos de las celdas, he probado con :nDataStrAlign pero me da el siguiente error : Message not found: TXBROWSE:NDATASTRALIGN Alguien podria indicarme como ordenar los datos dentro de cada "celda". S...
xbrowse alinear columnas.
Con que versión estás compilando ? Saludos
xbrowse alinear columnas.
Fivewin Habour 15.09 y borland cc 5.82
xbrowse alinear columnas.
Garbi. Intentalo asi: .... .... [code=fw:13t6n443]<div class="fw" id="{CB}" style="font-family: monospace;">WITH OBJECT oBrw<span style="color: #000000;">&#91;</span> i <span style="color: #000000;">&#93;</span><br />             :<span style="color: #000000;">bRClicked</span>:= <span style="color: #000000;">&#123;</s...
xbrowse alinear columnas.
Muchas Gracias. Funcionando Perfectamente. Gracias por evitarme horas de trabajo. Un saludo.
xbrowse alinear columnas.
Hola garbi como armas vprompt y vFolders PROMPT &vprompt DIALOGS &vfolders Saludos
xbrowse alinear columnas.
[code=fw:2kttaz8m]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// varias profundos</span><br /><br /><br /> <span style="color: #00C800;">for</span> i:=<span style="color: #000000;">1</span> <span style="color: #0000ff;">to</span> vcolumnas<span style="color: #000000;">+1</spa...
xbrowse alinear columnas.
Muchas Gracias resulto bien. Saludos
xbrowse alinear columnas.
Garbi yo armo asi: Local aData LOcal vData:="" cProductos:=xServer:Query("SELECT * FROM productos") cProductos:GoTop() vData:='"aProd"' cProductos:Skip(1) //Skip Do While !cProductos:Eof() vData :=vData +","+ '"aProd"' cProductos:Skip(1) //Skip ENDDO cProductos:End(...
xbrowse alinear columnas.
Vamos a ver si me acuerdo, que ya hace tiempo. Creo que el error que esta teniendo es que : aData := Array( vData ) vData es un "literal" no es un numero, fijate que yo asigno vprofundo, que es un numero, es decir lo largo del array, tu deberías asignar el numero de registros, y casi te diria que numero de registros...
xbrowse and Excel
I wish use the comand oBrowse:ToExcel but I wish select some columns not all then when the excel is created the oBrowse must be as I had any solution please
xbrowse and Excel
From wiki <!-- m --><a class="postlink" href="http://wiki.fivetechsoft.com/doku.php?id=fivewin_class_txbrowse">http://wiki.fivetechsoft.com/doku.php?i ... s_txbrowse</a><!-- m --> [quote:1dqrs0uf] ToExcel XLS,PDF ( [bProgress], [nGroupBy], [aCols], [lShow], [cPDF], [bPrePDF] ) –> oSheet Exports contents of the browse ...
xbrowse and Excel
exactly I know this well. But I had asked for something else I have a customer table with specific columns I want to create a file for excel by selecting some columns not all columns of xbrowse So I select the xbrowse columns from the header and then call the ToExcel() function. and it run ok [b:20wksxdr]Problem when ...
xbrowse and Excel
Silvio, Maybe this can help you ? I don't know if you allready select the coloms this way. <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=34058&hilit=select+colums+in+xbrowse">viewtopic.php?f=3&t=34058&hilit=select+colums+in+xbrowse</a><!-- l --> If you put this code...
xbrowse and Excel
(1) If your program knows which columns are to be exported then you adopt this method. Assume you want columns 5, 4, 2 to be exported. [code=fw:2jtxnoz2]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">ToExcel</span><span style="color: #000000;">&#40;</span> <span styl...
xbrowse and Excel
Rao, I'm Working on your function XbrColSelector( oBrowse ) it can run ok only I modified with [code=fw:277yzxxl]<div class="fw" id="{CB}" style="font-family: monospace;"> <br /><br /><span style="color: #00C800;">function</span> XbrColSelector<span style="color: #000000;">&#40;</span> oBrowse <span style="color: #...
xbrowse and Excel
As we explained above, it is not necessary to Hide/Unhide columns for exporting to Excel. You need to have modified my example to suit the present purpose. Here is the modified function: [code=fw:3pry5lew]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> ExportToEx...
xbrowse and Excel
thanks
xbrowse and Excel
Mr. Rao, Could you please find some time to enhance this function with a save/restore button where the state off a selected colums is saved? This would be a great tool for setup new xbrowses when develloping. We could open all columns, select some and some more and finaly we could code the needed colums. Thanks in...
xbrowse and Index
I made a test to index a dbf . I insert a xbrowse in a window I have abuttonbar on this window I press the first button of buttonbar to index the dbf it cal Index( .t.,obrw) it make error dbskipper some can help me thanks I insert the test source on this address : <!-- w --><a class="postlink" href="http:/...
xbrowse and Tree
Hi everyone; I'm new to trees inside xbrowse. I intend to display a tree using xbrowse and allow the user to change the tree (branches and leafs) at any time (although based on the same data), therefore I would need to change the tree being viewed on the xbrowse. Is this possible? In other words, have a tree where ...
xbrowse and Tree
Possible. We need to make two trees. We may start the browse with Dates tree. When user wants to switch over just oBrw:oTree := oBranchTree ( also need to set oTreeItem). Keep switching the two trees like this. Main task is to make a tree. How do we make it depends on (1) tree with subtotals or not (2) how dynamic th...