topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
xBrowse - how to update | Hello Otto.
I hope this is what you're looking for
[img:2fl3u357]http://www.sitasoft.com/fivewin/bitmap/on.bmp[/img:2fl3u357] on.bmp
[img:2fl3u357]http://www.sitasoft.com/fivewin/bitmap/off.bmp[/img:2fl3u357] off.bmp
[code=fw:2fl3u357]<div class="fw" id="{CB}" style="font-family: mono... |
xBrowse - how to update | Hello Daniel,
thank you so much. Now it is all working.
Best regards,
Otto |
xBrowse - incremental search | If I search and the find position is not on the first page I lose the header and the row pointer.
[img:39zcjw0q]http://www.atzwanger.com/fw/xbrw4.jpg[/img:39zcjw0q]
[img:39zcjw0q]http://www.atzwanger.com/fw/xbrw3.jpg[/img:39zcjw0q] |
xBrowse - incremental search | Search the string ::lRefreshOnlyData := .T. (2 times) in the method Seek of txBrowse, coment it. |
xBrowse - incremental search | Thank you.
I have verion 07.11 and I can't find lRefreshOnlyData 2 times in the methode.
Regards,
Otto
METHOD Seek( cSeek ) CLASS TXBrowse
local uBook, uSeek
local nFor, nRows
local lRefresh
if ::bSeek == nil
return nil
endif
If cSeek == nil
if !Empty(::cSeek)
::cSeek := ""
... |
xBrowse - incremental search | Otto,
Use this code:
[code:1t4bnngz]
METHOD Seek( cSeek ) CLASS TXBrowse
local uBook, uSeek
local nFor, nRows
local lRefresh
if ::bSeek == nil
return nil
endif
If cSeek == nil
if ! Empty( ::cSeek )
::cSeek := ""
If ::... |
xBrowse - incremental search | [quote="Otto":4vz3byfx]Thank you.
I have verion 07.11 and I can't find lRefreshOnlyData 2 times in the methode.
Regards,
Otto
METHOD Seek( cSeek ) CLASS TXBrowse
local uBook, uSeek
local nFor, nRows
local lRefresh
if ::bSeek == nil
return nil
endif
If cSeek == nil
if !Empty(::cSeek)
... |
xBrowse - incremental search | Antonio, thank you this code works.
Regards,
Otto |
xBrowse - lCloseArea | I changed in testmdi8.prg
listbox to xbrowser.
In the original prg there is a method-call lCloseArea.
How can I do that with xBrowser or do I have to write my own function?
Thanks in advance
Otto |
xBrowse - lFastEdit (not respected by browse) | Any key press should trigger edit of a cell only when oBrw:lFastEdit is set to .T.. When lFastEdit is set to false, only pressing Enter key or Double Click should invoke the edit.
Presently xBrowse ignores lFastEdit data and triggers edit on any keypress.
Also only alphanumeric keys only trigger edit. For numeric colu... |
xBrowse - lFastEdit (not respected by browse) | > ::lFastEdit ... cKey == '-'
Added. Thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
xBrowse - lUseBtnWidthEditOfCol (NEW) | Hello, Mr. Rao / Antonio,
In some cases I have to increase the width of the button size of the GET. However, when editing, the button disappears. I made this change in class xbrowse, evaluate the interest in putting in the next versions of fivewin.
oBrowse:aCols[1]:nBtnWidth := 30
oBrowse:aCols[1]:nWidth ... |
xBrowse - lUseBtnWidthEditOfCol (NEW) | [quote:2y8866cs]However, when editing, the button disappears.[/quote:2y8866cs]
Thanks for pointing out the issue. We notice the problem.
We shall resolve this issue, without even adding new DATA.
You can expect the modification in FWH18.01 |
xBrowse - lUseBtnWidthEditOfCol (NEW) | Yes, thanks |
xBrowse - mensagem na MSGBAR (resolvido) | Amigos, com a TWBROWSE eu utilizava:
obRW:bUpdateBuffer:= {|| UpdateBuffer( oWnd:oMsgBar, cDefaultMsg, oBRW:cBuffer ) }
Para mostrar o conteudo do buffer de pesquisa na MSGBAR, mais no xbrowse como posso obter o mesmo resultado?
Muito obrigado
SGS |
xBrowse - mensagem na MSGBAR (resolvido) | resolvido assim:
obRRW:bChange := {|o| UpdateBuffer( oWnd:oMsgBar, cDefaultMsg, cvaltochar( o:cSeek ) ) }
obrigado Rossine |
xBrowse - multiselect on cells | Is this possible to create browser (xBrowse) with cell multiselect like on picture below?[img:3loiaou9]http://www.frank.pl/fivewin/au3000browser.jpg[/img:3loiaou9]I want to select few cells and highlight they (on left mouse click).Highlited cells (active laboratory test for me) I want to send to another... |
xBrowse - multiselect on cells | I've found an answerexample source code belowarrays:xTABTMP - array to showxTMPCOLORS - array for define colors--->part of code:For XXX:=1 To Len(xTABTMP) // array for cell colors AADD(aTMPCOLORS,{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0})NextoBRWLLPOD := TXBrowse():New( oDLGLLPOD )oBRWLLPOD :SetArray( xTABTMP, .T... |
xBrowse - numerical pad on keyboard | the numerical pad returns if you press 1 - > 97 which is the ASC value for the a .
Could someone please help on that.
Regards,
Otto |
xBrowse - numerical pad on keyboard | Otto:
You don't have to use the ASCII code for the keypad keys or the function keys.
You have to use the "Virtual Key" value provided in the VKEY.CH (linked automatically with Fivewin.ch).
In VKEY.CH you will find the value for the numeric key pad.
Greetings from Argentina |
xBrowse - numerical pad on keyboard | Hello Rene,
are you on holidays in Argentina or working?
Do you have a code sample how to use “virtual key”?
Why does xBowse return other values than wbrowse.
As far as I understand both inherit from TControl and the method keydown is
the same in xBrowse than in wbrowse.
Regards,
Otto |
xBrowse - numerical pad on keyboard | Otto,
If you do oXBrowse:bKeyDown = { | nKey | MsgInfo( nKey ) } and press 1 on the numeric keypad, then you get 97 which it is from vkey.ch:
#define VK_NUMPAD1 97 |
xBrowse - numerical pad on keyboard | THank you, Antonio,
Now I understand. For the small a do I have to check the “Cap look” state?
----------------------------------
But I don’t understand why these to browsers have different values.
Method keydown filters out some keys and passes if there is no hit the value
to:
return Super:KeyDown( nKe... |
xBrowse - numerical pad on keyboard | Otto,
>
return Super:KeyDown( nKey, nFlags )
which I think is the attached window?
>
It is not the attached window. Its the Method KeyDown() from its parent Class TControl. |
xBrowse - oBrw:nMarqueeStyle | Hello,
Today I tested the different MARQSTYLE styles.
Best regards
Otto
[b:2w5osnqj]xBrowse.ch[/b:2w5osnqj]
#define MARQSTYLE_NOMARQUEE 0
#define MARQSTYLE_DOTEDCELL 1
#define MARQSTYLE_SOLIDCELL 2
#define MARQSTYLE_HIGHLCELL 3
#define MARQSTYLE_HIGHLROWRC 4
#define MARQSTYLE_HIGHLROW 5
#define MARQSTYLE_H... |
xBrowse - posicionar en fila específica | [code=fw:1tlmlvyq]<div class="fw" id="{CB}" style="font-family: monospace;">soBrw:<span style="color: #000000;">nRowSel</span>:=nYourRequiredRowPositonNo</div>[/code:1tlmlvyq]
Regards
[b:1tlmlvyq]Anser[/b:1tlmlvyq] |
xBrowse - posicionar en fila específica | Estimados;
como le digo que no se posicione en la primer fila del browse, sino en una fila específica.
Estoy editando un archivo de texto
[code=fw:2x2q3uaq]<div class="fw" id="{CB}" style="font-family: monospace;">@ <span style="color: #000000;">0</span>,nCol <span style="color: #0000ff;">XBROWSE</span> soBrw COLUMNS <... |
xBrowse - posicionar en fila específica | Mario intenta asi:
[code=fw:27zgybh1]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> soBrw:<span style="color: #000000;">bStart</span>:=<span style="color: #000000;">{</span> || soBrw:<span style="color: #000000;">Skip</span><span style="color: #000000;">(</span>nLineas<span style="color... |
xBrowse - posicionar en fila específica | Ademar, gracias
Anser, thanks
I write in spanish because my english is so poor
Usando la propuesta de Ademar:
[code=fw:69xu1il9]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #B900B9;">// Vista del Histórico</span><br /> @ <span style="color: #000000;">0</span>,nCol <span style="col... |
xBrowse - posicionar en fila específica | [quote="MarioG":3tscff74]Aquí si muevo el puntero por fuera de la ventana, entonces se redibuja y el puntero pasa a la primer fila
Y si me muevo con las teclas de flechas, tambien se desordena el repitando repitiendo la primer fila
[/quote:3tscff74]
Please try this sample.
[code=fw:3tscff74]<div class="fw" id="{CB}" ... |
xBrowse - posicionar en fila específica | Anser; thanks!
Is the solution
regards |
xBrowse - scroll horizontal | Buenas tardes,
Estoy usando la xbrowse (antes hacía esto con la TWBrowse de HC).
La cuestión es que al mover el mouse wheel sobre el listbox, el listado se mueve verticalmente pero al mover al mouse wheel sobre la barra de scroll horizontal, el listado NO SE MUEVE HORIZONTALMENTE como sí lo hace con la TWBrowse de HC... |
xBrowse - scroll horizontal | Buen día,
¿Alguna idea?
Gracias.
Rolando <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
xBrowse - sobre uso de WITH OBJECT oBrw:TextoColumna | Gente:
En mi forma de ver, trabajar con WITH OBJECT ... me resulta muy prolijo y claro al momento de revisar codigo.
Aunque me encuentro con este pequeño problema; si defino pro ejemplo:
@ 0,0 XBROWSE oBrw ;
COLUMNS "State", "City", "First", "Married", "HireDate", "Age", [b:39216oh6]"Salario Mensual"[/b:3... |
xBrowse - sobre uso de WITH OBJECT oBrw:TextoColumna | Hola Mario,
compartimos el gusto por el uso del With Object. El problema es que al usar comandos nunca declarás ningun objeto de forma que lo puedas referenciar directamente. Fijate como estan los comandos GET que te permiten incluir el objeto del control, con lo cual despues uno lo puede manipular. En el caso de las ... |
xBrowse - sobre uso de WITH OBJECT oBrw:TextoColumna | Gracias Carlos
Encontré, en los samples, columnas referenciadas por si titulo y me resultó muy claro, como dije, a la hora de ubicar para una corrección o, pasado el tiempo, para hacer algún tipo de cambio.
Obviamente que rapidamente choque con las palabras acentuadas o, como expresé palabras compuestas.
Sin dudas que... |
xBrowse - tooltip sobre botón EDIT_GET_BUTTON | Buenas tardes,
Uso en la xbrowse el modo EDIT_GET_BUTTON y me interesa que al pasar el mouse sobre el botón dentro de la celda, se muestre un tooltip pero no logro hacerlo.
¿Alguien sabe como puedo implementarlo?.
Gracias.
Rolando <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /... |
xBrowse - tooltip sobre botón EDIT_GET_BUTTON | ACTIVATE DIALOG oDlg ON INIT ( oBrw:aCols[ n ]:oBtnElip:cToolTip := <your tool tip> ) |
xBrowse - tooltip sobre botón EDIT_GET_BUTTON | Muchas gracias,
Funciona perfecto.
Saludos.
Rolando <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
xBrowse - tooltip sobre botón EDIT_GET_BUTTON | Gracias por el tips, muy beneficioso e informativo, saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> |
xBrowse - twbrowse de Hernan | Amigos:
Alguien sabe si es compatible el xBrowse con el browse de HDC
Como hago para seleccionar varios registros que no estan seguidos
en un xBrowse.
Muchas gracias
Ruben Fernandez |
xBrowse - una mejora a los encabezados | Hola a Todos.
Tengo una sugerencia para los "maestros", si es posible o como se puede hacer para cambiar el triangulito de los encabezados ( header ) para ordenar los datos de una columan del xbrowse.
Lo que sucede es que muchos usuarios son cortos de vista, y el triangulo no lo ven, es muy pequeño y de color simila... |
xBrowse - una mejora a los encabezados | Hola Juan,
puedes ponerle el BMP que tu desees en la cabecera, usando uno de los siguientes metodos AddResource, AddBmpFile o AddBmpHandle. |
xBrowse - una mejora a los encabezados | Gracias Biel por responder, lo voy a estudiar, para ver si es lo que necesito.
Yo deseo que el triangulito cambie por un bmp , y sea el mismo para todas las columnas.
Si puedo hacerlo, les cuento.
Saludos, |
xBrowse - update | Hello Daniel,
would you be so kind to show me how to update the xbrowse in my special case.
I select some rows and press the button to start the function: Backuploeschen(oBrw)
But I don’t find an easy way to update the xbrowse. The code below is working but a 2. array seems a little time-consuming.
[quote:22rs7e... |
xBrowse -> Footers Calculo de totales de esa columna?? | Amigos:
Disculpen otra vez la lata con xBrowse...
necesito saber como calculo el total de cada columna de un xBrowse
para colocarla en los footers.
Muchas gracias.
Ruben Fernandez. |
xBrowse -> Footers Calculo de totales de esa columna?? | En este listbox, pongo los nombres de los conductores, la suma de los importes mensuales en cada columna, y en los footers, los totales por mes.
A ver si te sirve
[code:25tsp6m4] @ 30,0 LISTBOX oLbx FIELDS (aAlias[26])->Codigo,;
(aAlias[26])->Nombre,;
... |
xBrowse -> Footers Calculo de totales de esa columna?? | Gracias Jose Luis...
Pero... lo quiero hacer con xbrowse.
Saludos
Ruben Fernandez. |
xBrowse -> Footers Calculo de totales de esa columna?? | Con xBrowse, cFooter es un valor estatico, al igual que cHeader.
Yo añadi un data a la clase TXBrwColumn, el data bStrFooter, que contiene un codeblock que nos debe retornar lo que queremos visualizar en el pie de la columna.
Hay que modificar el metodo PaintFooter, y en la linea donde asigna valor a cFooter cambiarl... |
xBrowse -> Footers Calculo de totales de esa columna?? | Gracias Biel...
Quedo trabajando en ello.
Saludos
Ruben Fernandez. |
xBrowse -> Footers Calculo de totales de esa columna?? | Buenisimo, se podrá implementar en la clase original de FWH? asi no tenemos que modificarla en cada actualizacion.
Gracias |
xBrowse -> Footers Calculo de totales de esa columna?? | Contento de que os haya servido.
Como todos mis aportes al foro, esta a disposicón de Antonio para ser incluido en la clase original. |
xBrowse -> Footers Calculo de totales de esa columna?? | El tema es que usando una ventana child, los footers quedan muy abajo y no se ven. Alguna idea de como subirlos? |
xBrowse -> Footers Calculo de totales de esa columna?? | Ejemplo en la segunda ventana que está debajo:
Los footers estàn, pero no se ven...
[img:hbhefmoi]http://img155.imageshack.us/img155/9377/schermatawinprogresskc8.jpg[/img:hbhefmoi]
By [url=http://profile.imageshack.us/user/pymsoft:hbhefmoi]pymsoft[/url:hbhefmoi] at 2007-10-15 |
xBrowse -> Footers Calculo de totales de esa columna?? | Hola Pedro,
No he podido revisar el codigo fuente, me pillas que me estoy yendo de vacaciones unos dias a Barcelona. De todas formas, los footer, cuando hay valor en ellos, siempre debieran estar visibles.
[url=http://imageshack.us:330d9i7n][img:330d9i7n]http://img80.imageshack.us/img80/8931/screenl... |
xBrowse -> Footers Calculo de totales de esa columna?? | Gracias por tu tiempo, veo que a ti te funciona, se ve que hago algo mal.
Saludos y buenas vacaciones. |
xBrowse -> Footers Calculo de totales de esa columna?? | Bueno, ahora funciona.
lo unico que hice, fue poner uno de los footers como texto fijo
oCol:cFooter := "Totali:"
y ahora muestra todos. |
xBrowse -> Footers Calculo de totales de esa columna?? | Antonio,
Se podrán implementar las modificaciones hechas por Biel para xbrowse, asi no hay que modificar la clase cada vez que actualizamos?
gracias
P.D. Hice las modificaciones en la xbrowse incluida en FWH0711 para poder poner los footers, pero no me muestra el estilo 2007, por lo que supongo que lo que descar... |
xBrowse -> Footers Calculo de totales de esa columna?? | Biel,
> Yo añadi un data a la clase TXBrwColumn, el data bStrFooter, que contiene un codeblock que nos debe retornar lo que queremos visualizar en el pie de la columna.
Implementado como bFooter, gracias! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
xBrowse -array - how to add del and select an item? | Hello Antonio,
Could you please post an example for:
xBrowser - ARRAY
Add, Del, Select a Item
Thanks in advance
Otto
???? does not work:
@ 300, 25 BUTTON "&Add" OF oChild PIXEL ;
ACTION ( AAdd( aStruc, Time() ), oBrw:Refresh() )
@ 300, 125 BUTTON "&SELECT" OF oChild PIXEL ;
ACTION (oBrw:Select(2) ) |
xBrowse -array - how to add del and select an item? | Otto,
Here you have samples\mallorca.prg modified with your requirements. Right click on it to show a popup menu:
[code:2f52k385]
# INCLUDE "FiveWin.ch"
# INCLUDE "XBrowse.ch"
//-------------
FUNCTION Main()
//-------------
LOCAL oWnd,aLin:={},i,oBrw
FOR i:=1 TO 6
A... |
xBrowse -array - how to add del and select an item? | I would like to bring to notice some major problems with inline Edit in TxBrowse. In the above example input of a number greater than 6 is invalid and should be rejected.
Case-1
-----------
Enter 7 in the first column and pess Enter. As expected the valid clause does not accept it. Then press 'Esc' key. The edit acce... |
xBrowse -array - how to add del and select an item? | Nageswararao,
> As it is, it is not safe to use the inline edit features of xbrowse in real applications.
Yes, you are right, we need to fix those wrong behaviors. |
xBrowse -array - how to add del and select an item? | A few quick suggestions, though a lot more is need to be done. This is to atleast ensure that invalid and unintended values are not written to the data.
1. bPostEdit block receives three paramters. ( oCol, uValueEntered, oGet'snLastkey). Programmer should write bPostEditBlock to write changes to the database after ch... |
xBrowse -array - how to add del and select an item? | We'd changed xbrowse' nedittype from 'N' to 'B' type, so to fit dynamic lWhen clause .
Shuming Wang |
xBrowse -array - how to add del and select an item? | Mr ShumingWang
Have you modified xbrowse's Edit method to make it reliable? If so can you share your logic please? |
xBrowse -array - how to add del and select an item? | Can you please share a latest example for it? |
xBrowse -array - how to add del and select an item? | Otto,
Thanks to Rao I made a small class to Filter on Xbrowse , working from the Xbrarray.prg
I hope you need it to Kown how add ,del , an item on array |
xBrowse -array - how to add del and select an item? | We don't need anything.
Now xbrowse works the best even on arrays too. |
xBrowse -array - how to add del and select an item? | GOOD |
xBrowse -ordenar array de fechas - Solucionado | Buen día,
Estoy teniendo un problema con el orden de fechas en xBrowse.
Antes de hojear, armo un array conteniendo, entre otros datos, tres columnas de fechas. En todas las de fecha tengo problemas para ordenar cuando se presiona sobre la cabecera.
Mi código sintetizado es así:
[code=fw:18tiq01e]<div class="fw" id=... |
xBrowse -ordenar array de fechas - Solucionado | Hola,
lo interesante del xBrowse es que la visualización puede ser una y la información otra, entonces puedes almacenar las fechas en el array yyyy/mm/dd, de manera que se puedan ordenar correctamente y en el bloque de visualización aplicas una función de transformación al formato de fecha que deseas mostrar.
Creo qu... |
xBrowse -ordenar array de fechas - Solucionado | Marcelo,
Gracias por responder.
Lo solucioné. En parte el problema era mío porque armaba el array con dtoc(dFecha) y, de ese modo no ordena por fecha porque NO es una fecha sino una cadena de caracteres. Eso lo había notado previamente a realizar la consulta en el foro y lo había corregido pero la falla de ordenado s... |
xBrowse .. start column 2 | To All
I have created column 1 that puts line numbers in my browse .. I do not want the cursor to go into column 1 and always want to start at column 2.
Is there a setting that does not allow navigation into a specific column ?? in my case, Column 1?
Thanks
Rick Lipkin
[url=http://imageshack.us/photo/my-ima... |
xBrowse .. start column 2 | Rick:
Try
[quote:kue92kyx]
oBrw:nFreeze := 1
[/quote:kue92kyx]
Regards |
xBrowse .. start column 2 | Armando
Thank you for your suggestion .. I did try that and the column freezes as you move to the right .. but navigation into the number column ( column 1 ) still exists <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
I was hoping there was an oCOl method that would keep you ... |
xBrowse .. start column 2 | try
oBrw:NColsel(2)
Stefano |
xBrowse .. start column 2 | As of now, there is no way to prevent user from navigating to any visible column. |
xBrowse 10.08 | Is in FiveWin.lib the same xBrowse.prg than in source?
If I link in xBrowse.prg I get no error.
If I link with 10.08 I get clicking on a header following error:
Best regards,
Otto
Application
===========
Path and name: C:\xwinhotel\xkbuch.EXE (32 bits)
Size: 2,748,416 bytes
Time from start: 0 hours 0 mins 2 s... |
xBrowse 10.08 | The error is there both in the build and in the source.
In line 10754,
::oBrw:Alias
should be changed as
::oBrw:cAlias
You may not get this error when the column is defined as part of XBROWSE command, but in case of column(s) added by oBrw:AddCol() or ADD TO oBrw. Can you confirm this please? |
xBrowse 10.08 | Hello Mr. Rao,
thank you. I changed the source and now all is working.
Best regards,
Otto |
xBrowse 10.08 | Hello Antonio,
would you be so kind to post a new lib-file. Thanks in advance
Otto |
xBrowse 10.08 | Otto,
We are working to solve a default button action with SkinButtons and then we may publish a new build,
thanks for the waiting <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
xBrowse 10.08 | Otto,
We are working to solve a default button action with SkinButtons and then we may publish a new build,
thanks for the waiting <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
xBrowse 10.08 | Otto,
We are working to solve a default button action with SkinButtons and then we may publish a new build,
thanks for the waiting <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
xBrowse 11.1 error | Dear All,
I'm using TREE to browse... With FWH 10.6 this doesn't appear bu with FWH11.1 it does.
What cause this xBrowse error?
"BOUND ERROR: ARRAY ACCESS"
Line# 503
METHOD ColAtPos( nPos ) INLINE ::aCols[ ::aDisplay[ MinMax( If( nPos == nil .or. nPos == 0, 1, nPos ), 1, Len( ::aDisplay ) ) ] ]
Kind regard... |
xBrowse 11.1 error | Dear All,
No one experienced this yet?
Kind Regards,
Frances |
xBrowse 11.1 error | Surprising.
I am unable to comment unless I can see a sample that can reproduce the error. |
xBrowse 11.1 error | [quote="nageswaragunupudi":27gnho9m]Surprising.
I am unable to comment unless I can see a sample that can reproduce the error.[/quote:27gnho9m]
Dear Mr. RAO,
I am using same code running in FWH 10.6 no changes but this error pops randomly..
Kind Regards,
Frances |
xBrowse 11.1 error | Frances,
It appears that the error is happening when there are no records in the tree (aDisplay is empty). Rao stated in another message thread that the tree does not support empty databases at this time.
If it did not error before, then I suggest doing a file compare of the two versions to see if you can find the co... |
xBrowse 1203 nAt returns incorrect value Horozontal scroll | To All
I am using FWH1203 and I have noticed that nAt returns the incorrect value when you horizontally scroll past the original visible columns.
In my first picture you see the cursor in the 4:30 ( click here ) column and nAt returns the correct column value ..
[url=http://imageshack.us/photo/my-images/32/y... |
xBrowse 1203 nAt returns incorrect value Horozontal scroll | Mr Rick
I shall look into nAt issue.
But I advise you not to refer to columns in numbers in xbrowse.
Best way to use is to use oBrw:SelectedCol()
oBrw:SelectedCol():cHeader always gives u the right value. |
xBrowse 1203 nAt returns incorrect value Horozontal scroll | Rao
Thank you for your quick response .. Unfortunately, I do not necessarily need the column header but the column number to then extract the value ( data\text ) of the cell ..
[code=fw:2ba8w3a3]<div class="fw" id="{CB}" style="font-family: monospace;"><br />nColumn := oLbxA:<span style="color: #000000;">nAt</span><... |
xBrowse 1203 nAt returns incorrect value Horozontal scroll | [quote="Rick Lipkin":12z22ps6]Rao
Thank you for your quick response .. Unfortunately, I do not necessarily need the column header but the column number to then extract the value ( data\text ) of the cell ..
[code=fw:12z22ps6]<div class="fw" id="{CB}" style="font-family: monospace;"><br />nColumn := oLbxA:<span style... |
xBrowse 1203 nAt returns incorrect value Horozontal scroll | Rao
Thank you!
Rick Lipkin |
xBrowse 13.05 - bClrHeader | Hi All.
I have a problem with xBrowse header colour like this:
1. xBrowse array with clausul AutoSort.
Result: header colour is change
2. xBrowse array without clausul AutoSort.
Result: header colour is normal like we define the colour.
Any body help me please....
Mulyadi
Indonesia |
xBrowse 13.05 - bClrHeader | This works correctly in the next version FWH 13.06, due for release anytime now. |
xBrowse 1408 Edit_Get_Button | Antonio and Rao
Just ran across this xBrowse error with Edit_Get_Button when LabrBrow() closes.. the error only happens with 1408 and not with my older version. Here is my code and the error.
Rick Lipkin
[code=fw:1jphcs7r]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #... |
xBrowse 1408 Edit_Get_Button | We shall look into this on priority. |
xBrowse 1408 Edit_Get_Button | FWH 14.09 does not raise an error.
But kindly note that the EDIT_XXXXX constants are intended to be used to set oCol:nEditType to edit the data of the column. In other words, when the column does not contain any data at all as in your above case, use of any EDIT_XXX is not an intended usage.
In the above example, bet... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.