topic
stringlengths
1
63
text
stringlengths
1
577k
xbrowse drag multiple cells
Hello I would like to select multiple cells with the cursor, drag them and drop at another location ? Has anyone done it with xbrowse ? Can you share a sample ? It is ok for me to drag and drop one cell, i have it working, Thanks for your help, Richard
xbrowse drag multiple cells
Me long expecting too! Maybe xbrowse should add a new data selected rows & cols, different to selected rows only. Regards! Shuming Wang
xbrowse e registros borrados
Olá, xbrowse no pinta correctamente la barra vertical se hay registros borrados. Hay alguma manera sem usar lo ! Deleted() en el indice?Gracias.
xbrowse e registros borrados
[quote="Wanderson":ui6tkr8q]Olá, xbrowse no pinta correctamente la barra vertical se hay registros borrados. Hay alguma manera sem usar lo ! Deleted() en el indice? Gracias.[/quote:ui6tkr8q]index on clave tag clave for !deleted()
xbrowse edit column
Hi, I have a array xbrowse, how i can turn a cell editable and process a function when finish edit and make total this column? Thanks in advance.
xbrowse edit column
Set oCol:nEditType := EDIT_GET. That makes the cell editable. If you are not using a very old version of FWH, retotalling is automatically done by XBrowse. When
xbrowse edit column
[quote="nageswaragunupudi":1m8v0sda]Set oCol:nEditType := EDIT_GET. That makes the cell editable. If you are not using a very old version of FWH, retotalling is automatically done by XBrowse. When[/quote:1m8v0sda] Thanks for the answer but is not column totals, other totals in gets with many expressions. I want to do...
xbrowse edit column
[code=fw:3kwep7ds]<div class="fw" id="{CB}" style="font-family: monospace;">oCol:<span style="color: #000000;">bOnChange</span> := <span style="color: #000000;">&#123;</span> |oCol, uOldValue| yourfunction<span style="color: #000000;">&#40;</span> oCol, uOldValue <span style="color: #000000;">&#41;</span> <span style="...
xbrowse edit column
[quote="nageswaragunupudi":1k5j0jtd][code=fw:1k5j0jtd]<div class="fw" id="{CB}" style="font-family: monospace;">oCol:<span style="color: #000000;">bOnChange</span> := <span style="color: #000000;">&#123;</span> |oCol, uOldValue| yourfunction<span style="color: #000000;">&#40;</span> oCol, uOldValue <span style="color: ...
xbrowse edit columns
Can not edit a column of a one row of xbrowse ? I explain you I have this xbrowse [img:2vwgch1v]https&#58;//s9&#46;postimg&#46;cc/jj80u0adb/image&#46;jpg[/img:2vwgch1v] I wish edit only for the first row only the columns I draw on green box it's possible ?
xbrowse edit columns
See oCol:nEditType := any value > 0 like EDIT_GET, EDIT_BUTTON, etc for the columns you want to edit. Retain oCol:nEditType := 0 for other columns. What else am I missing?
xbrowse edit columns
Sorry perhaps I not explain good Look the picture please for the [b:1fv4ko86]first record[/b:1fv4ko86] I wish edit only the columns 8 and 9 ( dates) and this record must not deleted from second record to all records I wish edit only the column 4 and 5 , 8 and 9 ( and can be deleted) thanks
xbrowse edit columns
For columns 4,5,8 and 9, set nEditType := EDIT_GET or EDIT_BUTTON or etc. For columns 8 and 9 also add [code=fw:el5275gs]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oCol:<span style="color: #000000;">bEditWhen</span> := <span style="color: #000000;">&#123;</span> || oBrw:<span style="color: #000000;...
xbrowse edit columns
WITH OBJECT oBrw:aCols[ 5] :AddBmpFile(".\bitmaps\sh_plus.bmp") :nBtnBmp := 1 :nwidth := 60 :nDataStrAlign := AL_CENTER :nHeadStrAlign := AL_CENTER :nEditType := EDIT_BUTTON :bEditBlock := { ||RES->QUANTITY++ } :lBtnTran...
xbrowse edit columns
I tried also with :nEditType := EDIT_BUTTON :bEditBlock := { |o|Msginfo("") } :bEditWhen := { || oBrw:nArrayAt<>1 } I wish when on first line of the browse thefinal user cannot edit the cell the user can edit only from second line
xbrowse edit columns
Please try :bEditWhen := { || oBrw:KeyNo == 1 }
xbrowse edit columns
This is possible in 18.04: [url=https&#58;//imageshack&#46;com/i/pm8xqYCDp:3uwvn6ju][img:3uwvn6ju]https&#58;//imagizer&#46;imageshack&#46;com/v2/xq90/922/8xqYCD&#46;png[/img:3uwvn6ju][/url:3uwvn6ju] For Gets also.
xbrowse edit columns
[quote="nageswaragunupudi":1n7w8la6]This is possible in 18.04: [url=https&#58;//imageshack&#46;com/i/pm8xqYCDp:1n7w8la6][img:1n7w8la6]https&#58;//imagizer&#46;imageshack&#46;com/v2/xq90/922/8xqYCD&#46;png[/img:1n7w8la6][/url:1n7w8la6] For Gets also.[/quote:1n7w8la6] [size=200:1n7w8la6]GOOD[/size:1n7w8la6] [size=200:...
xbrowse edit columns
Rao :bEditWhen := { || oBrw:KeyNo == 1 } I tried also with :bEditWhen := { || oBrw:KeyNo <>1 } it continue to process the editblock on first line
xbrowse edit columns
Rao if you try this test [code=fw:n6tj41b6]<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="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: ...
xbrowse edit columns
Now with these lines seem run ok [code=fw:23yhndch]<div class="fw" id="{CB}" style="font-family: monospace;"> WITH OBJECT oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span><span style="color: #000000;">&#93;</span><br />            :<span st...
xbrowse edit columns
[quote:47mkkfzn]is there a bug on bwhenedit codeblock ? [/quote:47mkkfzn] You are right. bEditWhen is not preventing button action of EDIT_BUTTON. This is now fixed in 18.04.
xbrowse edit columns
thanks
xbrowse edit columns
Saludos estoy necesitando poner un button en el xbrowse que me lleve a una consulta de movimientos del documento seleccionado todo funciona bien le he puesto una imagen al button pero cuando abandono la aplicación se me cuelga comento ese configuracion de la columna y termina normal. /* WITH OBJECT aBrw:aCols[ 1 ] ...
xbrowse edit columns
Friends, how to do this with 2 buttons + - REGARDS
xbrowse edit columns
hello
xbrowse edit columns
please search Rao's sample test from 18.04: [code=fw:zurte0da]<div class="fw" id="{CB}" style="font-family: monospace;">   <br />WITH OBJECT oBrowse:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span><span style="color: #000000;">&#93;</span><br...
xbrowse edit dbcombo
Hello, I am trying to get a dbcombo functional in this xbrowse sample by Mr. Nages The oRec:drvr displays fine ,but without any functional dbcombo. Don't know if I've chosen the proper form of dbcombo or have the syntax correct. Any help appreciated. Bruce [code=fw:2v732in1]<div class=...
xbrowse edit dbcombo
Please indicate version of FWH you are using
xbrowse edit dbcombo
1) Please substitute this [code=fw:6ymsvaci]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp; FIELDS oTruc:<span style="color: #000000;">TAG</span> &nbsp;, oTruc:<span style="color: #000000;">Que_dte</span>, oTruc:<span style="color: #000000;">Shp_dte</span>, oTruc:<span style="color: #000000;">o...
xbrowse edit dbcombo
FWH 14.11 Harbour 3.2.0dev ( r1406271520 ) bcc582 Bruce
xbrowse edit dbcombo
Mr. Nages, I made the changes as suggested ( fields to columns ), but that hasn't had any effect on the dbcombo displaying properly in the CustEditDlg function. Bruce
xbrowse edit dbcombo
I shall prepare and post a very similar sample for you. Please wait
xbrowse edit dbcombo
I do not have your DBFs. But customer.dbf and states.dbf in \fwh\samples folder are very similar to your example I prepared the sample using these two DBFs. If your FWH installation path is different, please change the path in the program [code=fw:1v66xov4]<div class="fw" id="{CB}" style="font-family: monospace;"><spa...
xbrowse edit dbcombo
Mr. Rao, thank You very much. Your sample is great and very useful for my new project. best regards Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
xbrowse edit dbcombo
Mr. Rao, adding some logic for practical uses to Your sample : I explain There is a CUSTOMER.dbf and PRODUCTS.dbf ( instead of STATE.dbf ) CUSTOMER.dbf includes 4 new fields [color=#0000FF:2kodkl8i]PRODUCT VALUE QUANTUM AMOUNT[/color:2kodkl8i] 1.) The user selects a product with the combo 2.) Selecting a product, ...
xbrowse edit dbcombo
Mr. Nages, The dbcombo sample code you supplied, compiles and runs fine. I will implement it in my code and persue. ------- Using Tdatabase() is new to me and the burning question is, what setup is needed to use your example in a multiuser environment. ( lShared, lBuffer ? ). Is there a sample somewhere, I could ...
xbrowse edit dbcombo
[quote="brewster":3n6nci3l]Mr. Nages, The dbcombo sample code you supplied, compiles and runs fine. I will implement it in my code and persue. ------- Using Tdatabase() is new to me and the burning question is, what setup is needed to use your example in a multiuser environment. ( lShared, lBuffer ? ). Is there a...
xbrowse edit dbcombo
Mr. Nages, >>>Why do u want to use TDataBase? Your original posted sample used Tdatabase and I thought I'd try and become familiar with it. I am relatively new to FWH. I have converted all(most) of my Clipper programs to FWH and want to make them all into multiuser applications. I'm familiar with record /file lo...
xbrowse edit message (solved)
I need to edit a column under conditions my code oBrw:aCols[5]:nEditType := EDIT_GET oBrw:aCols[5]:bOnPostEdit := {|o, v, n| iif( n != VK_ESCAPE, (IF(! DET->SDETAIL,EDITLU(v,OBRW,@TABPARAM,,LCOPY,LMODE,TABSEC,@TABTOT), ) ), ) } oBrw:aCols[5]:beditwhen := {|o, v, n| IF(DET->SDETAIL,.F. , .T.) }...
xbrowse ejemplo basico soy principiante
Saludos comunidad: Requiero de su ayuda, para cnfigurar mi xbrowse como lo hacia en clipper, viendo ejemplo ya hize que mi DBF se vea en el xbrowse pero ahora quiero filtrar mi DBFS que tiene un campo llamado TIPO_DOC esta campo tiene como valores FA = factura, DV = Devolucion, TA = Talon y X mas Quiero que mi xbrowse...
xbrowse ejemplo basico soy principiante
Si estás usando índices CDX sería algo tan sencillo como esto para establecer el rango que quieres: // VENTA->(ordscope(TOPSCOPE, "FA")) VENTA->(ordscope(BOTTOMSCOPE, "FA")) y para ihabilitarlo: VENTA->(ordscope(TOPSCOPE, NIL)) VENTA->(ordscope(BOTTOMSCOPE, NIL)) //
xbrowse ejemplo basico soy principiante
Estoy usando Indices NTX por el momento. pero deja indago como crear los CDX para hacer la prueba si es mas fail con CDX voy a tener que migrar todos mis Indices <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> Gracias <!-- s:) --><img src="{SMILIES_PATH}/icon_smil...
xbrowse ejemplo basico soy principiante
[code=fw:tcl7lufp]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#xcommand @ <nRow>, <nCol> <span style="color: #000000;">&#91;</span> COLUMN <span style="color: #000000;">&#93;</span> <span style="color: #0000ff;">XBROWSE</span>  <oBrw>  ;<br />               ...<br />               <span style="color...
xbrowse ejemplo basico soy principiante
:0 bien y en este Caso puedo seguir usando los indices NTX sin ningun problema y me jala en el browse solo lo que Tenga FA y tengo que poner mi DBF en el puntero de Inicio del FA y listo.
xbrowse en fwppc
El xbrowse aun no se encuentra implementado en fwppc ? Me da unos errores de enlazado. En caso de no estar implementado como puedo hacer un freeze con wbrowse y como puedo meter una imagen en una columna ? Saludos.
xbrowse en fwppc
Simón, No, aún no está disponible. Puedes mostrar un bitmap en el browse como se hace en el ejemplo FWPPC\samples\tutor10.prg De momento no puedes hacer freeze. Habría que buscar en estos foros por freeze y ver si se a publicado algo de como hacerlo con un TWBrowse.
xbrowse en fwppc
Gracias.
xbrowse error
Que tal, escribo este post, como novato de este excelente lenguaje de desarrollo estoy practicando con el x browse con el siguiente codigo: [code:5xse0xhu] DBUSEAREA&#40;&#46;T&#46;, , "DEMO", "DEMO" ,&#46;T&#46;, &#46;F&#46;&#41; SET INDEX TO "DEMO" ORDSETFOCUS&#40;"ID"&#41; DBGOTOP&#40;&#41; DE...
xbrowse error
Estás usando Harbour ó xHarbour ? Que versión de FWH ?
xbrowse error
uso Harbour y la versión de FWH es la de April 7.04 2007 build
xbrowse error
Gustavo, Has modificado alguna clase de FWH ? Por favor construye samples\testxbrw.prg y prueba si te da el mismo error. Aqui funciona bien
xbrowse error
No he modificado clase alguna de FWH, y este ejemplo si corre correctamente, voy a copiar y pasar a la aplicacion que estoy haciendo. a ver que pasa muchisimas gracias, una cosa mas es un excelente trabajo el tuyo, felicidades y lo mejor de los mejor en el futuro.
xbrowse error fwh 8.08
I get the following error with xbrowse fwh 8.08Any idea ? same code working ok in fwh 8.07thanks for the help, Error description: Error BASE/1004 Class: 'NIL' has no exported method: EVAL Args: [ 1] = U Stack Calls=========== Called from: => EVAL(0) Called from: C:\CBATI32\xbrowse.PRG => (b)TXBROWSE:TX...
xbrowse error fwh 8.08
Richard,What RDD are you using ?It fails as oBrw:bKeyCount is nil. It should be oBrw:bKeyCount := {|| ( oBrw:cAlias )->( OrdKeyCount() ) }Please try to define it yourself and try it again, thanks
xbrowse error fwh 8.08
AntonioI am using dbfcdx and the same code has been working for some time, works ok in fwh 08.07oBrw:bKeyCount is nil it should not defining it does not fix the problem,here is the code belowRegardsRichard[code:14yd9u16] IF OBRWPLA == NIL INITRANS13&#40;@TRANS&#41; @ wndpmain&#58;nHeight - 90,05 BUTTONBMP TRANS&...
xbrowse error fwh 8.08
Richard,Please try it again setting it after CreateFromCode() call: oBrwPLA:CreateFromCODE() oBrwPLA:bKeyCount := {|| ( oBrwPLA:cAlias )->( OrdKeyCount() ) } // this has been added
xbrowse error fwh 8.08
Anotnio,it does not help as the error occurs from createfromcode()this is the error.log regardsRichard Error description: Error BASE/1004 Class: 'NIL' has no exported method: EVAL Args: [ 1] = U Stack Calls=========== Called from: => EVAL(0) Called from: C:\CBATI32\xbrowse.PRG => (b)TXBROWSE:TXBROWSE(28...
xbrowse error fwh 8.08
Richard,Yes, you are right. I didn't noticed that it was getting called from CreateFromCode().We are working to provide you a solution asap, thanks
xbrowse error fwh 8.08
Richard,Please call oBrw:SetRdd() before calling oBrw:CreateFromCode(): oBrw:SetRdd() oBrw:CreateFromCode()without it, we get your same error. We are doing changes and enhancements in the Class TXBrowse and some required changes may be needed. We apologize for these inconveniencies.Here this example is working fine...
xbrowse error fwh 8.08
Richard,In order to not modify your source code, you can add this code to Class TXBrowse in lines 674 (Method Initiate()):[code:2ql9dva2] endif // existing endif for&#58; if Empty&#40; &#58;&#58;nDataType &#41; &#46;or&#46; Empty&#40; &#58;&#58;aCols &#41; if &#40; ! Empty&#40; &#58;&#58;cAlias &#41; &#41; &#46;...
xbrowse error fwh 8.08
After compiling with 8-08 iI have this error:Regards,OttoApplication=========== Path and name: C:\xWINHOTEL\xRECHNUNG.exe (32 bits) Size: 2,684,928 bytes Time from start: 0 hours 0 mins 3 secs Error occurred at: 28.08.2008, 12:41:58 Error description: Error BASE/1004 Class: 'NIL' has no exported method: EVA...
xbrowse error fwh 8.08
Richard, Otto,Please download a new FWH 8.08 build that fixes this bug. It will be available in just some minutes (we are uploading it now).We apologize for these inconveniencies
xbrowse error fwh 8.08
AntonioIt is working ok now <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Thank youRegardsRichard
xbrowse error fwh 8.08
Richard,Many thanks for the feedback <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xbrowse error fwh 8.08
AntonioWhen a dbf is filtered the method refresh is not working properly (error message) Error occurred at: 03/09/2008, 09:13:14 Error description: Error BASE/1003 Variable does not exist: DTYPEStack Calls=========== Called from: C:\CBATI32\xbrowse.PRG => TXBROWSE:DELREPOS(874) Called from: C:\CBATI32\xbrowse.P...
xbrowse error fwh 8.08
XBrowse nowhere uses a variable DTYPE.Probably it is a variable in the filter in the application program, which is out of scope. Is it a local or static variable in the application program used in the filter experession?It appears that XBrowse assumes that the filter set by the programmer as retrieved from DbSetfilter...
xbrowse error wih lMergeVert
Hi Guys, I have a xbrowse built over a mysql rowset and using lMergeVert. It´s working fine. Always I try to do an oRs:Requery() to update data. Is Happening the error bellow: [code=fw:39jfn5wk]<div class="fw" id="{CB}" style="font-family: monospace;">Compiler version: <span style="color: #000000;">Harbour</span> ...
xbrowse error wih lMergeVert
Wondering how can I test this program at my end.
xbrowse features
I can group the data of a stored archive into an xbrowse by pressing a button and do it online (from the end user) for example by taking the customer.dbf archive I could group the archive by state, city, and show partial totals
xbrowse features
I think I posted a few samples like this. Please search
xbrowse features
ok Now I remember there was somthing
xbrowse features
Nages, I found it ( your sample) but I wish it on line from symply to tree and viceversa
xbrowse features
I found this but it init from tree I wish show the customers normally and then if if the final user press a button make the group the final user can select the type of groups for eah field he wants ( or the field I can set as selection) [code=fw:34ys361s]<div class="fw" id="{CB}" style="font-family: monospace;...
xbrowse footer y mysql
Por favor (ya lei los ejeplos de la carpeta samples) podrian decirme como se hace sensillamente para mostrar en un xbrowse que la ultima columna sea sumada y me muestre "el total de deuda" que tiene? porque la verdad estoy dando tantas vueltas que ya ni se que es lo que hay q hacer, solo copio y pego y no entiendo el...
xbrowse footer y mysql
goosfancito Intenta asi: [code=fw:23ltn5b7]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oQry:=oServer:<span style="color: #000000;">Query</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"SELECT * SUM( DEBE ) TotalDebe FROM TABLA"</span><span style="color: #000000;">&#41...
xbrowse footer y mysql
Adhemar... Este query está mal: [code=fw:2tlpi8l9]<div class="fw" id="{CB}" style="font-family: monospace;">oQry:=oServer:<span style="color: #000000;">Query</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"SELECT * SUM( DEBE ) TotalDebe FROM TABLA"</span><span style="color: #000000;">&#4...
xbrowse footer y mysql
les comento. el importe que esta en la columna que necesito acumular se calcula por dos campos mas y el iva y ganancia... por lo que apunta a una funcion donde lee una tabla y hace el calculo. [code=fw:1aojzfdm]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">function</span...
xbrowse footer y mysql
goosfancito Tendrías que recorrer tu tabla e ir cargándola a un Array luego tu array lo mostras en el browse. Saludos, Adhemar
xbrowse footer y mysql
[quote="jrestojeda":vy7vhp2q]Adhemar... Este query está mal: [code=fw:vy7vhp2q]<div class="fw" id="{CB}" style="font-family: monospace;">oQry:=oServer:<span style="color: #000000;">Query</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"SELECT * SUM( DEBE ) TotalDebe FROM TABLA"</span><spa...
xbrowse footer y mysql
Gracias. Ningun campo que muestro en el xbrowse es editable. solo muestran info. he visto que todos los que usan maketotals hacen sobre un campo editable.
xbrowse footer y mysql
[quote="Daniel Garcia-Gil":4v1cwuj6][quote="jrestojeda":4v1cwuj6]Adhemar... Este query está mal: [code=fw:4v1cwuj6]<div class="fw" id="{CB}" style="font-family: monospace;">oQry:=oServer:<span style="color: #000000;">Query</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"SELECT * SUM( DEB...
xbrowse footer y mysql
[quote="goosfancito":1jfmut28]Gracias. Ningun campo que muestro en el xbrowse es editable. solo muestran info. he visto que todos los que usan maketotals hacen sobre un campo editable.[/quote:1jfmut28] En el ejemplo no he colocado ninguna columna editable
xbrowse footer y mysql
[quote="Daniel Garcia-Gil":2hv3hu9p][quote="goosfancito":2hv3hu9p]Gracias. Ningun campo que muestro en el xbrowse es editable. solo muestran info. he visto que todos los que usan maketotals hacen sobre un campo editable.[/quote:2hv3hu9p] En el ejemplo no he colocado ninguna columna editable[/quote:2hv3hu9p] Estas en...
xbrowse freeze and goto column
To All I am trying to migrate all my listboxes to xbrowse .. specifically 2 commands in Hernans txbrowse .. I need to go to a specific column on dialog init .. oBrow:GoToCol(nCOL ) [code=fw:nohq5e9r]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">ACTIVATE</span> <span s...
xbrowse freeze and goto column
XBrowse: oBrw:nFreeze := 5 // same syntax in xbrowse too Instead of oBrw:GotoCol, XBrowse has a more powerful method: oBrw:SetPos( nRow, nCol, [ lPixel DEFAULT .f. ] ) You can say oBrw:SetPos( 1, 6 ) to position cursor in the 1st row 6th column.
xbrowse freeze and goto column
Rao Good to hear back from an old friend .. I have been out of the FWH community for some time and have decided to do some contracting work and perhaps market many of my applications I have built over the many years .. Human Resources, Time and reporting, Inventory, Sales and route mgmt, Accounts receivable\payable...
xbrowse function toCalc
hi, I have this xbrowse: [url=https&#58;//imgur&#46;com/APp21O5:1zxi2e6i][img:1zxi2e6i]http&#58;//i&#46;imgur&#46;com/APp21O5&#46;jpg[/img:1zxi2e6i][/url:1zxi2e6i] I try to export in Excel(obrw:toexcel) and OpenOffice (oBrw:tcalc()). in Excel it's ok: [url=https&#58;//imgur&#46;com/sOmjG0B:1zxi2e6i][img:1zxi2e6i]http&...
xbrowse function toCalc
I tested the following code and found that I am getting the right result in Calc [code=fw:1onz5079]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><span style="color: #B900B9;">//------------------------------...
xbrowse function toCalc
thank you anserkk, I'll try your example
xbrowse fwh2006 sqlrdd erro
segue o erro [img:17kmfbkh]https&#58;//uploaddeimagens&#46;com&#46;br/images/002/772/739/original/WhatsApp_Image_2020-07-15_at_20&#46;11&#46;50&#46;jpeg?1594855645[/img:17kmfbkh] [code=fw:17kmfbkh]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">METHOD</span> SQLRDD_SaveStat...
xbrowse fwh2006 sqlrdd erro
Is the function OrdDescend() not supported by SQLRDD ?
xbrowse fwh2006 sqlrdd erro
Intente con: [code=fw:ika9507m]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />EXTERNAL DESCEND<br /><br />tubanco-><span style="color: #000000;">&#40;</span> ORDDESCEND<span style="color: #000000;">&#40;</span> , , .T.<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;...
xbrowse fwh2006 sqlrdd erro
I haven't detected the problem so far. Yes, SQLRDD supports OrdDescend() Anyway, without a self-contained example it is impossible to debug.
xbrowse fwh2006 sqlrdd erro
OrdDescend() does not require the EXTERNAL DESCEND
xbrowse fwh2006 sqlrdd erro
[quote="MOISES":nkk3tccu]I haven't detected the problem so far. Yes, SQLRDD supports OrdDescend() Anyway, without a self-contained example it is impossible to debug.[/quote:nkk3tccu] In our tests, OrdDescend() is working well with SQLRDD. Can some body explain to me the error in English? What does the error say?
xbrowse fwh2006 sqlrdd erro
[url:nu8544c4]http&#58;//www&#46;pctoledo&#46;com&#46;br/forum/download/file&#46;php?id=383&sid=5325ef2eb76c463d6c3d9dd09229718c[/url:nu8544c4]
xbrowse fwh2006 sqlrdd erro
Workarea not in use EMG
xbrowse fwh2006 sqlrdd erro
[quote="Enrico Maria Giordano":7oy0zc37]Workarea not in use EMG[/quote:7oy0zc37] Thank you very much. That means the application program closed the dbf, even before xbrowse is destroyed. So, when the xbrowse got focus, the method KeyCount() is executed and the alias is not in use anymore. Mr. Sistem Can you please ...
xbrowse fwh2006 sqlrdd erro
fiz um video mostrado o erro. (acho que acontece o erro quando se tem um xbrowse aberto e abre outro e fechando em seguinda... não sei explicar, o video explica) a correção não trabalha bem. trava o xbrowse <!-- m --><a class="postlink" href="https://youtu.be/aDBEQd3Z53Y">https://youtu.be/aDBEQd3Z53Y</a><!-- m -->