topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
xBrowse function | Now I can resolve virtually any source code function call to the variables and edit in AUTOCODE with a wizard.
[img:99kee6jo]https://mybergland.com/fwforum/acd_clip5.jpg[/img:99kee6jo] |
xBrowse function | Dear Mr. Rao,
Thank you for your help. I'm waiting for the other examples.
I have started programming a wizard.
I will use [b:1bxxa4jl]WebView2 [/b:1bxxa4jl]for the input screens.
It is a good exercise to get more familiar with web development and also mod harbour.
The programming of the input masks is very comfor... |
xBrowse functionality | Hello Rao ,
there are many methods to invoke a column :
oBrw:cHeader:Value
oBrw:oCol(cHeader ):Value
oBrw:aCols[1]:Value
is there a way to call a column with the name of the field?
Regards Maurizio |
xBrowse functionality | Search for a column whose :Expr is same as the field name |
xBrowse functionality | Thanks Rao
oBrw:fCol('CODIVA')
METHOD fCol(cField) CLASS TXBrowse
Local n := 0
FOR n := 1 to len(::aCols)
IF HB_IsString(::aCols[n]:cExpr) .and. UPPER(::aCols[n]:cExpr) == UPPER(cField)
exit
ENDIF
next
return If( n > 0, ::aCols[ n ], nil )
Regards Maurizio |
xBrowse group row | I have dbf:
[img:2st10l0l]http://www.intersped.co.rs/dbf.jpg[/img:2st10l0l]
I would like to browse receive the following:
[img:2st10l0l]http://www.intersped.co.rs/browse.jpg[/img:2st10l0l]
I tried to use oBrw:invoice:lMergeVert := .t. ... but how to group the column total as ... |
xBrowse group row | If you want to browse like in the second picture please try
oBrw:Invoice:lMergeVert := .t.
oBrw:Total:lMergeVert := .t.
both. |
xBrowse group row | If I try
oBrw:Invoice:lMergeVert := .t.
oBrw:Total:lMergeVert := .t.
total column is not grouped correctly, I do not want this result:
[img:39wro5u9]http://www.intersped.co.rs/browse2.jpg[/img:39wro5u9]
Regards,
Miloš |
xBrowse group row | Please try the logic in this sample program:
[code=fw:1iwidxll]<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;">#include</span> <span style="color: #ff0000;">"xbrowse.ch"</span><br... |
xBrowse group row | hi Mr. Rao
about this xBrowse,
I would like one row for each INVOICE and put near to INVOICE NUMBER "+" or "-" bmp to expande or collapse (under the INVOICE NUMBER or
to the right is indifferent) that INVOICE with value details
is it possible?
thank you |
xBrowse group row | That is achieved by Tree browse. Most of the time, we adopt tree browse for similar cases.
In this case, the user wanted this way, so I provided this solution for him. |
xBrowse group row | hi Mr. Rao
I'm trying wbrwtree sample but get rhis error:
Application
===========
Path and name: C:\fwh1709\samples\xbrwtree.exe (32 bits)
Size: 3,488,768 bytes
Compiler version: xHarbour 1.2.3 Intl. (SimpLex) (Build 20161218)
FiveWin version: FWHX 17.09
C compiler version: Borland/Embarcadero C++ 7.0 (... |
xBrowse group row | Please make sure "customer.dbf" is in the same folder. |
xBrowse group row | [quote:3eyg2gis]Please make sure "customer.dbf" is in the same folder.[/quote:3eyg2gis]
yes, it is! |
xBrowse group row | Tested again and it is working here.
Command prompt
[code=fw:260eebh4]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cd\fwh\samples<br />buildh xbrwtree<br />or<br />buildx xbrwtree<br /> </div>[/code:260eebh4]
Working |
xBrowse group row | hi Mr Rao
my Customer.dbf is empty.
if I try to open it by DBF editor i get INVALID DBF file
if I try to open it by excel (file dBase) it has just COLUMN HEADER
thank you |
xBrowse group row | That is the reason.
If you do a fresh install of FWH you get a full customer.dbf |
xBrowse group row | hi Mr Rao
yes That was the reason!
thank you. |
xBrowse header | Hi friends,
oCol := oBrw:AddCol()
oCol:bStrData := { || Tran(ARQCHEQ->VALOR,"@e 99,999,999.99") }
oCol:cHeader := "VALOR"
oCol:nDataStrAlign := AL_RIGHT
How i can do "VALOR" header aligned right?
Regards,
Wanderson. |
xBrowse header | oCol:nHeadStrAlign := AL_RIGHT
Just a remark, try to use define or defefine xbrowse command, alignment will be done automatically
in your case
redefine xbrowse obrw id xxxx of yyy ;
fields ARQCHEQ->VALOR ;
pictures ,"@e 99,999,999.99")
....
Your header does not align right because you are adding an alpha column ... |
xBrowse header | Thank you Richard, works great!
Wanderson. |
xBrowse header | [code=fw:3f20yexb]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">redefine</span> <span style="color: #0000ff;">xbrowse</span> obrw <span style="color: #0000ff;">id</span> xxxx <span style="color: #0000ff;">of</span> yyy ;<br />fields ARQCHEQ->VALOR ;<br />pictures ,<span style="... |
xBrowse header from an Array | To All
I know I have done this before ... I am creating an empty array without any rows and assigning it to xBrowse. I remember I could define the Headers from an array ... I do not want any rows to show in xBrowse .. I just want to define my columns with headers .. this does not work.
[code=fw:12kq50tl]<div class="fw... |
xBrowse header from an Array | Try
[code=fw:21cl6hqj]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />HEADERS aColumns<span style="color: #000000;">[</span> <span style="color: #000000;">1</span> <span style="color: #000000;">]</span> ; <span style="color: #B900B9;">// <----- here</span>... |
xBrowse header from an Array | Christabol
Unfortunately .. that did not work ..
[img:15jolxc5]http://i58.tinypic.com/raoq6b.jpg[/img:15jolxc5]
Rick Lipkin |
xBrowse header from an Array | I think you have to build the Array in this way!
[code=fw:2mmnzfuc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />aPlan := <span style="color: #000000;">{</span><span style="color: #000000;">}</span><br />aColumns := <span style="color: #000000;">{</span><span style="... |
xBrowse header from an Array | Anton
Your solution works as long as aPlan has a single record .. I wanted to leave ( the data ) aPlan empty.
Thanks
Rick |
xBrowse header from an Array | To All
Kind of a sloppy work around was to resize the array to zero ON INIT
[code=fw:2syk70o5]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oCust <span style="color: #0000ff;">NOWAIT</span> ;<br /> <... |
xBrowse header from an Array | Hey Rick;
I'm a friend of anything that works. Even better If it can be done elegantly but at the end of the day all that matters is if it works and how much time/effort it took. Admittedly I like it simple, stupid and quick. So far I happen to be doing the same thing as you to solve this very same problem. Thank ... |
xBrowse header from an Array | Rick,
I don't know if this would help, but did you know you can create temp data files in memory? They are like arrays but work just like DBFs. There was a recent thread on this. Perhaps this would solve your header problem.
James |
xBrowse header from an Array | Rick
Try,
REDEFINE xBROWSE oLbx3 ;
ARRAY aPlan ;
HEADERS aColumns ; // <----- here
[color=#BF0000:lpitzzpu] COLUMNS 1,2,3,4,5,6,7,8,9,10,11 ; <------ Add[/color:lpitzzpu]
COLSIZES 65,43,43,43,43,43,43,43,43,43,43 ; // 11
ID 17... |
xBrowse header from an Array | Method-1
[code=fw:3q69jb9b]<div class="fw" id="{CB}" style="font-family: monospace;">aPlan := <span style="color: #000000;">{</span><span style="color: #000000;">}</span><br />aColumns := <span style="color: #000000;">{</span><span style="color: #000000;">}</span><br /><br />aHeaders := <span s... |
xBrowse header move | Hi,
Is there a way to disable the column swap if you drag a header of a xbrowse to another column?
I only want the header moved, and not the column.
Thanks,
Marc |
xBrowse header move | Hello Marc,
the header is connected to the Column,
but You can use my solution ( You question before ),
to change the column-titles ( rename => title 1= title 2, title 2 = title 1 )
The change You can define on any action ( buttons, mouseclick inside the xBrowse ... )
[code:1509tcev]
// Change a Col-title on Button-... |
xBrowse header move | Uwe,
I used your suggestion for changing the text in the headers, but I was just wondering I could change the action that is executed for swapping colums into just swap the headers...
In tsbrowse there was a function that was called everytime you swap columns.
Regards,
Marc |
xBrowse header move | Hi,
Is there than a possibility to disable the column-swap?
Thanks,
Marc |
xBrowse header move | Marc,
oBrw:lAllowColSwapping := .F. |
xBrowse header move | Thanks Antonio
Regards,
Marc |
xBrowse header sort change picture | At the moment if I change the sort order of xBrowse I use to change the header picture :
oxBrw:LButtonDown( 1, 61, 0 )
oxBrw:LButtonUp( 1, 61, 0 )
to simulate a click on the header.
Sure there is a better way.
Thanks in advance
Otto |
xBrowse header sort change picture | Hello Otto,
can You explain a bit more in detail, what You want to do ?
There are many possible ways, to change the sort order of the columns :
On Button-action, move the columns with the mouse,
swap columns with mouse-click on a header, right mouse-click inside a data-area and more ...
Just like the text of the head... |
xBrowse header sort change picture | Hello Uwe,
thank you for your answer.
This is what I want to do:
I delete a record –
then I refresh() the xbrowse –
after the xbrowse gets focus again I want that the sort order is on column 1.
The bitmap must be changed that column 1 is selected.
Thanks in advance
Otto |
xBrowse header sort change picture | Hello Otto,
I included the header-painting inside the delete-button-action
It is just the basics, to give You a idea, much more fine-tuning is possible.
There could be a test, if the database contains no deleted record < recall >,
change back to green and so on.
A solution could be, a index on deleted records.
In t... |
xBrowse headers | Hallo zusammen,
benutzt irgend jemand xBrowse ?
Ich hab folgendes Problem, der Header wird nicht angezeigt, wenn keine Daten vorhanden sind.
Ich habe eine Scope gesetzt und manchmal sind halt keine Daten da, die diese Bedingung erfüllen. Somit sind die Datenzeilen leer. Dann wird aber auch der Header nicht angezeig... |
xBrowse headers | Stefan,
In Class TXBrowse Method Paint() comment out this line and please try it again:
[code:2go51l6t]
if ::nLen == 0
// ::EraseData( nFirstRow )
return nil
endif
[/code:2go51l6t] |
xBrowse headers | Die Lösung gibts hier
[url:2hz4ecfm]http://fivetechsoft.com/forums/viewtopic.php?t=7241[/url:2hz4ecfm]
Stefan |
xBrowse headers disappear | I am using xBrowse (FWH 2.6) to show database registers (not arrays)
It works ok but when I move the scroll bar vertically, and, sometimes when I move from a register to the next, the headers disappear (that is, get painted blank). Usually, the get repainted when I manually force a "Goto begining or "goto end" but tha... |
xBrowse headers disappear | Rafael,
I had this and others problems with xBrowse that was solved in 2.7.
Try edit xBrowse.prg and change all ::lRefreshOnlyData to .F.
It will force xBrowse to refresh all including headers and footers
Regards
Maurilio |
xBrowse headers disappear | Maurilio:
Thanks for your answer. I got a similiar suggestion from Biel in the FWH Spanish forum. I tried it and have found that it seems enough to comment the line ::lRefreshOnlyData := .T. in the VScroll method.
Hope that this information is usefult to somebody else.
Thanks for your help
Rafael |
xBrowse horizontal and vertical lines colors | Hi!
Where I must change into xBrowse class to let us change the color of horizontal and/or vertical lines?
Regards,
Maurilio |
xBrowse horizontal and vertical lines colors | Maurilio,
Class TXBrowse uses three pens to draw the lines:
[code:qlx0zupp]
DEFAULT ::hBtnShadowPen := CreatePen( PS_SOLID, 1, GetSysColor( COLOR_BTNSHADOW ) ),;
::hWhitePen := CreatePen( PS_SOLID, 1, GetSysColor( COLOR_BTNHIGHLIGHT ) )
if &... |
xBrowse horizontal and vertical lines colors | Thanks a lot, Antonio!!!
I changed the color and it worked fine.
Regards!
Maurilio |
xBrowse how to change bound array | On a TAB I would like to show an XBrowse. If I switch from one to the other and I would like to change the ARRAY bound to the xBrowse.
I do it this way but I get an error.
Do I need one xBrowse per folder or could I change the array during runtime.
Thanks in advance
Otto
[code=fw:1kcdolbh]<div class="fw" id="{CB}" s... |
xBrowse how to change bound array | Otto,
Try a sysrefresh() bewteen the setArray() and Refresh(). If that doesn't work, then you may want to try compiling a copy of xBrowse and linking it so you can get line numbers in the error message. This way you can see which line is erroring out.
James |
xBrowse how to change bound array | Hello James,
thank you for your answer.
The error occurs in this line:
nWidth += ::ColAtPos( nPos++ ):nWidth + COL_SEPARATOR
But maybe I need a special reset command.
The sample with SETRDD() xBrwalia.prg in the samples works well.
I will have a closer look into SETARRAY-method.
Best regards,
Otto |
xBrowse how to change bound array | Otto,
[code=fw:1vbn0wbx]<div class="fw" id="{CB}" style="font-family: monospace;">Error description: <span style="color: #000000;">Error</span> BASE/<span style="color: #000000;">1081</span> Argument error: +<br />Args:<br /><span style="color: #000000;">[</span> <span style="color: #000000;">1</span><span style="... |
xBrowse how to change bound array | Hello James,
If I change the SetArray -method like this it is working - but I am not aware of the side effects:
Best regards,
Otto
[code=fw:1908jp43]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">if</span> ::<span style="color: #000000;">lCreated</span><br /> <br ... |
xBrowse how to change bound array | Otto,
It looks like it might be a bug. If Antonio doesn't respond to this thread in a day or two, I would email him with a simple example program that shows the error, along with your solution.
James |
xBrowse how to change bound array | Hello James,
thank you. I forgot to mention that I am still on 9.01 FWH. Maybe this is resolved in one of the most current releases.
I will download tomorrow the last version an try with this.
Best regards,
Otto |
xBrowse how to change bound array | Otto,
I have a newer version and the code is slightly different. Try this
[code=fw:hx39m6z2]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">if</span> ::<span style="color: #000000;">nDataType</span> == DATATYPE_ARRAY<br /> <span style="color: #00C800;">if</span> S... |
xBrowse how to change bound array | Mr Otto
I have a running application with tabs and switching arrays. I implemented it when xbrowse was not so mature.
If I have to rewrite that code now, I might switch browses instead of arrays. I am giving a small sample working application here.
[code=fw:asidooa1]<div class="fw" id="{CB}" style="font-family: monospa... |
xBrowse how to change bound array | Hello Mr. Rao,
Thank you for your help.
I too use xbrowse the same way you suggest especially if I mix listbox and xbrowse on different Tabs of a folder.
Only I saw that xBrwalia.prg lets you switch between different dbf-files I tried to do it with Arrays but with no success.
I compared the SETRDD and the SETARRAY meth... |
xBrowse how to change bound array | Otto,
to change the array of a xbrowse I use
[code=fw:17nib9t9]<div class="fw" id="{CB}" style="font-family: monospace;">::<span style="color: #000000;">oBrw</span>:<span style="color: #000000;">aArrayData</span> := ::<span style="color: #000000;">aNewArray</span><br />::<span style="color: #000000;">oBrw</span>:<spa... |
xBrowse how to change bound array | Hello Stefan,
thank you so much. Your code is working for me.
Best regards,
Otto |
xBrowse how to change bound array | Mr Otto
[quote:chwe73ji]I compared the SETRDD and the SETARRAY method and found out commenting out some lines of the SETARRAY method you can get it working.[/quote:chwe73ji]
Then let me too try it. When I tested with the above two arrays in my example, it worked well. ( Because the two arrays did not have the same str... |
xBrowse how to change bound array | Dear Mr.Otto,
This code is working for me
[code=fw:2m5dsers]<div class="fw" id="{CB}" style="font-family: monospace;">oBrwMenu:<span style="color: #000000;">aArrayData</span>:=aMenu<br />oBrwMenu:<span style="color: #0000ff;">Update</span><span style="color: #000000;">(</span><span style="color: #000000;">)</... |
xBrowse how to change bound array | Mr Anser
The point is that the promised behavior of SetArray is giving errors. If so that need to be rectified by FWH.
It is true we can achieve the objective in some other ways.
The promised behavior is that at run time we can change the datasource from any to any.
If there are bugs in this feature, they have an oppo... |
xBrowse how to change bound array | Otto,
Please try my suggested code in my previous message. Just comment out the one line. This line is not in the current version of xbrowse. This will tell us if the problem has been fixed in the current version.
James |
xBrowse how to change bound array | James,
when I am at home I try and give you a feedback.
Best regards,
Otto |
xBrowse how to show 1 DBF in 2 browser with diff. indexes ? | Hello,
I must show 2 browser with different indexes
the first UNIQUE ( index by < names > ) the second ( Index by < names + articel > )
is that possible ?
The problem :
before I used a customer.dbf and a article.dbf with relation on customer-name.
It works fine but It can be, that the custumer is not included in cus... |
xBrowse how to show 1 DBF in 2 browser with diff. indexes ? | you can open de same database in two diferenta areas
use customer index cust1 shared new alias data1
use customer index cust2 shared new alias data2
sele data1
xbrowse
sele data2
xbrowse |
xBrowse how to show 1 DBF in 2 browser with diff. indexes ? | Marco,
thank You very much.
The problem was, to include / change the logic of my existing code.
Belongs to my extra Network-library and some other functions.
It seems I got it working now.
best regards
Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
xBrowse how to show 1 DBF in 2 browser with diff. indexes ? | If you use database objects ( so much easier ), you simply open two different objects. It's a very easy solution. Also, you don't have to track "areas" ... |
xBrowse how to show a button-seek-result on top | Mr. Rao,
thank You very much
tested but the seek-result is still displayed on different row-positions
[color=#0000FF:201m0bdi][b:201m0bdi]("TOUREN")->(DBSEEK( TRIM(cTour) ) ) // on Button-action
oBrw1:nRowSel := 1
oBrw1:Refresh()[/b:201m0bdi][/color:201m0bdi]
the result of the other test
[color=#0000FF:201m0bdi][b... |
xBrowse how to show a button-seek-result on top | Mr Uwe
It is working for me here.
Please try this code.
[code=fw:5o15cws6]<div class="fw" id="{CB}" style="font-family: monospace;">func xbtest<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> field STATE<br /> <span style="color: #00C800;">local</... |
xBrowse how to show a button-seek-result on top | I'm trying to show the result of a seek from button on browser top
but it is shown on different places
I tested :
VSetPos(1)
VGoTop()
but it is not the solution I need.
The first found record must be placed on top-position.
I remember there was a solution ( post ), but couldn't find it.
[img:211aeipc]http://www&... |
xBrowse how to show a button-seek-result on top | Glad to see you are using the new features of recordselector. Text, pointer bitmap and header bitmap.
You asked in another thread. To change the recordselector text color, please set oBrw:nClrText := <nNewColor> and call oBrw:Refresh().
Now coming to your question.
oBrw:nRowSel := 1 and oBrw:Refresh() should bring t... |
xBrowse how to show a button-seek-result on top | Mr. Rao,
Thank You very much
Your sample works and I got it working as well.
From inside my program I added the following lines :
instead of buttons the value is selected from a second browser ( with a different array related to the index )
In case of the defined index the browser shows different values can be selec... |
xBrowse how to use BACKGROUND and cellcolors | It seems :bClrStd doesn't work using xbrowse BACKGROUND
[img:1lkz6toy]http://www.pflegeplus.com/IMAGES/XbrwBack.jpg[/img:1lkz6toy]
I added a abrush to a original from the sample-folder
@ 20,20 XBROWSE oBrw SIZE -20,-20 PIXEL OF oDlg ;
DATASOURCE aData ;
COLUMNS 2,3,4,5,6, 7 ;
HEADER... |
xBrowse how to use BACKGROUND and cellcolors | any solution <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
I tested a solution to define a background color
that works with a defined column :bClrStd
[code=fw:2inp03fs]<div class="fw" id="{CB}" style="font-family: monospace;"> <br /><span style="color: #B900B9;... |
xBrowse how to use BACKGROUND and cellcolors | No solution for the problem <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
Needed :
a combination of xbrowse background-brush and using column :bclrstd
( [color=#0000FF:12xvgw9o]photo-assembly from colored background[/color:12xvgw9o])
[img:12xvgw9o]http://ww... |
xBrowse how to use BACKGROUND and cellcolors | In the meantime I'm using a solution testing 3 different styles
and working on a defined xbrowse background.
1. Full cell-color + defined 2. color-area
2. cell-color-area on xbrowse-brush
3. full cellsize-color
defined vertical textposition
images are centered and resized keeping the aspect ratio
[img:jd0nt629]http... |
xBrowse how to use BACKGROUND and cellcolors | Adolfo,
[quote:3t330lkj]how did you do to put different backgrounds colors on a column,
I can do it with only 2 options, I see you use a variety of them.[/quote:3t330lkj]
shows how to define cell-colors for different age-groups
[code=fw:3t330lkj]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />... |
xBrowse how to use BACKGROUND and cellcolors | Uwe.
A question, how did you do to put different backgrounds colors on a column, I can do it with only 2 options, I see you use a variety of them.
Any idea, sample will be appreciated.
Thanks in advance
From Chile
Adolfo |
xBrowse how to use BACKGROUND and cellcolors | Thanks UWE, simple, I didn`t figure it out.
Thanks again.
Grettings
From Chile
Adolfo |
xBrowse images ( JPG PNG BMP ... ) | Hello...
i comeback with new change to xbrowse, i will wait for suggestions and opinions
it 's a prototipe, i do not show code yet
we can show images on cell without added array, no need methods
METHOD AddResource( cRes )
METHOD AddBmpFile( cFile )
METHOD AddBmpHandle( hBmp )
New DATA bStrImage // String data co... |
xBrowse images ( JPG PNG BMP ... ) | Hello Daniel,
thank you for this nice extensions.
I did some tests.
This is really impressive.
Best regards,
Otto
[img:18gn2s9o]http://www.atzwanger-software.com/fw/danclip1.jpg[/img:18gn2s9o] |
xBrowse images ( JPG PNG BMP ... ) | Excellant improvement to XBrowse. Hope to get this in 9.03 |
xBrowse improvement | Hello Nage ,
there is a request in the spanish forum about SQL and xBrowse .
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=32261">viewtopic.php?f=6&t=32261</a><!-- l -->
the problem is the delay in a select with many many records .
I saw that browse for SQL ( like... |
xBrowse improvement | Maurizio
I do not know if MySql has the ablilty to create a recordset with a local cache :
[code=fw:2an9pxzk]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oRsCopr := TOleAuto<span style="color: #000000;">(</span><span style="color: #000000;">)</span>:<span style="color: #00C800;">New</span><s... |
xBrowse improvement | Rick ,
I use already
oRsCopr:CursorLocation := 3 // local cache <------ here
Thanks ,
Maurizio
<!-- w --><a class="postlink" href="http://www.nipeservice.com">www.nipeservice.com</a><!-- w --> |
xBrowse in 2 windows | I have a small problem in displaing info from two dbf.files with relation.
1. In first main window i want to display list of simple information from 1-st base, second should contain filtered info from second base. By move in master window the list in detail must be refreshed.
2. Can I do this with MDI Window struct... |
xBrowse in 2 windows | Hello Eugeniusz
to use 2 Browsers in relation is possible
in both, a window or dialog.
I will do a sample in the DB-Tools.
It will have a vertical splitter as well,
so you can resize a browser.
I hope, it is not to urgent, so you can
get the source how to handle it.
Greetings
Uwe <!-- s:lol: --><img src="{SMILIES_PA... |
xBrowse in 2 windows | Eugeniusz,
Please review fwh\samples\gallery\onemany\* |
xBrowse in 2 windows | [quote="Eugeniusz Owsiak":2tu4er3o]I have a small problem in displaing info from two dbf.files with relation.
1. In first main window i want to display list of simple information from 1-st base, second should contain filtered info from second base. By move in master window the list in detail must be refreshed.
2. C... |
xBrowse in FWPPC | Hi,
I am trying to use xBrowse along with FWPPC. Unfortunately, I am getting the following link errors
FiveCEC.lib(XBROWSEC.obj) : error LNK2005: HB_FUN_XBRWSCROLLROW already defined in FiveCE.lib(XBROWSE.obj)
FiveCE.lib(XBROWSE.obj) : error LNK2001: unresolved external symbol HB_FUN_PALBMPFREE
FiveCE.lib(TREES.obj) ... |
xBrowse in FWPPC | I thonk no possible on fwppc also |
xBrowse in cell of other xbrowse | Hello friends.
I need to insert a xBrowse into a cell of another xBrowse.
Is this possible?
Any examples of how to do ?, if possible.
Greetings. |
xBrowse in cell of other xbrowse | Francisco
You can use EDIT_GET on the cell you wish to activate and use the Pre and Post code blocks to fire off a user defined function to do anything you want.
In this example snipit from an invoicing browse .. I am editing the Stock Number cell and calling out a function InvtLook() to verify the part number again... |
xBrowse in cell of other xbrowse | Rick, thanks for your reply.
Maybe I don't explained correctly ( my bad english).
What I want to do is to use cells of xbrowse1 and insert other xBrowses into xBrowse1's each cells..
Is't possible? |
xBrowse in cell of other xbrowse | Something like this, I want to do.
Anybody?
[url=http://www.4shared.com/photo/ScnBydNQba/xbrwxbrw.html:3vtb3bkh][img:3vtb3bkh]http://dc644.4shared.com/img/ScnBydNQba/148a413c098/xbrwxbrw.bmp[/img:3vtb3bkh][/url:3vtb3bkh]
Regards |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.