... I'm using IB_Query. The data is stored when I call Execute in the code, but the IB_Query component's BeforePost does not execute at any point. Strange. ...
Antti Kurenniemi
Antti@...
Jul 1, 2005 8:21 am
36158
Well, actually I was playing devils advocate. We are working on requirements submitted to us. Exchanging all our memos is a MAJOR job and would affect large...
... The thing to bear in mind that what is STORED in the memo is just raw text. Changing a tool means you need to be sure the same 'format' of message is...
Hi all, I need help badly, I do not understand this problem at all. the error is 'Cannot insert a new row' which seems to occur after the database is created. ...
... Plain text - no formating? Then any Memo component will produce the same 'data' in the memo. There is no need for anything other than IB_Memo ;) -- Lester...
Daniel, already answered yesterday in the firebird support group. Set RequestLive of your query to true (and ReadOnly to false). If this doesn't help we need...
Hello again, I don't know if it is possible do what I need 'automatic'... My scenario: Form of Sales I need bring up the product list price and feed the sale...
The IB_CustomGrid has a protected method - function SelectCell(ACol, ARow). How do I access this function? When I try I'm told "Undeclared identifier" OR what...
... Not with TIB_LookupCombo, since it is designed to automate the linking of a value - usually a key value - to a static lookup. So, if you need to override...
Hello, Lester and Helen (and anyone else): Thank you kindly for your replies, but a few essentials are being missed that I think are important, but perhaps...
Daniel, ... Why don't you simply set a breakpoint within this code and find out which one it is? - or you the try..except block I've added in the code? ... //...
Hi Helen, thanks for your ideas. But I feel it is like use a cannon to kill a moskito!!! I will remove reference on KeyLinks to price, and use something like ...
Hello again. I have a table with people's names in it, split to firstname and lastname fields. How would I go about having the name formatted from the two...
Antti Kurenniemi
Antti@...
Jul 1, 2005 8:48 pm
36172
From: "Antti Kurenniemi" <Antti@...> ... separate ... Select (LastName || ', ' || FirstName) as FullName, OtherFields from Names If there are nulls in...
... The SQL property of the TIB_Query component: SELECT ..... T1.LASTNAME || ', ' || T1.FIRSTNAME FULLNAME ..... FROM TABLEONE T1 ..... Then use the computed...
Dennis McFall
dennis@...
Jul 1, 2005 9:13 pm
36174
Hi Lester, I had a feeling my reply would get your response. But no not plain text, formatted. That was what my initial message was about, the need for a memo...
... again - the use of TRichView linked via IBO queries and using their binary format and dynamic styles is the best way to travel for the ultimate in WP ...
Hello: Still trying to get OnCallBack to work with a selectable stored procedure. A recent off line email from someone indicated to me (my interpretation of...
... No. OnCallback occurs entirely within the TIB_DataSet based on a combination of rows fetched, the time elapsed and the properties you have set. ie. Make...
Thanks for the information. Won't be a problem at this particular case, but I'm sure eventually I'll run into that as well - much to read about SQL as well... ...
Antti Kurenniemi
Antti@...
Jul 3, 2005 7:45 am
36182
Hi Jason, I don't have time now to make you a sample application, sorry.... The problem occurs in all editing forms when CachedUpdates is enabled and I do a...
Hi Alan Do I understand correctly - TRichView is TIB_XXX compatible? TIB_RichEdit can be used for formatting text: Bold, Colors etc.? I have placed a...
... TIB_RichEdit has the capability to display richtext but not to format it itself. It's handy for bits of stored helptext, etc., but it has nothing ...
... it's IBO (NOT IB_) compatible. TRichView has both data aware components (TDBRichView and TDBRichViewEdit) which will readily attach to any TDataset ...