Search the web
Sign In
New User? Sign Up
IBObjects · IB Objects support list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 36157 - 36186 of 44315   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
36157
... 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@...
Send Email
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...
Harvey
foo010754
Offline Send Email
Jul 1, 2005
8:31 am
36159
... 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...
Lester Caine
lscesuk
Offline Send Email
Jul 1, 2005
10:20 am
36160
Text ... MAJOR ... as ... side ... same 'format' of ... is not...
Harvey
foo010754
Offline Send Email
Jul 1, 2005
11:00 am
36161
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. ...
newgen_315
Offline Send Email
Jul 1, 2005
11:53 am
36162
... 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...
Lester Caine
lscesuk
Offline Send Email
Jul 1, 2005
12:16 pm
36163
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...
Lucas Franzen
biber_et_luc
Offline Send Email
Jul 1, 2005
12:23 pm
36164
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...
Andrei Luís
andrei_luis
Offline Send Email
Jul 1, 2005
2:11 pm
36165
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...
Alan McDonald
metaalan
Offline Send Email
Jul 1, 2005
2:27 pm
36166
... 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...
Helen Borrie
helebor
Offline Send Email
Jul 1, 2005
2:50 pm
36167
Hi all, Sorry helen I think I sent this to the wrong address, but here it is again if someone wants more information let me know I checked the...
newgen_315
Offline Send Email
Jul 1, 2005
3:01 pm
36168
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...
Chuck Belanger
belangerc94805
Offline Send Email
Jul 1, 2005
3:54 pm
36169
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? ... //...
Lucas Franzen
biber_et_luc
Offline Send Email
Jul 1, 2005
4:29 pm
36170
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 ...
Andrei Luis
andrei_luis
Offline Send Email
Jul 1, 2005
5:17 pm
36171
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@...
Send Email
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...
Woody (TMW)
woody_tmw
Offline Send Email
Jul 1, 2005
9:02 pm
36173
... The SQL property of the TIB_Query component: SELECT ..... T1.LASTNAME || ', ' || T1.FIRSTNAME FULLNAME ..... FROM TABLEONE T1 ..... Then use the computed...
Dennis McFall
dennis@...
Send Email
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...
Harvey
foo010754
Offline Send Email
Jul 2, 2005
7:53 am
36175
... 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 ...
Alan McDonald
metaalan
Offline Send Email
Jul 2, 2005
7:59 am
36176
... Thanks Woody, that's exactly the ticket :-) Antti Kurenniemi...
Antti Kurenniemi
Antti@...
Send Email
Jul 2, 2005
10:26 am
36177
... Thank you Dennis, works like a champ :-) Antti Kurenniemi...
Antti Kurenniemi
Antti@...
Send Email
Jul 2, 2005
10:27 am
36178
If either FIRSTNAME or LASTNAME is a NULL, FULLNAME will be a NULL ... From: "Antti Kurenniemi" <Antti@...> To: <IBObjects@yahoogroups.com> Sent:...
Hans
ittybittypro...
Offline Send Email
Jul 2, 2005
2:10 pm
36179
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...
Chuck Belanger
belangerc94805
Offline Send Email
Jul 2, 2005
4:35 pm
36180
... 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...
Geoff Worboys
gworboys
Offline Send Email
Jul 2, 2005
9:58 pm
36181
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@...
Send Email
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...
Laurent GILBERT
l_gilbert_fr
Offline Send Email
Jul 4, 2005
9:06 am
36183
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...
Harvey R Shaw
foo010754
Offline Send Email
Jul 4, 2005
12:32 pm
36184
I mean the RichEdit is connected to a field of the query, naturally via a data source. The RichEdit is not connected to the Query!...
Harvey R Shaw
foo010754
Offline Send Email
Jul 4, 2005
12:37 pm
36185
... 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 ...
Helen Borrie
helebor
Offline Send Email
Jul 4, 2005
12:59 pm
36186
... it's IBO (NOT IB_) compatible. TRichView has both data aware components (TDBRichView and TDBRichViewEdit) which will readily attach to any TDataset ...
Alan McDonald
metaalan
Offline Send Email
Jul 4, 2005
1:45 pm
Messages 36157 - 36186 of 44315   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