topic
stringlengths
1
63
text
stringlengths
1
577k
xBrowse to Excel how to bring ON TOP ?
Hi Uwe, I don't know if this will help but.... This is per the Microsoft Knowledge Base article #886217: (Fix the New Program Window so that an Office program will automatically come to the front when launched.) To resolve this issue, modify the value of the ForegroundLockTimeout registry entry in Registry Editor. To...
xBrowse to Excel how to bring ON TOP ?
Hello Jeff, Thank You very much. I will test it. In METHOD To Excel there is a BringWindowToTop, but doesn't work in my situation. [color=#0000FF:35wgk788]METHOD ToExcel( bProgress, nGroupBy, aCols ) CLASS TXBrowse ... ... oExcel:ScreenUpdating := .t. oExcel:visible := .T. ShowWindow( oExcel:hWnd, 3 )[/col...
xBrowse to Excel how to bring ON TOP ?
Jeff, the key didn't exist in my registry. I added the values, but there is no difference. Tested with sample : [img:39b5kusd]http&#58;//www&#46;pflegeplus&#46;com/pictures/testexcel1&#46;jpg[/img:39b5kusd] Best regards Uwe <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s...
xBrowse to Excel how to bring ON TOP ?
Uwe Try oExcel:Visible := .T. without all the rest , it should be enough Richard
xBrowse to Excel how to bring ON TOP ?
Richard, In class TXBrowse [b:3o1kkfgr]METHOD ToExcel( bProgress, nGroupBy, aCols )[/b:3o1kkfgr] ToTop is included, but Excel moves behind the window or dialog defined in class TXbrowse [b:3o1kkfgr]oExcel:ScreenUpdating := .t. oExcel:visible := .T. ShowWindow( oExcel:hWnd, 3 )[/b:3o1kkfgr] [color=#000...
xBrowse to Excel how to bring ON TOP ?
I have the same problem with excel, try this, working for me oBrw:ToExcel() SysRefresh() // Add this line BringWindowToTop( FindWindow( 0, "Microsoft Excel - Libro1" ) ) // Add this line, traslate to english ( "Microsoft Excel - Book1" or something like this ) Best Regards
xBrowse to Excel how to bring ON TOP ?
I use this [code=fw:17qh4u66]<div class="fw" id="{CB}" style="font-family: monospace;"><br />  .<br />  .<br />SetFocusAfter<span style="color: #000000;">&#40;</span>FindWindow<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"XLMAIN"</span>, <span style="color: #000000;">0</span> <span style="co...
xBrowse to Excel how to bring ON TOP ?
Thank You very much for the response. I tested the function and Excel moves to TOP. It is still funny : 1. Excel opens on TOP 2. Excel moves to BACK 3. Excel moves to TOP again @ 245, 240 BTNBMP oBtn2 OF oDlg ; SIZE 50, 25 PIXEL; NOBORDER ; PROMPT "&Excel " ; ACTION ( IIF( oFld:nOption = 1, oBrw1:ToExcel(), oBrw2:ToE...
xBrowse under the WEB
Hi, Can I use Mercury to implement something similar to xBrowse under the WEB ?
xBrowse under the WEB
Mercury is a MVC (model view controller) library for mod_harbour Using mod_harbour and a GUI API like bootstrap you can create browses for the web. Using a MVC you optimize your mod_harbour productivity using the model view controller paradigm.
xBrowse under the WEB
Thank You Antonio. Are there any examples that describe creating tables that are similar in functionality to xBrowse ?
xBrowse under the WEB
datatable API live demos: [url:8elu8xfb]https&#58;//www&#46;modharbour&#46;org/modharbour_samples/datatable/[/url:8elu8xfb] datatable examples source code: [url:8elu8xfb]https&#58;//github&#46;com/FiveTechSoft/mod_harbour/tree/master/samples/datatable[/url:8elu8xfb]
xBrowse using SetAlign provokes an error
Hi, if I use SetAlign with FW10.09 in following way: [code=fw:2d6v4q63]<div class="fw" id="{CB}" style="font-family: monospace;">            oLB:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span st...
xBrowse using SetAlign provokes an error
Try putting a sysrefresh() in front of the ::oBrw:refresh(). Regards, James
xBrowse using SetAlign provokes an error
[quote="James Bott":2kzgxggd]Try putting a sysrefresh() in front of the ::oBrw:refresh().[/quote:2kzgxggd] Same error still exists...
xBrowse using SetAlign provokes an error
Gilbert, Can you put together a small sample program showing the problem? James
xBrowse using SetAlign provokes an error
1. SetAlign() method is intended to be used for changing alignment during runtime. Recommended way to set alignment of columns, during initial definition of xbrowse, is by oCol:nDataStrAlign := <nAlign>. 2. From the error code, it is understood that data source is not yet specified ( in command mode ALIAS, ARRAY, RECO...
xBrowse using SetAlign provokes an error
Rao, [quote="nageswaragunupudi":24kb55ch]1. SetAlign() method is intended to be used for changing alignment during runtime. Recommended way to set alignment of columns, during initial definition of xbrowse, is by oCol:nDataStrAlign := <nAlign>.[/quote:24kb55ch] Thanks, this works [quote="nageswaragunupudi":24kb55ch] ...
xBrowse using SetAlign provokes an error
Glad that the problem is solved.
xBrowse using SetAlign provokes an error
[quote:12ahgphu]as the problem is solved and because it was my fault: is an example still eligible?[/quote:12ahgphu] Maybe a small sample showing how you got it working would help others avoid the same problem you had. Regards, James
xBrowse valid works correctly?
There are a couple of issues that I am having a problem with. 1. Pressing escape should revert cell back to the value prior to editing. 2. While editing you can select other cells while still editing field. You should not be able to select another cell or row while the edit is still invoked. 3. Is there any way to got...
xBrowse valid works correctly?
Gale, Yes, we are aware of those issues and we plan to solve/implement them asap, thanks
xBrowse validar e atualizar célula?
Antonio, usando a xbrowse não estou conseguindo atualizar o conteudo de uma célula, ex: obRW:aCols[1]:bOnPostEdit := {|o,x| aprod[ obRW:nArrayAt,1] := x } obRW:aCols[1]:bStrData := { || trans(aprod[ obRW:nArrayAt,1],'999') } obRW:aCols[1]:bEditValue:= { || aprod[ obRW:nArrayAt,1] } obRW:aCols[1]:nEditType := EDIT_GE...
xBrowse validar e atualizar célula?
Olá, Tente isto: [code:1k2ka1lc] STATIC Function Seekproduto&#40;oget&#41; local ubuffer&#58;= oGet&#58;Value&#40;&#41; if ! existe_prods&#40;ubuffer&#41; oGet&#58;varput&#40; 0 &#41; oGet&#58;refresh&#40;&#41; return &#40;&#46;f&#46;&#41; endif return&#40;&#46;t&#46;&#41; [/code:1k2ka1lc] Abraços, ...
xBrowse validar e atualizar célula?
Revisa fwh\samples\mallorca.prg Que ha sido modificado y probado a fondo en FWH 8.01, por lo que es distinto y funciona distinto del que se incluye en FWH 7.12
xBrowse validar e atualizar célula?
GRATO
xBrowse with ADO
Mr Nages, I have a xBrowse I need switching Recordset dynamically ,and the table and fields of the recordset are not identical. I solved in this way Open new Recset oNewRs FOR i := len(oBrwLis:aCols) to 1 STEP - 1 oBrw:DelCol(i) NEXT oBrw:SetADO( oNewRs ) oRsOld:Close() oBrw:GoTop() oBrw:Refre...
xBrowse with ADO
You can simply assign new RecSet object if the field structures are identical. XBrowse is designed for this, provided you do not directly use the recset object in your code. But xbrowse is not designed to handle replacing RecSet with totally a different field structure. I personally prefer is to create new Browse and...
xBrowse with ADO
Thanks Mr Nages, I followed your advice and it works. I checked the memory usage and I noted that memory increase. I created this sample using a classic xbrowse with DBF (I know it is exaggerated) . [code=fw:2rgdtakm]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</sp...
xBrowse with ADO
Each time DoBrowse() is executed, the new oBrw is added to oDlg:aControls array and this array keeps bloating till memory gets exhausted. Please try inserting oDlg:aControls := {} before defining browse in DoBrowse()
xBrowse with ADO
Hello I try oDlg:aControls := {} same problem , I verified the len(oDlg:aControls) and remain the same . Regards Maurizio
xBrowse with ADS
Antonio, i have simple xBrowse, from version Fivewin 8.04, i have at error very stupid, using ADS;( And yes, I put REQUEST ADS...etc...etc.. )FUNCTION Exclusiones() Local oDlg, oDbf, oBrw, oTdbf, oDbKSegOri USE TEST NEW SHARED DATABASE oDbKSegOri DEFINE DIALOG oDlg NAME "EXCLUIR" TITLE "Exclusion del kiosko" ...
xBrowse with ADS
Rafa,It was fixed in FWH 8.05. Please add these extra parameters in method Refresh() call to Eval():nKeyNo = Eval( ::bKeyNo,,Self )Si usas un objeto database, entonces has de usar oXBrowse:SetoDbf( oDbf [, aFldNames] )
xBrowse with ADS
[quote="Antonio Linares":3j9phw8j]Rafa, It was fixed in FWH 8.05. Please add these extra parameters in method Refresh() call to Eval(): nKeyNo = Eval( ::bKeyNo,,Self ) Si usas un objeto database, entonces has de usar oXBrowse:SetoDbf( oDbf [, aFldNames] )[/quote:3j9phw8j]Thanks Antonio, but in this version Fivew...
xBrowse with ADS
Rafa,Thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xBrowse with MARQSTYLE_HIGHLROWRC?
Dear Antonio and friends!I liked very much this style of selected row on xBrowse!It is the MARQSTYLE_HIGHLROWRC style, but when I try to use this style into my application... it don't have the same effect! Why don't? Please, someone have a tip for me?The xBrowse with MARQSTYLE_HIGHLROWRC into SAMPLES of fivewin:[img:3e...
xBrowse with MARQSTYLE_HIGHLROWRC?
Hello Júlio,in the moment, i'm busy with creatingsome more pages for the xbrowse-Tools ( styles, backgrounds....)The 2. page is prepared for style- and background-testing.In the future you can test all styles, brushes, bitmaps, fonts..with preview.Style-testing i have done in my old tools already.I still have to add th...
xBrowse with MARQSTYLE_HIGHLROWRC?
Thanks Uwe, but I like to use this style into my application with Fivewin 8.06.
xBrowse with MARQSTYLE_HIGHLROWRC?
Hello,No problem, only Gradients for Header and Footer you cannotuse in FWH 8.06The Line-preview, you can use in FWH 8.06 as well.There is no change.The source you can copy and past from the field < background and styles >. You can mix all settings, until you think it is ok.I will finish this part. Background and Brush...
xBrowse with MARQSTYLE_HIGHLROWRC?
Mr JC> liked very much this style of selected row on xBrowse! It is the MARQSTYLE_HIGHLROWRC style, but when I try to use this style into my application... it don't have the same effect!>Answer to your question is in the testxbrw3.prg source itself.[code:2dt7hhf3] oBrw&#58;bClrRowFocus &#58;= &#123; || &#123; CLR...
xBrowse with MARQSTYLE_HIGHLROWRC?
Dear Uwe,Your "visual" tools are great, bur instead of building a different one for different controls, why don't you try to build a generic "object inspector" for all of them ?I mean: one "object inspector" that will work with all sort of controls.Please have a look to this thread <!-- s:-) --><img src="{SMILIES_PATH}...
xBrowse with MARQSTYLE_HIGHLROWRC?
Dear Antonio,A few month ago, as i started with tools,there was a try, to create a tool for all controls.Many things came together like project-handling and more.I think, when the controls are tested in visual-design, the next step could be, putting everything together.I will keep it in mind.RegardsUwe <!-- s:lol: --><...
xBrowse with MARQSTYLE_HIGHLROWRC?
Uwe,Here you have an early prototype so you can check it:test.prg[code:1hsyte4c] #include "FiveWin&#46;ch" #include "XBrowse&#46;ch" function Main&#40;&#41; local oWnd, oBrw, aData &#58;= &#123; &#123; PadR&#40; "One", 10 &#41;, PadR&#40; "Two", 10 &#41;, PadR&#40; "Three", 10 &#41; &#125;,; ...
xBrowse with MARQSTYLE_HIGHLROWRC?
[url=http&#58;//imageshack&#46;us:1r6x44gx][img:1r6x44gx]http&#58;//img168&#46;imageshack&#46;us/img168/6914/uwevd8&#46;png[/img:1r6x44gx][/url:1r6x44gx]
xBrowse with MARQSTYLE_HIGHLROWRC?
using a Class TProperty:test.prg[code:1up3hb9i] #include "FiveWin&#46;ch" #include "XBrowse&#46;ch" function Main&#40;&#41; local oWnd, oBrw, aData &#58;= &#123; &#123; PadR&#40; "One", 10 &#41;, PadR&#40; "Two", 10 &#41;, PadR&#40; "Three", 10 &#41; &#125;,; &#123; "Four", "Five", ...
xBrowse with MARQSTYLE_HIGHLROWRC?
Dear Antonio,to do it this way, seems to be a better solution.The difference is, propertys itself are selected sometimes from previews as well.( not as a text-selection from a listbox )A sample ( only NO LINES is a property )NO LINES comes from STYLE but belongs to a new GRID-selection :[img:22uuw7d9]http&#58;//www&#46...
xBrowse with MARQSTYLE_HIGHLROWRC?
[quote="nageswaragunupudi":2z9kq3ui]Mr JC > liked very much this style of selected row on xBrowse! It is the MARQSTYLE_HIGHLROWRC style, but when I try to use this style into my application... it don't have the same effect! > Answer to your question is in the testxbrw3.prg source itself. [code:2z9kq3ui] oBrw&#5...
xBrowse with MARQSTYLE_HIGHLROWRC?
Uwe,See how easy we can add new properties to inspect with the object inspector:[url=http&#58;//imageshack&#46;us:150ep3dg][img:150ep3dg]http&#58;//img201&#46;imageshack&#46;us/img201/530/inspectormd4&#46;png[/img:150ep3dg][/url:150ep3dg][/code]In just some minutes we can add all the properties that we want to inspect.
xBrowse with MARQSTYLE_HIGHLROWRC?
Source code and EXE:<!-- m --><a class="postlink" href="http://rapidshare.com/files/138212030/inspector.zip.html">http://rapidshare.com/files/138212030/i ... r.zip.html</a><!-- m -->
xBrowse with MARQSTYLE_HIGHLROWRC?
Antonio,every time, i connect to RAPIDSHARE, it doesn't work.My internet-connection is very fast. ( Hightspeed )This programm tells me, if i am a AOL-customer to use a different browser.This program tells me, my connection is to slow.[img:36axxftp]http&#58;//www&#46;pflegeplus&#46;com/pictures/rapidshare&#46;jpg[/img:3...
xBrowse with MariaDB
Hi, How the best away to create a xbrowse with some MariaDb File/Fields? Thanks in advance
xBrowse with MariaDB
Exactly the same way as we create xbrowse for DBF, TDatabase, ADO, Array, etc. Syntax of XBrowse is identical for all. [code=fw:33oo8i92]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oRs := oCn:<span style="color: #000000;">RowSet</span><span style="color: #000000;">&#40;</span> <span style="color: #...
xBrowse with MariaDB
[quote="nageswaragunupudi":p8gn1o69]Exactly the same way as we create xbrowse for DBF, TDatabase, ADO, Array, etc. Syntax of XBrowse is identical for all. [code=fw:p8gn1o69]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oRs := oCn:<span style="color: #000000;">RowSet</span><span style="color: #000000;...
xBrowse with MariaDB
Please see: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=36903">viewtopic.php?f=3&t=36903</a><!-- l --> We strongly recommend this approach for browsing and editing records for any database including MariaDB. Please use the template. Please feel free to ask any doub...
xBrowse with Merge RESOURCE
Mr. Linares, the merge using xBrowse "RESOURCE" does not work. ex: oBrw:City:lMergeVert := .t. return error method City...
xBrowse with Merge RESOURCE
This has nothing to do with Resource. If there is a column with header 'city', this works. Example code: [code=fw:1gicu7wr]<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: #00D7D7;">#includ...
xBrowse with Merge RESOURCE
Dear Mr. RAO, Is there any limitation or rules to follow when using oBrw:field:lMergeVert := .T. ..? oBrw:field must be index/the controlling index? obrw:field must be the first column? I tried to use it and here's some pieces of code: [code=fw:sf1pfw52]<div class="fw" id="{CB}" style="font-family: monospace;">......
xBrowse with Merge RESOURCE
oBrw:field must be index/the controlling index? ... YES obrw:field must be the first column? ... NOT NECESSARY While creating the Browse, it is enough to say oCol:lMergeVert := .t. If you want to do it at runtime, oCol:lMergeVert := .t. oBrw:lMergeVert := .t. oCol:WorkMergeData() // call this me...
xBrowse with Merge RESOURCE
Dear Mr. RAO, Now I can arrange with lmergevert on runtime. Thanks so much! Regards, Frances
xBrowse with Merge RESOURCE
I will do another test! as it was in a hurry, I saw code thanks Ronaldo
xBrowse with SQLRDD
Hi to all, Anyone can put a sample with xBrowse with SQLRDD. If it's posible, define only two fields of file with many fields. Thank you. Pere Cordonet
xBrowse with SQLRDD
>> If it's posible, define only two fields of file with many fields. >> Yes. @ .. XBROWSE ...... COLUMNS "field1name", "field2name" ; <other clauses> I have not used SQLRDD. But I have gone through the manual quickly. It appears SQLRDD does not support OrdKeyCount() and OrdKeyNo(). I am not sure if I am right. ...
xBrowse with SQLRDD
I use xBrowse with SQLRDD and can confirm that it works - there are issues with OrdKeyCount() & OrdKeyNo() as nageswaragunupudi says - the only area i have found to be a problem is the "hot key" seeking in a browse. Regards, Pete
xBrowse with SQLRDD
Thank you, for your answer. I'll try substitute these functions ! Pere Cordonet
xBrowse with SQLRDD
[quote="PeterHarmes":3obypo14]I use xBrowse with SQLRDD and can confirm that it works - there are issues with OrdKeyCount() & OrdKeyNo() as nageswaragunupudi says - the only area i have found to be a problem is the "hot key" seeking in a browse. Regards, Pete[/quote:3obypo14] If this is the case, I would suggest that...
xBrowse with SQLRDD
Recno() & Dbgoto exist and work in the normal way - i'm not too sure about Lastrec() as i don't use it - i will do some tests tomorrow to see if this works. Dbseek() also works in the same way (although the softseek parameter seems a bit buggy)
xBrowse with SQLRDD
I need some time for implement this source. When i have a result, i'll comment this. Thank you. Pere Cordoent <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
xBrowse with SQLRDD
Tests on Lastrec Opened orders table - has 7621 rows Lastrec() returns 7628 which is the largest value in the column sr_recno (where the record number/row number) is stored. In the xHarbour Reference - Lastrec() should return the number of records, so I would say this function does not work properly under SQLRDD P...
xBrowse with SQLRDD
Mr. Peter Harmes, I understand. For xbrowse to properly work, 1) oBrw:bKeyCount should be a codeblock which should return the total number of rows. So what function do you advise for this codeblock? 2) oBrw:bKeyNo := { |n| If( n == nil, < serial number of the row >, < goto the n'th row from top> ) } For bKeyNo cod...
xBrowse with SQLRDD
[quote:2kwo4vuf]Opened orders table - has 7621 rows Lastrec() returns 7628 which is the largest value in the column sr_recno (where the record number/row number) is stored. [/quote:2kwo4vuf] What I understood from what little i read the documentation is this. SR_RecNo is maintained like an autoincrement number. When...
xBrowse with SQLRDD
A very slow elementary functions could be: [code=fw:u56ao7g4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">Function</span> SR_OrdkeyCount<span style="color: #000000;">&#40;</span>xOrder<span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">Local</s...
xBrowse with SQLRDD
You can download this sample: <!-- m --><a class="postlink" href="http://www.despachoarteaga.com.mx/VisorSQL.zip">http://www.despachoarteaga.com.mx/VisorSQL.zip</a><!-- m -->
xBrowse with SQLRDD
Mr. Peter Harmes If you are using xBrowse with SQLRDD successfully, can you please tell us how are you building codeblocks for oBrw:bKeyNo and oBrw:bKeyCount ? From what I understand from the above postings, I think the codeblocks I posted earlier should give reasonable results for browsing full tables and where t...
xBrowse with SQLRDD
I have finally changed bKeyCount and bKeyno codeblock It works quite well (with a table with 200 entries) [code=fw:2wwv7zs4]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ <r>, <c> <span style="color: #0000ff;">XBROWSE</span> oBrw<br />oBrw:<span style="color: #000000;">SetRDD</span> <span style="co...
xBrowse with SQLRDD
I dont build a code block for bKeyno, but for bKeycount (where i use it) - i do a SQL count for the number of records that meet the criteria and apply this to a variable and to bKeycount. By the looks of things on the data we have used, the standard xBrowse functionality works fine!!
xBrowse with SQLRDD
If you run a query directly, there are no filters, deleteds, partial tables, ... So I created these features: [url:h552pdag]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=3&t=18670#p97839[/url:h552pdag] My problem was that when clicked on a record always moved to the first line of xbrowse.
xBrowse with TArray
Hi all,Has anybody here tried xBrowse and Array using TArray Class. (xBrowse and TArray object)TArray is a very useful class which allows us to manage arrays with features like a DBF. For Eg. GoTop(), Skip(), Eof(), Bof(), Zap(), Append() etc. and refer array elements with field name instead of the conventional array s...
xBrowse with Tree
Hello friends, Could someone help me in the following problem: 1) create an object with the parameters that I need at the moment; 2) with the object, I create xbrowse with tree; 3) then wanted to take advantage of the xbrowse after a change in the parameters of the query. I've already tried oBrowse: Refresh () and i...
xBrowse with Tree
Create a new object with the revised parameters. Create a new tree from the new object. Then, oBrw:oTree := oNewTree oBrw:GoTop() oBrw:Refresh()
xBrowse with Tree
Mr. Rao, Thanks, it worked. Att. Oliveiros Junior
xBrowse with WaterMark
Hi, Is it possible to put a picture background of xbrowse like watermark? Thanks,
xBrowse with WaterMark
Horizon, Use the same background-color for the image like for the browser With the image-size ( free space around the watermark ) You can adjust the space between the watermarks inside the browser. [color=#0000FF:39kectll][b:39kectll]DEFINE BRUSH oBrush FILENAME "Logo.bmp" oBrw:SetBackGround( oBrush ) oBrush:End() o...
xBrowse with WaterMark
Thank you very much Uwe. It works. But I have a problems with brush. [code=fw:3a34rfjg]<div class="fw" id="{CB}" style="font-family: monospace;">    ::<span style="color: #000000;">oBrw</span>:<span style="color: #000000;">nMarqueeStyle</span> := <span style="color: #000000;">6</span>  <span style="color: #B900B9;">...
xBrowse with WaterMark
[quote:3gl2qp2d] 1. The up/down navigation is slower than before brush in xbrowse. Is it normal? [/quote:3gl2qp2d] Yes. Not only up/down but left/right navigation also. Using brushes is suitable for small browses with fast datasources like arrays, recordsets, etc and small local dbfs Programmer needs to decide the suit...
xBrowse with WaterMark
[quote:ethrr25e] 2. The shape of selection bar is different like below. (Upper brw is without brush, Lower is with.) [/quote:ethrr25e] This is fixed in FWH 17.12. Thanks for pointing out the issue.
xBrowse with WaterMark
[quote="nageswaragunupudi":29bk89do][quote:29bk89do] 2. The shape of selection bar is different like below. (Upper brw is without brush, Lower is with.) [/quote:29bk89do] This is fixed in FWH 17.12. Thanks for pointing out the issue.[/quote:29bk89do] Thanks again.
xBrowse with WaterMark
Hi Mr. Rao, Can you share the solution here if it is simple? Thanks.
xBrowse with WaterMark
xbrowse.prg ( 17.11 ) line 12428 in method PaintCellBack(....) replace line 12428 [code=fw:1h8hbo97]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">if</span> ::<span style="color: #000000;">oBrw</span>:<span style="color: #000000;">lTransparent</span...
xBrowse with a tree with ADO
To All I have a folder with xbrowse that I want to be able to have a master table tree'd to a related table. I have searched the forum and found a screen shot from Renaldo demonstrating its possibility. The master\related tables look like this +Advertising table -- publication1 -- publication2 If anyone can...
xBrowse with array
Hi, I've just recompiled my app with latest xHarbour (commercial) and FW (10.05) and have noticed that the horizontal & vertical scroll bar has disappeared in a xbrowse that browses an array rather than a DBF/SQL Table. I think i can just make out the vertical scroll bar just off of the edge of the browse. If i quer...
xBrowse with array
Update After doing more tests, it seems to do this on some DBF browses as well - i havent found the common thing between the browses yet!! I have downgraded my Fivewin a few times: 10.02 does not work, 09.11 works
xBrowse with array
I think i've narrowed it down. I think the calculation of the size of the browse when building from a resource is being calculated incorrectly. If i manually resize the browse & it's relating dialog based on each of the column widths the scroll bars appear fine. Pete
xBrowse with array
Just checked all other versions of FW and the changes made in FW 10.02 have caused this problem - 10.01 works fine. Can anyone help?
xBrowse with array
Anyone got any ideas? regards, Pete
xBrowse with array
Pete, Are you using resources to create the dialogs where the xbrowses are shown ? If yes, have you specified "TXBROWSE" as the type of control in your resources ? A common mistake is to specify "LISTBOX" instead of "TXBROWSE" <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) ...
xBrowse with array
yes we do use resources to create the dialogs and yes they are specified as txbrowse. An example of how it appears in my resource is below: CONTROL "", 101, "TXBrowse", 0 | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 9, 25, 380, 144 Regards, Pete
xBrowse with array
Any ideas? Regards, Pete
xBrowse with array
Pete, You have to scpecify WS_HSCROLL and WS_VSCROLL styles also in your resource entry: CONTROL "", 101, "TXBrowse", 0 | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP | WS_HSCROLL | WS_VSCROLL, 9, 25, 380, 144
xBrowse with array
Thanks Antonio - works great now!! best regards, Pete
xBrowse with array
very good <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->