topic
stringlengths
1
63
text
stringlengths
1
577k
xbrowse record display
Hi All I have a xbrowse that has more records that can be displayed but the bottom line of the view looks like a blank record even though there are records below - is there a way overcome this - so the browse is full of records. cheers Colin
xbrowse record display
When the vertical size of the browse data area is not integral multiple of number of rows that can be displayed and the row height, there is a small gap at the bottom that can not be filled with data. If we want the displayed rows to snugly cover the total area, there are two alternative approaches. Alternative-1: Wh...
xbrowse record display
Mr Rao Thanks for your reply - this fixed the issue - now looks a lot better. Cheers Colin
xbrowse record display
Dear RAO, I think it's better if we determine if elements/records are greater than xbrowse can display then use AdjustBrwHeight( oBrw ) otherwise no adjustment since all elements/records are displayed. Regards, Frances
xbrowse record display
[quote="fraxzi":341qzhua]Dear RAO, I think it's better if we determine if elements/records are greater than xbrowse can display then use AdjustBrwHeight( oBrw ) otherwise no adjustment since all elements/records are displayed. Regards, Frances[/quote:341qzhua] Yes. My answer was specific to Mr. Haig's requirement. H...
xbrowse record display
[quote="nageswaragunupudi":uqayds9d][quote="fraxzi":uqayds9d]Dear RAO, I think it's better if we determine if elements/records are greater than xbrowse can display then use AdjustBrwHeight( oBrw ) otherwise no adjustment since all elements/records are displayed. Regards, Frances[/quote:uqayds9d] Yes. My answer was s...
xbrowse record selector column
se puede cambiar el color de la columna del record selector del xbrowse? como? Gracias
xbrowse record selector column
Paco, intenta con: [code=fw:1xl8uau3]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp; oBrw:<span style="color: #000000;">nRecSelColor</span> := <span style="color: #000000;">16777215</span><br />&nbsp;</div>[/code:1xl8uau3]
xbrowse record selector column
Bien !! en toda la columna de los registros, pero sabes, la cabecera del record selector no cambia de color, esa como se cambia de color? Gracias Saludos
xbrowse record selector column
Paco, asi lo hago, cuando cambio todos los colores del browse. Espero sirva de guia para tu implementacion. [code=fw:1lwoi05j]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//------------------------------</span><br /><span style="color: #00C800;">Function</span> Color_oBrw<span...
xbrowse record selector column
listo Gracias, Saludos
xbrowse recuperar el aArrayData despues de modificar?
Buenas,. Mi ingenieria de la cabeza hizo esto: [code=fw:rp352q3l]<div class="fw" id="{CB}" style="font-family: monospace;">  ::<span style="color: #000000;">oBrw</span>:<span style="color: #000000;">setarray</span><span style="color: #000000;">&#40;</span>::<span style="color: #000000;">aDatos</span><span style="colo...
xbrowse recuperar el aArrayData despues de modificar?
Entiendo que tendrías que modificar ::oBrw:aArrayData para que los cambios no solo se realicen en el browse
xbrowse recuperar el aArrayData despues de modificar?
asi es! gracias.
xbrowse refresh
Hi I have a array xbrowse but If add a first record the xbrowse still empty, but if i move the mouse in xbrowse area the record show. This is my code: AADD( VetItem, { Cod_Pro , Nom_Pro, oArqItem:UNIDADE , Qtd_Pro, Tip_Ava, oArqItem:VALORUN, oArqItem:VALIDADE, oArqItem:EAN, Num_Not }) oBrw:SetArray( VetItem) oBrw:...
xbrowse refresh
Intenta en este orden, saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> [code=fw:1awm0mgv]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">nHeaderHeight</span> :=<span style="color: #000000;">30</span...
xbrowse refresh
[quote="joseluisysturiz":2klizagq]Intenta en este orden, saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> [code=fw:2klizagq]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">nHeaderHeight</span> :=<spa...
xbrowse refresh with new recordset
Hello, I'm converting a dialog with 2 listbox to xbrowse The two browses are browsing a recordset. When the first one is change, I update the second recordset (not a filter, but running a new guery) and do a refresh() With the listbox this is working fine, but with xbrowse it doesn't work. If the second browse is sh...
xbrowse refresh with new recordset
Marc I think I understand what you are doing .. and what is interesting about xBrowse .. is that you can oRs2:Close() the recordset ( without destroying oLbx2 ) and then re-open\create the oRs2 recordset again with a new query which will probably capture your new records .. as long as the same query and fields are use...
xbrowse refresh with new recordset
Is this master-child browse? oBrw2:oRs:Close() oBrw2:oRs := FW_OpenRecordSet( <NewQuery> ) oBrw2:GoTop() oBrw2:Refresh() Note: You can also consider Data Shaping for master-child browses
xbrowse refresh with new recordset
Thank you Rao, Now it's working. My recordset is called 'oRSBlocks' So I had to do: [code=fw:qa0hwqlj]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw2:<span style="color: #000000;">oRs</span>:<span style="color: #000000;">close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;...
xbrowse refresh with new recordset
The problem was not with closing or not closing. You assigned new recordset object to oRs2 But oBrw:oRs was still pointing to the old recordset. In my suggestion, you are now assigning the new recordset to oBrw:oRs. This makes it work.
xbrowse refresh with new recordset
Hello, i have a problem The idea is to type the code by hand or from a listbox, and update the description column for this use the codeblock Helppre() ----------- oLbxp:aCols[ 5 ]:nEditType := EDIT_GET_BUTTON // // oLbxp:aCols[ 5 ]:bEditBlock := {||HelpcPres(oLbxp)} oLbxp:aCols[...
xbrowse refresh with new recordset
bStrData expects a codeblock, try this: oLbxp:aCols[ 5 ]:bStrData := { || cpres->pr_codi } oLbxp:aCols[ 7 ]:bStrData := { || cpres->pr_desc }
xbrowse refresh with new recordset
Ok, gracias Antonio, funciona
xbrowse report & Preview style
[img:1yq2uepl]https&#58;//i&#46;postimg&#46;cc/j5KSsXMV/lk&#46;png[/img:1yq2uepl] to make fast I made oThis:oLbx:report() But if I wish print al so the lines ? (Horizontal e and vertical separators) How I can do ? I notice on Windows 10 the style of Preview bar is not for Windows 10 but it is also 2007 style, how...
xbrowse report & Preview style
Dear Silvio, For the first question: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=15578&start=0&hilit=xbrowse+preview+bsetup">viewtopic.php?f=3&t=15578&start=0&hilit=xbrowse+preview+bsetup</a><!-- l -->
xbrowse report & Preview style
[quote="Antonio Linares":hyrh2zt6]Dear Silvio, For the first question: <!-- m --><a class="postlink" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=15578&start=0&hilit=xbrowse+preview+bsetup">http://forums.fivetechsupport.com/viewt ... iew+bsetup</a><!-- m -->[/quote:hyrh2zt6] Antonio, I Tried with ...
xbrowse report & Preview style
[code=fw:3t5gz6ny]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; bSetUp &nbsp; := < |oRep, Brw, n |<br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">if</span> n == <span style="color: #000000;">2</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oRep:<span style="color: #000000;">CellView</span><s...
xbrowse report & Preview style
[code=fw:26lnm1f3]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; bSetUp &nbsp; := < |oRep, Brw, n |<br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">if</span> n == <span style="color: #000000;">2</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oRep:<span style="color: #000000;">CellView</span><s...
xbrowse report & Preview style
[quote="nageswaragunupudi":jgx5n2et][code=fw:jgx5n2et]<div class="fw" id="{CB}" style="font-family: monospace;">   bSetUp   := < |oRep, Brw, n |<br />      <span style="color: #00C800;">if</span> n == <span style="color: #000000;">2</span><br />         oRep:<span style="color: #000000;">CellView</span><span style="col...
xbrowse report setup
to make a report I use easy [b:1jr1bhkh]oBrw:Report("Stampa elenco", nil, nil, bSetup)[/b:1jr1bhkh] where bSetup is [code=fw:1jr1bhkh]<div class="fw" id="{CB}" style="font-family: monospace;">bSetUp   := < |oRep, Brw, n |<br />      <span style="color: #00C800;">if</span> n == <span style="color: #000000;">2</spa...
xbrowse required bug fixes !
Another bug fixed: [code=fw:1ckpxpw2]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">METHOD</span> End<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TXBrwColumn<br /><br />...<br /><br />&nbsp;...
xbrowse required bug fixes !
After testing the code that we have published here: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=15935">viewtopic.php?f=3&t=15935</a><!-- l --> we have detected some errors in Class TXBrowse that must be fixed: 1) Method End() has to be renamed as Destroy(). It was w...
xbrowse required bug fixes !
Hello Antonio, what version of xBrowse is affected ? Thanks in advance Otto
xbrowse required bug fixes !
Otto, The Method End(), that must be Destroy(), affects to all xbrowse versions. The PalBmpFree() may also affect to all xbrowse versions. The others two, can't say the exact version right now. Better look in your xbrowse.prg code for those sections. Thanks,
xbrowse required bug fixes !
Good <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
xbrowse required bug fixes !
Antonio, do you plan to release 9.06 before the month end ? (I'd prefer having the bugfixes already included in the standard lib rather than including another obj) Thanks, Davide
xbrowse required bug fixes !
Davide, We are working hard to deliver 9.06 before end of this month. But we can't promise it yet <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xbrowse reset incr.-seekstring on btn-action ?
Hello, I want to clear a xbrowse incr.-seekstring on button-action and go to browser-top, but it doesn't work : I can clear the seek but after that, it is not possible to seek again. Going to browser-top doesn't work. 1. incr. seek 2. change values 3. save 4. reset seek-string ( on save-button or using the extra butt...
xbrowse reset incr.-seekstring on btn-action ?
[code=fw:3tuqq86l]<div class="fw" id="{CB}" style="font-family: monospace;">WITH OBJECT oBrw<br />&nbsp; &nbsp;:<span style="color: #000000;">Seek</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">""</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;:<span style="color: #0...
xbrowse reset incr.-seekstring on btn-action ?
Mr.Rao, thank You very much for thr info. I found XBIncflt.prg in /samples and added buttons. It works like for the combos. [color=#0000FF:3h0oi73j][b:3h0oi73j]ACTION ( oBrw:Seek( "" ), oBrw:SetFocus() ) ;[/b:3h0oi73j][/color:3h0oi73j] [img:3h0oi73j]http&#58;//www&#46;pflegeplus&#46;com/IMAGES/Reset1&#46;jpg[/img:3...
xbrowse row colours
Dear community, I have tried to give a row another colour and it worked with this code. [b:139b7gpy]oBrw:bClrStd := { || If( (cust->resstatus = "###Cancelled" .and. cust->guarancode = " "), { CLR_WHITE, CLR_RED }, { CLR_BLACK,CLR_WHITE } ) } //@IA 2020030[/b:139b7gpy] How can I integrate another colour for another r...
xbrowse row colours
Iris, if the condition to set the colors is very complicated, I advise you to use a function that returns the corresponding color array [code=fw:4ze8vlxa]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">bClrStd</span> := <span style="color: #000000;">&#123;</span> || M...
xbrowse row colours
Thank you!
xbrowse row colours
I have just tried it, It worked perfectly, thank you, Cristobal!
xbrowse row colours
Dear Iris, another way is to define the codeblock like this: [quote:3swp7z9q] Extended literal code block. Syntax <| [<params,...>] | <programcode> > [/quote:3swp7z9q] [code=fw:3swp7z9q]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">bClrStd</span> := <||<br />&nbsp; ...
xbrowse settings to ini file - TO Antonio
I saw your xbrowse sample test ( testxbr4.prg) I like it and inserted on my customer window your menu to set style of xbrowse and set the background images. When I close the application it not save all sets . I wish to save all the sets on file ini to restore it when the user return on the customer window. Have you ...
xbrowse sin scrooll no entiendo como sacar el borde
hola. hice esto en el style del xbrowse utilizando peles: 0x50C00000 pero me hace un borde, yo necesito sacarle ese borde y que no aparezcan las barras de scrooll. no entiendo como son los estilos utilizando el pelles, donde hay info? gracias
xbrowse slow
Mr. Rao please help me, my xbrowse is slow on network. it contains only 12,000 registers, I note that is slow when I use : oBrw:lIncrFilter := .t. oBrw:lSeekWild := .t. oBrw:cFilterFld := "RUC" If I omitt these sentences, the movement into xbrowse is normal, but I want that xbrowse has search incremental I use CDX an...
xbrowse slow
Mr. Rao please help me, my xbrowse is slow on network. it contains only 12,000 registers, I note that is slow when I use : oBrw:lIncrFilter := .t. oBrw:lSeekWild := .t. oBrw:cFilterFld := "RUC" If I omitt these sentences, the movement into xbrowse is normal, but I want that xbrowse has search incremental I use CDX and...
xbrowse slow
1.Please check if you have an index tag on UPPER(RUC) 2.May I see the index keys for all tags?
xbrowse slow
Sorry to jump in. I don't think that my xbrowse is slow, but it seems in this post that how the index is build could have affect on speed. Therefore here my index routine : [code=fw:uq9ridfs]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Reindex<span style="co...
xbrowse slow
Marc Don't know if this will help, but I remember reading that the database pointer is stored in the index .. try to remove Master-> and just reference your fieldname .. As far as using Upper() .... I would go in to your table and replace all your primary keys with Replace all xxx with Upper( xxx ) .. try to keep yo...
xbrowse slow
Rick, [quote:zh94y56w]As far as using Upper() .... I would go in to your table and replace all your primary keys with Replace all xxx with Upper( xxx ) .. try to keep your index keys free of pointers and function calls.[/quote:zh94y56w] Doing that, will have not the best effect in using the data in the application. ...
xbrowse slow
[quote="Marc Venken":3mgvh609]Sorry to jump in. I don't think that my xbrowse is slow, but it seems in this post that how the index is build could have affect on speed. Therefore here my index routine : [code=fw:3mgvh609]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function...
xbrowse slow
[quote:18ef9b3x]Very wrong practice to use table name as alias in the index expression. After building your index try to open the table with a different alias like this: USE MASTER NEW ALIAS MST SHARED VIA "DBFCDX" SET ORDER TO TAG CODE You will get a runtime error complaining that the alias MASTER does not exist.[...
xbrowse slow
Dear Mr. Rao Now run perfect I had the index with Upper (may an insignificant thing costs a lot on network? ) Thanks
xbrowse slow
<!-- l --><a class="postlink-local" href="http://fivetechsupport.com/forums/viewtopic.php?f=3&t=33776">viewtopic.php?f=3&t=33776</a><!-- l -->
xbrowse slow
[quote:g0deb2fe]I had the index with Upper (may an insignificant thing costs a lot on network? ) [/quote:g0deb2fe] Please keep index on UPPER(fieldname) ONLY. That is the only way to seek any value. - Create indexes without alias names. Please follow my example - Using FW_CdxCreate( [fieldslist] ) helps create good i...
xbrowse slow
Mr Rao: [color=#0040FF:sea31pi0]Yesterday the xbrowse worked fast after I delete the function UPPER as you suggested, but Today the xbrowse returned to work slow. The program show for moments the message: Application not responding [/color:sea31pi0] [color=#FF0080:sea31pi0] I don't understand, What is wrong? [/color:s...
xbrowse slow
[quote:1z9q8tei] function BuildIndex() field CODE, NAAM, ........... INDEX ON UPPER( CODE ) TAG CODE INDEX ON UPPER( NAAM ) TAG NAAM ... ... [/quote:1z9q8tei] I see that you use : field CODE,NAAM, ..... before starting to index. Why is that ?
xbrowse slow
[quote:11zje8ru]I delete the function UPPER [/quote:11zje8ru] I never said not to use Upper. Actually we need Upper for character fields for proper searches. In my code above also I used Upper. Are you not using DBFCDX?
xbrowse slow
[quote="Marc Venken":37acr6ml][quote:37acr6ml] function BuildIndex() field CODE, NAAM, ........... INDEX ON UPPER( CODE ) TAG CODE INDEX ON UPPER( NAAM ) TAG NAAM ... ... [/quote:37acr6ml] I see that you use : field CODE,NAAM, ..... before starting to index. Why is that ?[/quote:37acr6ml] fiel...
xbrowse slow
Changed my index function with the FW_CdxCreate(cList) function. My browsing is clearly speeding up !! Thanks For the [color=#0000FF:2njuycd0]FW_CdxCreate()[/color:2njuycd0] function : The Forum and Google, the manuals also give no data on this function : There is a annoucment that the function is newly added [co...
xbrowse slow
[quote:1cldgnga]field is also is a declaration just like local, static. When we declare field CITY,AGE local nVar, cVar Then wherever we use CITY, AGE the compiler understands that it is a field name and when we use nvar and cvar it understands that it is a local variable. This declaration is helpful to use to cre...
xbrowse slow
I also wonder if the function : FW_CdxCreate() // creating all indexes on all fields will slow down a application because many tags are open? ( lets say until 20/30 tags ?) For my kind of programming, it would be good, because i always have the bad habbit of creating some extra index's before some program loops be...
xbrowse slow
You are already using locals in your program. That is right. You are using alias for all functions and references to the field. That is a good and healthy practice. Please continue the way you are doing. You may use field declaration and avoid aliasing ONLY in INDEX and FILTER expressions. In all other code please con...
xbrowse slow
FW_CdxCreate( [<cfieldlist>] ) Creating index on all fields is not necessary. This may result in very large cdx files and slow down on networks. Better you create index on fields that are necessary for seeks and filters. ( Filters are optimized when the fields involved are indexed) If you specify fieldlist, you do no...
xbrowse slow
Thank You very much for the very usefull info.
xbrowse slow
Mr. Rao I'm using CDX As I said the xbrowse is slow only when I use this code [code=fw:2n8asfkn]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp; &nbsp; oBrw:<span style="color: #000000;">lIncrFilter</span> := .t.<br />&nbsp; &nbsp; &nbsp; oBrw:<span style="color: #000000;">lSeekWild</span>...
xbrowse slow until more with ntx
Hello everyone, its someone else has already gone through this and can give me a hint, I have the following problem: uses dbf ntx FiveWin with 7.11 + 1.21 xHarbour. and have a product table approximately 30,000 records to a terminal access this table for others are more like slow xbrowse with listbox is to fast to mou...
xbrowse slow until more with ntx
Try WBrowse with LISTBOX command. WBrowse is faster than XBrowse.
xbrowse slow until more with ntx
I downloaded the sources to have begotten a lib version 17 forum here, but when you move the arrows up or down in the browser it is all black, and almost not to see the data, if you have a version that works with the FiveWin xHarbour 1.21 and 7.11 and can send me this email <!-- e --><a href="mailto:gilmarss2010@gmail....
xbrowse sort
Hallo, I can't put in order a table in XBROWSE oDbf := CREATEOBJECT( "ADODB.Recordset" ) cQuery := ( "SELECT .... oDbf:Open( cQuery , .... oDbf:MoveFirst() ... ... REDEFINE XBROWSE oBrw DATASOURCE odbf ; COLUMNS "CODICE", "DESCRIZIONE","UM", "SALDO", "ORDINI" ; COLSIZES 95, 330, 25, 80,70 ; HEADERS "Codice", "Descriz...
xbrowse sort
damianodec When you create your query .. add the Order By clause to your recordset [code=fw:l7crs9fy]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cQuery := <span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"SELECT .... Order by [Codice] DESC"</span> <span style="color: #00000...
xbrowse sort
Or this: [code=fw:2qvqfd0q]<div class="fw" id="{CB}" style="font-family: monospace;">cQuery := <span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"SELECT .... Order by [SALDO]"</span> <span style="color: #000000;">&#41;</span></div>[/code:2qvqfd0q]
xbrowse sort
Saldo is calculate Field: Select... T0.totd - t0.tota as SALDO, if I put ORDER BY SALDO I get error... Sent from lumia 720 Tapatalk
xbrowse sort
[code=fw:3t948d2t]<div class="fw" id="{CB}" style="font-family: monospace;">cQuery := <span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"SELECT .... Order by T0.totd - t0.tota DESC "</span> <span style="color: #000000;">&#41;</span></div>[/code:3t948d2t]
xbrowse sort
ok, and if I have this query whit subquery... Select fieldA as A, fieldB as B, (Select SUM(fieldC) from tableB) as fieldZ from tableA and I want order by fieldZ ?
xbrowse sort
I don't know if this will work, but try sorting the recordset after the query. This sorts the recordset after it is retrieved from the server. [code=fw:2sgwtrds]<div class="fw" id="{CB}" style="font-family: monospace;">oDbf:<span style="color: #000000;">CREATEOBJECT</span><span style="color: #000000;">&#40;</span><spa...
xbrowse sort
thanks mr James, very good!
xbrowse state - conservar estado xbrowse
Hola buenas tardes para todos... existe una función que nos guarda el estado de una ventana, su tamaño su posición, la pantalla en la que se esta mostrando. Para que cuando se inicie de nuevo conserve las propiedades. La usamos de la siguiente manera [code=fw:j7nzqm76]<div class="fw" id="{CB}" style="font-family: mono...
xbrowse state - conservar estado xbrowse
[quote="leandro":28kfp6az]Hola buenas tardes para todos... existe una función que nos guarda el estado de una ventana, su tamaño su posición, la pantalla en la que se esta mostrando. Para que cuando se inicie de nuevo conserve las propiedades. La usamos de la siguiente manera [code=fw:28kfp6az]<div class="fw" id="{CB}...
xbrowse state - conservar estado xbrowse
Amigo gracias por responder... Ya mismo intento y cualquier cosa comento.
xbrowse strange painting?
Dear friends, i just try the sample textxbrw.prg. When running the multisel feature or incremental search i have a strange painting of the browse. Here a picture how it looks like: [img:w0awgagj]http&#58;//www&#46;d-hoefner&#46;de/files/fw_xbrw&#46;gif[/img:w0awgagj] Is there an update or workaround to avoid this? ...
xbrowse strange painting?
I noticed the same problem. EMG
xbrowse strange painting?
Also in other circumstances the browse titles are missing Frank
xbrowse strange painting?
In metthod seek, try to remove the following line [code:34zffrbl] &#58;&#58;lRefreshOnlyData &#58;= &#46;T&#46; [/code:34zffrbl] appear 2 times.
xbrowse strange painting?
[quote="Biel EA6DD":sl517duj]In metthod seek, try to remove the following line [code:sl517duj] &#58;&#58;lRefreshOnlyData &#58;= &#46;T&#46; [/code:sl517duj] appear 2 times.[/quote:sl517duj] Thanks Biel, incremental search paints ok now. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happ...
xbrowse strange painting?
Detlef, Please comment all: // ::lRefreshOnlyData := .t. in METHOD Select( nOperation ) CLASS TXBrowse
xbrowse strange painting?
Antonio, now xBrowse is painting fine also with multiselect clause. Thanks a lot for your advice. Regards, Detlef
xbrowse strange painting?
Thanks a lot for your feedback <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xbrowse to csv
Estimados alguien abra hecho para xbrowse la exportacion a csv como el toexcel ya que he visto que el exportacion es mucho mas rapido que excel
xbrowse to csv
Estimados; Alguien le dio una solución a este tema? (de xBrowse con Arrays a CSV). Saludos Fernando Espinoza A.
xbrowse to csv
Hola no hubo respuesta si que la hice favor revisar y comentar [code=fw:5ynismeq]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; <span style="color: #00C800;">METHOD</span> SetoDbf<span style="color: #000000;">&#40;</span> oDbf, aCols, lAutoSort, lAutoCols, aRows <span style="color: #000000;">&#41;<...
xbrowse to csv
Estimado Patricio Gracias por compartir. Estoy en las pruebas; me sale error, porque me pide la función WinMain(). Estoy usando el xBrowse de la FWH1709 y xHarbour. Saludos Fernando Espinoza A.
xbrowse to csv
WndMain()
xbrowse to csv
Estimado Patrico, Mr. Rao Con sus aportes funciona bien; únicamente me tocó comentar estas tres líneas, que provocan un error. //If !Eval( bProgress, ++nInd, ::nLen ) // EXIT //Endif Saludos Fernando Espinoza A.
xbrowse to excel
Ciao Ho un problema con Xbrowse e la trasformazione in Excel dei campi numerici con virgola. Mi spiego meglio, se genero un file excel con campi numerici interi.... tutto ok Se invece il campo numerico ha dei decimali, quando genero il relativo campo excel, invece che la virgola mi esce il puntino e quindi non riesco...