Search the web
Sign In
New User? Sign Up
memtable · Discuss the use of kbmMemTable and associated BCB/Delphi components.
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 5286 - 5315 of 6065   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5286
Hello Markus, I just found out that the locate wasn't working properly with 3.09 ex. mds1.SortOn('DESCRIP', []); mds1.Locate('DESCRIP', eRech2.text,...
Pierre Demers
dempier2
Offline Send Email
Jun 3, 2003
12:50 am
5287
Please see the attached file. [Non-text portions of this message have been removed]...
lester@...
lscesuk
Offline Send Email
Jun 3, 2003
2:19 am
5288
Hi I've a kbmMemTable (kbmPhrasen) with about 3500 records. The fields are like this: SDPHPNR AutoInc-Value SDPHPAR Parent-Record (SDPHPNR, or if Top-Level...
performasoftware
performasoft...
Offline Send Email
Jun 3, 2003
9:29 am
5289
Hi Dominik, first try persistent fields, NOT using FieldByName(...). The FieldByName... construction is VERY time expensive, _especially_in_loops_ !!! For...
Jerzy Labocha
buzkowe
Offline Send Email
Jun 3, 2003
11:21 am
5290
... The major fault is that you use a new table and fill it into each iteration. you need a buffer for the generated nodes and then walk this buffer and add...
Franz-Leo Chomse
franzleochomse
Offline Send Email
Jun 3, 2003
11:59 am
5291
Dominik, After reading Franz-Leo's message, I'm sure, that my assumption about function Insertnode() was'nt accurate, and my "solution" is obviously "off...
Jerzy Labocha
buzkowe
Offline Send Email
Jun 3, 2003
12:35 pm
5292
Hi As Franz Leo has stated your code is slow because of the temp table (you could also globally declare some field pointers once) ie Var SDPHPNRField: TField ...
Neven MacEwan
nevenmac
Offline Send Email
Jun 3, 2003
9:11 pm
5293
Hi ... and ... buffer. ... I have changed the code and use the nodes as Buffer. It is a bit faster, but not a lot. Due to the fact that the tree has only about...
performasoftware
performasoft...
Offline Send Email
Jun 4, 2003
7:32 am
5294
Hi, Another approax might be to use VT as Virtual tree and just store the recordnumber in the data. VT will then only retrieve data when it needs to repaint...
Wim van der Vegt
wvd_vegt
Offline Send Email
Jun 4, 2003
8:02 am
5295
Dear Dominik Hi! If you get the help file ($15.00), there are a number of tricks. They include: - Use FieldByName once for each field to create a field object...
Phil Troy
philtroy2001
Offline Send Email
Jun 4, 2003
9:03 am
5296
... Uh... there's not much point advertising the help file if you're going to provide all of the [useful] answers it provides. Either way, the solutions you...
Corey Murtagh
emonk001
Offline Send Email
Jun 4, 2003
9:26 am
5297
Hi! I am using OnCalcFields to fill in a 40 character wide string field on a table of about 32000 records. On a large display, when using a dbgrid, the...
philtroy2001
Offline Send Email
Jun 5, 2003
3:53 am
5298
P.S. Regarding the question below, I put a counter on the recalc calls and got over 750,000 in just several seconds of paging up and down the grid. That...
Phil Troy
philtroy2001
Offline Send Email
Jun 5, 2003
4:57 am
5299
Using v3.00 under BCB4, I have TableA attached to TableB. When I set a range on TableA using SetRangeStart...SetRangeEnd...ApplyRange, nothing happens - all...
Corey Murtagh
emonk001
Offline Send Email
Jun 6, 2003
8:11 am
5300
... Ok, ignore me. My own stupid code bug was at fault :( -- Corey Murtagh The Electric Monk "Quidquid latine dictum sit, altum viditur!"...
Corey Murtagh
emonk001
Offline Send Email
Jun 6, 2003
8:14 am
5301
Phil Since it is a memtable then why use a calculated field? (This is the conclusion I've come to anyway), A 'temporary' field updated at the relevant times...
Neven MacEwan
nevenmac
Offline Send Email
Jun 6, 2003
8:35 pm
5302
... Good comment - But there are many trade offs. If I am dealing with a table with a small number of records and the calculated values don't change then I...
Richard Wilson
rtcw2001
Offline Send Email
Jun 7, 2003
12:24 pm
5303
Hi I need to set a special date format for export via TkbmCSVStreamFormat - Is this possible ? TIA Jens Lund...
jenslund2001
Offline Send Email
Jun 7, 2003
6:10 pm
5304
Dear Neven Hi! I was using a calculated field since there are about 2000 lookup values versus about 32000 records that need to lookup the value. And whenever...
Phil Troy
philtroy2001
Offline Send Email
Jun 8, 2003
4:05 am
5305
Hi! The other day I emailed the group a question about perfromance (see below) with calculated fields. When I removed setrange and instead used a findnearest...
Phil Troy
philtroy2001
Offline Send Email
Jun 8, 2003
5:07 am
5306
Phil The basic problem with OnCalcfields is that it has to be called indicriminately (as you have found) as it cannot make any assumption about what determines...
Neven MacEwan
nevenmac
Offline Send Email
Jun 9, 2003
12:08 am
5307
Phil, ... any If you have to have recalc on fetch, you have to try to speed up the calc as mutch as possible. If data is needed from other database then be...
Wilfried Mestdagh
wilfried_sonal
Offline Send Email
Jun 9, 2003
8:38 pm
5308
Jens, ... Yes, set LocalFormat in OI, and set your date separator to your own format just before saving, and restore it after saving. If you are not running in...
Wilfried Mestdagh
wilfried_sonal
Offline Send Email
Jun 9, 2003
8:54 pm
5309
Phil, thanks for feedback. ... below) ... The latest version use index (if available and active of course) for SetRange. Also avoid filters, if you really have...
Wilfried Mestdagh
wilfried_sonal
Offline Send Email
Jun 9, 2003
8:59 pm
5310
Dear Wilfried Hi! I tried all of those things; it turns out that the problem was not in the calculations but that the SetRange I was using to restrict the...
Phil Troy
philtroy2001
Offline Send Email
Jun 10, 2003
5:47 am
5311
Hello, I was looking over the code and was wondering about a piece of coding in TkbmCustomMemTable.CopyRecords. At the end of the While loop, there is the...
nringsmf
Offline Send Email
Jun 10, 2003
6:46 am
5312
Hello, When creating a kbmMemTable is the following manner "<var> := TkbmMemTable.Create(nil);", the compiler warns of "Constructing instance of 'TkbmMemTable'...
nringsmf
Offline Send Email
Jun 10, 2003
6:46 am
5313
Nick, Aha that is probably the problem that Juan Diego Garcés posted yesterday. rgds, Wilfried http://www.mestdagh.biz...
Wilfried Mestdagh
wilfried_sonal
Offline Send Email
Jun 10, 2003
8:18 pm
5314
I am with difficulties in if creating one table with 05 indices. Sera that alguem could pass me some example as I can make one table would temporaria using 05...
Taz BH
tazbhmg
Offline Send Email
Jun 11, 2003
2:05 pm
5315
I am with difficulties in if creating one table with 05 indices. Sera that alguem could pass me some example as I can make one table would temporaria using 05...
tazbhmg
Offline Send Email
Jun 11, 2003
2:05 pm
Messages 5286 - 5315 of 6065   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help