Hi There! kbmMemtable.hlp uploaded under: http://groups.yahoo.com/group/memtable/files/UserUploads/ There is also a cross platform help. (I hope it is "cross ...
Rolf, this is great ;-) nice work thanks ;-) I have few errors but it is working... I will add 2 link in FAQ: - faq.zip for downloadeble FAQ in HTML - hlp.zip...
Kim, Thanks for the suggestion. I'll take a look at that. Cheers, Andy Leiper. ... From: Kim Madsen To: memtable@yahoogroups.com Sent: Saturday, August 31,...
Wilfried Yes, I created three new fields using the field editor - an integer field and two string fields. And on double clicking in Object Inspector on ...
Rolf, I tryed again: After startup: Cannot load the file RoboEx32.dll (whatever it can be) Then: An error exists in the help file, contact your vendor ;-)...
... RoboEx32.dll is a utility DLL for Help Files created with RoboHelp. It extends the possibilities of then standard windows help DLL. Regards from Germany ...
Franz-Leo, meaning I best have to add a link to download this DLL ? witch are the extended possibilities ? -- rgds, Wilfried http://www.mestdagh.biz...
Wilfried, the extensiones are something like "WinHelp 2000". Don't ask me what it is. I have deactivated it but ... he say's it's nessesary. I tryed the Delphi...
Hi, You might be able to do it with SearchRecordID. Eg. ID := PkbmRecord(mtAtt.ActiveBuffer).RecordID; mtMain.CurIndex.SearchRecordID(ID, Index); mtMain.RecNo...
Hi all, Is kbmMemTable threadsafe table? Or I have to use it throw TkbmThreadDataSet component like this // Put it on a form, link the dataset property to...
Monir, It is thread safe as far as I can see. the ThreadDataSet can lock it if you need it from within other thread (including the main thread). -- rgds,...
Hi, kbmMemTable is threadsafe without needing the threaddataset. That one was invented for making _other_ dataset types threadsafe. best regards Kim Madsen ...
Thank you for your reply Do I have to use lock every time I use it, or just use it inside a thread without fear? Monir. ... From: "Kim Madsen" <kbm@...>...
Hi, If you are not using dataaware controls on the table, you can go right ahead and use it directly without locking. If you _are_ using dataaware controls,...
Hi Kim, are you sure about this? When I insert the following line before line 01 MessageBox showing mtAtt.FieldByName('xx').AsString and after line 03 ...
Hi, in kbmMemTableReg.pas at line 321 "procedure TkbmMemTableFieldLinkProperty.Edit;" errors start, seems to me a define is not OK. Arno...
Arno Garrels
arno.garrels@...
Sep 7, 2002 9:09 am
4779
Hi, Thank you for your bugreport. Ill check it. I must confess that most debugging is taking place in D5/D6/D7 along with BCB6 occasionally using D3. D4 is...
Hi Delphians Im developing a Multi Thread Application that works with KBMMemTable frequently in each thread. Is MemTable Thread Safe or not. If it is not, Show...
Hi, Yes, kbmMemTable is threadsafe. But beware that VCL controls are not. Thus if you have attached any dataaware controls to kbmMemTable, you might get...
as a general rule use attached tables in thread without useing dataa aware controls to it. also cosider if you realy need a thread !!! many programmer use...
What do mean by attached tables? I have memTables placed in single data module, without data aware controls , then I accessed the tables using threads, is...
What will be the situation when two threads accesse the same memTable and one of them set a filter to true and the second set it to false? Is it going to work...