topic
stringlengths
1
63
text
stringlengths
1
577k
xBrowse Design Mode...
Thanks for the reply. But I was not able to find the file: xbrwgen.prg in samples folder. Can you please provide here?
xBrowse Design Mode...
its actually fwh\samples\xbrgen.prg not xbrwgen.prg
xBrowse Designer
Dear Mr. Rao, For my purpose it would be fine if the column width would be in the sourcecode output too. Thanks in advance Otto
xBrowse Designer
Hello Otto, is there still another xBrowse-Designer, You are talking about ( from Rao ) ??? I couldn't find any Download. Maybe included in new FWH-release ? If Yes, there is no reason for me, to spend more time in my new Update. Best Regards Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" titl...
xBrowse Designer
Hello Uwe, I am talking about [i:2mcgx516]xbrgen.prg [/i:2mcgx516]from the Fivewin samples. I think [i:2mcgx516]xbrgen [/i:2mcgx516]is more a “data-designer” while yours is for the outlook. So we need both of them. Thanks for your good work. Best regards, Otto
xBrowse Designer
Hello Otto, thank You very much for the Info. With the next Update it will be possible, to create a Window in DESIGN-Mode ( to get Dlg-Top, Left, Bottom and Right ) all selected Backgrounds are adjusted during resizing. As well my Exit-Button stays on the Right / lower - Corner. I would like to add a Browser in DE...
xBrowse Disable() Problem
Hi all I have problem with oBrw:Disable() becouse xBrowse is not disabled example [code=fw:1ptrg975]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Mai...
xBrowse Disable() Problem
You do not need to disable xbrowse to do what you wanted to do. Just save and restore the record position in your function. [code=fw:mu3jgm4g]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> TestXBrowseKeepEnable<span style="color: #000000;">&#40;</span><span style...
xBrowse Disable() Problem
Hi Rao Thanks for reply [quote:2j5mayh5]and please remove all code to disable xbrowse[/quote:2j5mayh5] Please what do you mean with this ? BTW I have cases when i need to have chance to disable xbrowse report for example with 10 rows ... customer choose 5 ... on ESC key i want to delete other 5 and on other dialog ...
xBrowse Double Click
In my xbrowse programs I often use a double click to trigger an action. In recent versions of xBrowse, I am noticing that the last row or two displayed on an xBrowse are not responding to a double click. They can be highlighted, and I have a button that will trigger the event, and that works. However, the double cli...
xBrowse Double Click
I tried but could not reproduce the problem. Here is my test. I request you too try this. [code=fw:mnmn38mb]<div class="fw" id="{CB}" style="font-family: monospace;"><br />XBROWSER <span style="color: #ff0000;">"CUSTOMER.DBF"</span> SETUP oBrw:<span style="color: #000000;">bLDblClick</span> := <span style="color: #0000...
xBrowse Drag & Drop
How can I adapt \samples\testdrp6.prg to be used with xBrowse, If someone has an example with a DBF, will be better... [code=fw:3hvnghn7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// FiveWin - own Drag&Drop new features !!!</span><br /><span style="color: #B900B9;">// Drag...
xBrowse Drag & Drop
[code=fw:f9iuvlm6]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// FiveWin - own Drag&Drop new features !!!</span><br /><span style="color: #B900B9;">// Drag item from one listbox to another listbox</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="co...
xBrowse Drag & Drop
to Mr. nageswaragunupudi.. How to work with database files Can I get the sample.. Thanks Best Regards Fafi
xBrowse Drag & Drop
Thanks Mr. Rao, this is a nice example... I think it will of a lot of help if it's placed in the \Samples folder... I have one question: If I Click, Hold, Drag and Drop one array item in the same xBrowse from where it was taken, and the other xBrowse has Items, the selected Row in the other xBrowse is moved this xBro...
xBrowse Drag & Drop
Fixed It with a conditional Drop: If( !Empty( uDropInfo ) .and. LEN(aLbx2) <> 0 [code=fw:264ijjs7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// FiveWin - own Drag&Drop new features !!!</span><br /><span style="color: #B900B9;">// Drag item from one listbox to another lis...
xBrowse Drag & Drop
Too Soon... How can I detect from which browse es the Record comming from??? I want to prevent the Record of being Dropped in the xBrowse from which it was taken...
xBrowse Drag & Drop
It may not be the pretiest and right way to doit, but I got it working like this: nXBrow := x [code=fw:1j72c515]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// FiveWin - own Drag&Drop new features !!!</span><br /><span style="color: #B900B9;">// Drag item from one listbox to...
xBrowse Drag & Drop Question
Hi, I have an MDI window that can open up multiple child windows that contain transactions sorted by a sequence number. I want to have the ability to drag one or more records from one browse to either another point in the same browse or to another point in another browse. I can get the system to work fine if you are...
xBrowse Drag & Drop Question
It is possible to have drag and drop on the same browse or a different browse. There is a recent post on this subject by Mr Otto with a nice example.
xBrowse Drag & Drop Question
Couldnt find the post - only could find where the drag would start even though you are not dragging!
xBrowse Drag & Drop Question
Pete: I had a similar situation dragging/dropping between two browses. In this case I'm browsing two arrays. I refer to browse 1 as a "Time" browse and browse 2 as a "Timeless" browse. Here are the drag/drop definitions for each browse: oBrw:bDragBegin := { |nRow,nCol,nKeyFlags| ; Se...
xBrowse Drag & Drop Question
Pete: Also, I saved the row in the browse cargo: oBrw:bSkip := { | nSkip, nOld | ; iif(nSkip == nil, nSkip := 1, ),; nOld := oBrw:nArrayAt,; oBrw:nArrayAt += nSkip,; oBrw:nArrayAt := Min( Max( oBrw:nArrayA...
xBrowse Drag Error when Kinetic scrolling is enabled
I am using FWH 9.08 I have done what Mr.Antonio has suggested to make Kinetic scroll optional, available in this thread <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=16905&p=87669#p87669">viewtopic.php?f=3&t=16905&p=87669#p87669</a><!-- l --> When I enable oBrw:lKinet...
xBrowse Drag Error when Kinetic scrolling is enabled
You must be using version 9.08, when Kinetic scrolling was first introduced. In this version of XBrowse, there is bug in line 3199 Please replace "Skip( -1 )" as "::Skip( -1 )" in line 3199 of XBrowse.Prg ( version 9.08 ) This bug is fixed in version 9.09
xBrowse Drag Error when Kinetic scrolling is enabled
Dear Mr.Rao, [quote:2szffi2b]Please replace "Skip( -1 )" as "::Skip( -1 )" in line 3199 of XBrowse.Prg ( version 9.08 )[/quote:2szffi2b] Thank you. Your solution worked. May I ask you one more doubt <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> . At present the code o...
xBrowse Drag Error when Kinetic scrolling is enabled
lKinetic is implemented as CLASSDATA. So it applies to all browses. That is the way it is implemented now. I am sure FWH can implement what you like to do.
xBrowse Drag Error when Kinetic scrolling is enabled
Anser, [quote:1wu45cg9]What would be the changes required in xBrowse class so that I can have 2 xbrowses in a dialog, one with kinetic scrolling and another one without kinetic scrolling.[/quote:1wu45cg9] This may not be a good design. Users will be confused by the browses not working the same way. Regards, James
xBrowse Drag Error when Kinetic scrolling is enabled
Mr James >> This may not be a good design. Users will be confused by the browses not working the same way. >> Personally I agree with you and I am for providing a consistent design through out an application. Still there is no reason, why the library should not offer the flexibility to the programmer. Let the progr...
xBrowse Drag Error when Kinetic scrolling is enabled
Mr Anser Your question: >> What would be the changes required in xBrowse class so that I can have 2 xbrowses in a dialog, one with kinetic scrolling and another one without kinetic scrolling. >> If you like to modify your XBrowse class or have a derived class, this is my suggestion. In the XBrowse.prg create a new D...
xBrowse Drag Error when Kinetic scrolling is enabled
Dear MR.Rao, Thank you for the help [quote:1tyidswn]>> This may not be a good design. Users will be confused by the browses not working the same way. >> Personally I agree with you and I am for providing a consistent design through out an application. Still there is no reason, why the library should not offer the f...
xBrowse EDIT_GET_BUTTON
Dear Antonio / Mr. Rao. the clause EDIT_GET_BUTTON has little documentation and i need your help (Fwh 1202) This is my code to define a column: [code=fw:fbfuyt2w]<div class="fw" id="{CB}" style="font-family: monospace;"><br />    <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</spa...
xBrowse EDIT_GET_BUTTON
One more thing (i think it is a bug): When the user enter the data directly with the keyboard in the editable column, the :bOnPostEdit is evaluated. But, when clicking the small button and : bEditBlock is evaluated returning a value, the :bOnPostEdit is NOT evaluated. Thank for you answer. Ralph
xBrowse EDIT_GET_BUTTON
bEditBlock should return the new value, if the value is changed or NIL if the value is not to be changed. This line: oBrwDeta:aCols[ nx ]:bEditBlock := { | r,c,o | o:value := PickPrd(o:value) } should be re-written as : oBrwDeta:aCols[ nx ]:bEditBlock := { | r,c,o | PickPrd(o:value) } PickPrd(...) function...
xBrowse EDIT_GET_BUTTON
Ralph; As for the F2 to open a list, you could try to implement in :bKeyDown, as in: [code=fw:q0q5tq84]<div class="fw" id="{CB}" style="font-family: monospace;"><br />WITH OBJECT ::<span style="color: #000000;">oBrw</span><br /><br />&nbsp; &nbsp; &nbsp; :<span style="color: #000000;">bKeyDown</span> := <span style="...
xBrowse EDIT_TIME
How to display hh:mm column in xbrowse and not hh:mm:ss?
xBrowse EDIT_TIME
oCol:bStrData := {|| SubStr(oBrw:aCols[2]:Value(),1,5) } as display.. but when editing time format is hh:mm:ss even if I changed Set( _SET_TIMEFORMAT, "hh:mm")
xBrowse EDIT_TIME
perhpas you must use a text field "hh:mm:ss"
xBrowse EDIT_TIME
Thanks for the reply. Since it is a string format, I dont need to validate it as valid time.. I just trim and ignore the seconds.
xBrowse ERROR
Hi I have any time this error on my application How to resolve it ??? Error DBCMD/2001 Workarea non in use: __DBSKIPPER Stack-List ========== Called from: => __DBSKIPPER(0) Called from: fiveh\xbrowse.prg => (b)TXBROWSE_SETRDD(3936) Called from: fiveh\xbrowse.prg => (b)TXBROWSE(436) Called from: fiveh\x...
xBrowse ERROR
Are you setting the xbrowse alias of the database? James
xBrowse ERROR
Yes sometimes goes to error when I close the window not always
xBrowse ERROR
Like James suggested : [color=#0000FF:28zq8vev][b:28zq8vev]DBSELECTAREA("CUST")[/b:28zq8vev][/color:28zq8vev] @ 35, 15 XBROWSE oBrw OF oXbrDlg1 ; SIZE 400, 176 PIXEL ; [color=#0000FF:28zq8vev][b:28zq8vev]ALIAS "CUST"[/b:28zq8vev][/color:28zq8vev] CELL LINES ... ... Best regards Uwe <!-- s:?: --><img src="{SMILIES_PA...
xBrowse ERROR
Can we see your code for the browse? James
xBrowse ERROR
the problem is when i close the window anytime go to error regards ********************************************************************************************************************* // xBROWSE Function XBRW_DB(nDBF,aDB,nFUN,nDES,nSRC,nSTA,nFIL,nBUT,oUSR,nSCH,nICO,bSALDO,nTAG,bCOLOR,bPOP,oFONT,bGO,nUFLT,bUKEY) L...
xBrowse ERROR
[code=fw:ft8f2kf3]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">WINDOW</span> oWIN <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">INIT</span> WndAdjClient<span style="color: #000000;">&#40;</span>oWIN:<span st...
xBrowse ERROR
Also, I don't understand this syntax: (oDBF)->(DBCloseArea()) oDBF would have to be an alias except the prefix indicates that it is a database object. This is the generic syntax: (cAlias)->(DBCloseArea()) However if oDBF is a database object (as the prefix indicates), then you close it this way: (oDBF:cAlias)->(DB...
xBrowse ERROR
I don't use the class TDatabase oDBF is the alias of database
xBrowse ERROR
[quote:650n11lo]oDBF is the alias of database[/quote:650n11lo] OK, still you should change it to: [code=fw:650n11lo]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">WINDOW</span> oWIN <span style="color: #0000ff;">ON</span> <span sty...
xBrowse ERROR
[quote:8byb02xb]oDBF is the alias of database[/quote:8byb02xb] Oh, and Hungarian notation says that the alias variable should be cAlias not oDBF. The "o" prefix is to signify an object. Then people like me would be able to read your code more easily. And if you were using a database object, the name would be very cle...
xBrowse ERROR
I go to try it Thank you very much James
xBrowse ERROR
Try pulling the focus to oBrw [code=fw:3p2bjikr]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">WINDOW</span> oWIN <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">INIT</span> WndAdjClient<span style="color:...
xBrowse ERROR
Cmsoft, [quote:2exip8kq]Try pulling the focus to oBrw[/quote:2exip8kq] The problem would still exist. The browse must be closed before the database is closed. Closing the database after the window is closed means that the browse is closed also. Closing the database in the VALID clause of the window means the database...
xBrowse ERROR
We should close the DBF "after" the window is closed. Once the window is closed, the browse object also is destroyed. So, we should not close the DBF in the valid clause, because the window and browse objects are still active. When we are using MDICHILD windows, the best place to close DBF is inside the oWin:bPostEnd...
xBrowse Edit Group Column (DONE)
Hi Mr. Rao, with xbrowse: [code=fw:3cs0ftr8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> ...<br /> 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>:<span style="color: #000000;...
xBrowse Edit Group Column (DONE)
Inline edit is not possible when using SetColsAsRows()
xBrowse Edit Group Column (DONE)
[quote="nageswaragunupudi":2bsbln6f]Inline edit is not possible when using SetColsAsRows()[/quote:2bsbln6f] Thanks Mr. Rao, well noted.
xBrowse Edit Group Column (DONE)
Please try this: Assuming the headers of columns 4,5,6 are "PROJECT NAME", "ADDRESS1", "ADDRESS2", oBrw:aCols[ 4 ]:bLDClickData := { || oBrw:EditBrowse( .f., "PROJECT NAME,ADDRESS1,ADDRESS2", .f. ) } oBrw:aCols[ 4 ]:bKeyChar := { |k| If( k == 13, ( oBrw:EditBrowse( .f., "PROJECT NAME,ADDRESS1,ADDRESS2", .f. ), 0 ), ni...
xBrowse Edit Group Column (DONE)
[quote="nageswaragunupudi":3byolrq1]Please try this: Assuming the headers of columns 4,5,6 are "PROJECT NAME", "ADDRESS1", "ADDRESS2", oBrw:aCols[ 4 ]:bLDClickData := { || oBrw:EditBrowse( .f., "PROJECT NAME,ADDRESS1,ADDRESS2", .f. ) } oBrw:aCols[ 4 ]:bKeyChar := { |k| If( k == 13, ( oBrw:EditBrowse( .f., "PROJECT NAM...
xBrowse Edit Group Column (DONE)
Please adopt my modified code. It is working here fine for me. Please try again.
xBrowse Edit Group Column (DONE)
[quote="nageswaragunupudi":w65s0r3f]Please adopt my modified code. It is working here fine for me. Please try again.[/quote:w65s0r3f] I exactly copied it. and checked with headers.. it is a Child Record Set..
xBrowse Edit Group Column (DONE)
First, please try this sample as it is. Copy to fwh\samples folder and build it. [code=fw:14x0r9hh]<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 ...
xBrowse Edit Group Column (DONE)
I sent you revised xbrowse. Also see the above sample modified.
xBrowse Edit Group Column (DONE)
[quote="nageswaragunupudi":1f7spyc5]I sent you revised xbrowse. Also see the above sample modified.[/quote:1f7spyc5] That was a very good fix! <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
xBrowse Edit Group Column (DONE)
Mr. Rao, The samples works great! but this is with dbf... Using Child RecordSet with Grouped column, I get Blank fields (the content of child's field value not reflected) <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
xBrowse Editing Error - numeric values rounding
In a file editor class, the following function is used to edit a single record from a file: [code=fw:16y788l2]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">METHOD</span> EditRec<span style="color: #000000;">&#40;</span>  <span style="color: #000000;">&#41;</span> <span s...
xBrowse Editing Error - numeric values rounding
Perhaps with a new title, someone will actually respond to this question ?
xBrowse Editing Error - numeric values rounding
Tim, I don't know why this is happening, but have you tried: SET FIXED ON SET DECIMAL TO 2 I know that is supposed to be the default, but maybe the preprocessor is messing something up. Try making as small of a program as you can showing the problem--just create an array of a couple of items and a browse to edit it...
xBrowse Editing Error - numeric values rounding
James, This is probably the only code I have that is actually allowing an edit in xBrowse. It may help to note that the error only occurs with Harbour / MSVC, and is fine with xHarbour / Pelles C builds. It may be that Antonio made a change in a build that he did not include in the Microsoft libraries he creates. T...
xBrowse Editing Error - numeric values rounding
Tim, Still, a small self-contained program would make it easier for Antonio to check and fix. James
xBrowse Editing Error - numeric values rounding
James, Here is a cut down that makes it rather straight forward: [code=fw:1b9rw2as]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00C800;">METHOD</span> TestEditRec<span style="color: #000000;">&#40;</span> &nbsp;<span style="color: #000000;">&#41;</span> <span style="color...
xBrowse Editing Error - numeric values rounding
Good that you pointed this out. I have reduced your sample to this following code. [code=fw:uy4odqur]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> xbrnumedit<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &n...
xBrowse Editing Error - numeric values rounding
I use this code in a record editor. The left column ( element 1 of the array ) is a field name. The 2nd column ( EDITABLE ) is a value, and it could be of any data type. Thus, I couldn't set the column with a picture clause because sometimes the value is a string, or a date, or a decimal. Thanks for looking into th...
xBrowse Editing Error - numeric values rounding
Mr. Rao, I just wanted to keep this on top since you said you would be addressing the issue. Your help is greatly appreciated. Tim Stone
xBrowse Editing Error - numeric values rounding
I would call this a workaround rather than 'fix'. But this works for the time being. Please locate the line [code=fw:210olpqo]<div class="fw" id="{CB}" style="font-family: monospace;">::<span style="color: #000000;">oEditGet</span> := TGet<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</sp...
xBrowse Editing Error - numeric values rounding
Thank you. That resolves the problem. Tim
xBrowse Error With 10.2
Hi, Just upgraded xHarbour commercial (Nov 09) & Fivewin (10.2) and get the follwoing error in an xBrowse: Application =========== Path and name: G:\6.00\Exe\ORD_MOD.EXE (32 bits) Size: 4,965,376 bytes Time from start: 0 hours 0 mins 4 secs Error occurred at: 18/03/2010, 15:51:10 Error description: Er...
xBrowse Error With 10.2
From versions 9.01 TO 10.02, bClrHeader is expected to return array of 3 colors. Third color is meant for the color of the pen used to paint lines for the header. Please change your source code so that bClrHeader returns an array of 3 colors.
xBrowse Error With 10.2
Thanks, that seems to have fixed the problem! One thing i've noticed is that the size of the header has grown between versions - how can i set it back to how it was? Regards, Pete
xBrowse Error With 10.2
[quote="PeterHarmes":mlpsggjr]Thanks, that seems to have fixed the problem! One thing i've noticed is that the size of the header has grown between versions - how can i set it back to how it was? Regards, Pete[/quote:mlpsggjr] Is it so? May I know with which version are you comparing? I like to see if there is any c...
xBrowse Error With 10.2
I was originally using 09.05
xBrowse Error With 10.2
Anyone got any ideas about the header height problem? Regards, Pete
xBrowse Error With 10.2
From version 9.12, the header height is increased by 4 pixels. For the old look, line no 8063 of xbrowse.prg ( 10.2 ) [code=fw:3ni032wa]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp; &nbsp; &nbsp; nHeight := <span style="color: #000000;">&#40;</span> FontHeight<span style="color: #000000;">&#4...
xBrowse Error With 10.2
I would say that the size of the header has nearly doubled!! I will try and get some screen shots
xBrowse Error With 10.2
[quote="PeterHarmes":e3x2nhhh]I would say that the size of the header has nearly doubled!! I will try and get some screen shots[/quote:e3x2nhhh] I have verified the code and also compared the headerheight by msginfo in both versions. You may try this small code in both versions: [code=fw:e3x2nhhh]<div class="fw" id="{...
xBrowse Error With 10.2
Thanks, i'll try that in a min - I dont actually specify a font or size for the header of the browse so this could be the cause of the problem - i use a generic function for all of my browses, so it wouldnt take much to apply a height to all browses - how do i apply a height? oBrw:nHeaderHeight := nn? Regards, Pete
xBrowse Error With 10.2
Ignore previous post - I have put oBrw:nHeaderHeight := 20 into my xBrowse setup function and that works perfectly in both FW09.5 & FW10.2 Thanks for your help you Best Regards, Pete
xBrowse Extreme right end ghost col header & Footer painting
Hi all, Is there a way to avoid the display of the extreme right end column (Ghost Column) which appears automatically. This column is displayed only when the the xbrowse is scrolled towards the extreme right. The header and footer color of this ghost column is also not the same as the default header/footer color. [u...
xBrowse Extreme right end ghost col header & Footer painting
Hello Anserkk you can use oBrw:nStretchCol := STRETCHCOL_LAST
xBrowse Extreme right end ghost col header & Footer painting
Dear Mr.Daniel, oBrw:nStretchCol := STRETCHCOL_LAST worked perfectly as expected. Regards Anser
xBrowse Extreme right end ghost col header & Footer painting
[quote:2xssr7dc]The header and footer color of this ghost column is also not the same as the default header/footer color. [/quote:2xssr7dc] This was fixed in version 9.11, along with other minor painting issues of header and footer. This bug was existing from 9.02 to 9.10
xBrowse Extreme right end ghost col header & Footer painting
[quote="nageswaragunupudi":3oveid3e][quote:3oveid3e]The header and footer color of this ghost column is also not the same as the default header/footer color. [/quote:3oveid3e] This was fixed in version 9.11, along with other minor painting issues of header and footer. This bug was existing from 9.02 to 9.10[/quote:3ove...
xBrowse Extreme right end ghost col header & Footer painting
>> What about the painting of the Pijama effect on the Ghost column ? >> Ghost column is painted only for nMarqueeStyle 4 and above. So, the if we need pijama effect in ghost column also, we need to set nMarqueeStyle to 4 or able as appropriate.
xBrowse Extreme right end ghost col header & Footer painting
Dear Mr.Rao, Thank you for the information. oBrw:nMarqueeStyle := 4 is serving the purpose <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> Regards Anser
xBrowse FW16.06 (Solucionado)
Estimados: Cuando tengo una consulta Dolphin ordenan por un campo numerico y presiono una letra, el programa deja de responder. Esto no me pasaba con la misma situacion en la version 11 de FW. Alguna pista?
xBrowse FW16.06 (Solucionado)
Talvez, usted esté usando un ERRSYSW.PRG de una version antigua. Se si, cambia el ERRSYSW.PRG para el nuevo de la nueva version de FWHX. Saludos.
xBrowse FW16.06 (Solucionado)
Comprueba si se crea un fichero hb_out.log Copia aqui el contenido de ese fichero, gracias
xBrowse FW16.06 (Solucionado)
Gracias por responder! [quote:1clnobxo]Talvez, usted esté usando un ERRSYSW.PRG de una version antigua. Se si, cambia el ERRSYSW.PRG para el nuevo de la nueva version de FWHX.[/quote:1clnobxo] Uso harbour, y tengo la version mas reciente. [quote:1clnobxo]Comprueba si se crea un fichero hb_out.log [/quote:1clnobxo] No c...
xBrowse FW16.06 (Solucionado)
Puedes proporcionar un ejemplo pequeño y auto contenido que reproduzca el problema ?
xBrowse FW16.06 (Solucionado)
Lo preparo Antonio Gracias