Hi, How can sort descending according to one field and ascending according to another field in kbMemTable ? Monir. [Non-text portions of this message have been...
gws, check State property. From delphi help: dsInactive Dataset is closed, so its data is unavailable. dsBrowse Data can be viewed, but not changed. This is...
Did you tryed something like: taFR01.FieldByName('BLOB').AsString := Memo1.Text; because I'm not sure what happens if assigning and the TStrings of a TMemo...
I have my program saving and loading using csv. But I have added two calculated fields 1-currency and 1 float. I have set save and load calculated to true. ...
Hi, Mr. Wilfried I spent a most of the time this morning here ,just to know what field modifiers is and how to use it for sorting, but I failed, Can you help ...
I found the reason of that strange behaviour. It is because I had calculated field BEFORE the BLOB field in the tables' field list. When I moved calculated...
I used code as follows If kbmemtable.state = dsEdit then ......... And when I try to compile it stops on the line with the following "Undeclared identifier...
add DB to your uses clause ... From: Trevor Blanc To: memtable@yahoogroups.com Sent: Wednesday, October 02, 2002 7:46 AM Subject: RE: [memtable] table state I...
Hi, This is described in detail in the help file... hint hint :) A field modifier is one or more extra characters added to the fieldname after a colon. Eg. To...
Hi, Generally you wont need to load values of calculated fields since this is automatically calculated for you. In any case can you send the saved file to me...
Obviously SaveToFile changes the cursor, so that's why FindField(...) leads to two different results - but the newValue is nevertheless not saved... ... Hello...
Hi Monir, For example if you have a table with 2 fields where you wants to sort on, Name and No then: MT.SortFields := 'Name;No:D'; MT.Sort([]); will sort the...
Do you also save and load FieldDefs ? If you do do you have set AutoUpdateFieldVariables to True ? Is it only the calculated fields ? sorry to answer with a...
Boris, I did some debugging and yes it seems to be so, but only if the BLOB field is the last field in the table. -- rgds, Wilfried http://www.mestdagh.biz On...
Hello Kim, there seems to be a severe bug in the TkbmIndexes.DeleteIndex method: // Renumber rest indexes. while (iIndex<FIndexes.count-1) do begin ...
Hi all. I've been developing an app with a few tables that I'll use to store pictures. With files up to, say, 5 MB it saves and loads fine but I got an "Out Of...
Hi, This is a notice to you that support from my side may not be 100% during that period since Ill be in the USA, North Carolina. Allthough I will have a tight...
Hi, If you are using the OnCompress and OnDecompress events of the streamformat, the (de)compression is happening on the full amount of data in memory. The...
Here is a small proj that I created to show you the problem I am having when I try to reload the saved file. ... From: Kim Madsen [mailto:kbm@...] Sent:...
Hi Alexei, ... This is because table is persistent, and you dont close it yourself when the form close. Best is to close tables yourself in a well known place....