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...
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 38049 - 38078 of 44319   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
38049
... OK, let's just get right to the bottom of the problem. This is the block that causes the problem: * create main artist id field */ ALTER TABLE SONGS ADD...
Helen Borrie
helebor
Offline Send Email
Feb 1, 2006
8:22 am
38050
Helen, you're a star! Everything you say makes perfect sense now looking back at my earlier findings. Should have been able to crack this one myself, but then...
lucasdelul
Offline Send Email
Feb 1, 2006
5:08 pm
38051
I need to install IBObjects in Delphi 4 and in Delphi 6 so I downloaded IBO4_6_A_FullSource.zip and are trying to install it. I encounter the following...
Gerard J.M. Houtenbos
oddo49
Offline Send Email
Feb 1, 2006
8:16 pm
38052
... Same directory as what? fbclient.dll and gds32.dll need to be in the same directory as the application (ib_sql.exe). If this wasn't what you meant by the...
Helen Borrie
helebor
Offline Send Email
Feb 1, 2006
9:49 pm
38053
... For Delphi 4, 1) Remove the packages that the Components|Install components applet is displaying; then close Delphi. 2) Use Search to find all of the...
Helen Borrie
helebor
Offline Send Email
Feb 1, 2006
10:19 pm
38054
... That did the trick. Many thanks for your assistance. I greatly appreciate it. Mitch...
mitch_landor
Offline Send Email
Feb 2, 2006
3:27 am
38055
I had this general series of ib_query command: ib_query.open //select *, shows all table contents on a grid ib_query.search //put the query in search mode ...
jeffplata
Offline Send Email
Feb 2, 2006
9:01 am
38056
Hi, ... Here's the code behind the Cancel button of the TIB_UpdateBar(found in IB_UpdateBar.pas, around line 695): if State = dssSearch then begin ClearSearch;...
Daniel Rail
danielrail
Offline Send Email
Feb 2, 2006
9:46 am
38057
Is there anybody who can install IBO on Delphi2? What version of IBO need?? Thanks in advance...
igor_4646
Offline Send Email
Feb 2, 2006
10:13 am
38058
... Pretty unlikely. The native data access components *might* work in Delphi 2; the visual components and design-time editors won't work; and the...
Helen Borrie
helebor
Offline Send Email
Feb 2, 2006
10:40 am
38059
Hi I have TIB_LocateEdit, TIB_Grid and TIB_Query. I would like set ActiveControl := IB_Grid1 when user press Enter on LocateEdit field. If I use OnKeyPress...
malyv2
Offline Send Email
Feb 2, 2006
11:55 am
38060
Helen, let's first focus on Delphi 4. I deleted IBObjects using the uninstaller, and for certainty I deleted all *_D4.bpl files on my computer. Then I...
Gerard J.M. Houtenbos
oddo49
Offline Send Email
Feb 2, 2006
8:48 pm
38061
... Oops. The Uninstaller hasn't been implemented, AFAIR. You've literally got to do a rigorous cleanup. ... Are you certain that you are not accidentally...
Helen Borrie
helebor
Offline Send Email
Feb 2, 2006
11:30 pm
38062
... I'll expand on this: yes, run the uninstaller to clean it from your MSI database, but don't expect it to uninstall anything. ... OK, I've spent a good...
Helen Borrie
helebor
Offline Send Email
Feb 3, 2006
5:32 am
38063
Hi, I have a question to Stored Procedures and Transactions. The following constellation : I use a TIB_Query and a TIB_DataSource in my project. I have this...
ronald_greven
Offline Send Email
Feb 3, 2006
4:11 pm
38064
Hello: I'm trying to show the user that something is happening while a DELETE is occurring. Recently, I posted my problems with using OnCallBack from a...
Chuck Belanger
belangerc94805
Offline Send Email
Feb 3, 2006
5:17 pm
38065
I install IBOv4.6 and go into BCB2006 and there are no IBO components on the palette. I try compiling them: I load IBO_D2006.bdsgroup and it gives me a load of...
tickerboo2002
Offline Send Email
Feb 3, 2006
5:34 pm
38066
Hi, I'm new to IBO. I want to get all current Connections in my application. With BDE I used TSession : for i:= 0 to session.databasecount-1 do ...
mitropa123
Offline Send Email
Feb 3, 2006
9:07 pm
38067
... OK, there are several wrong assumptions here. Let's start with the transaction. EVERY transaction must be started and ended. Starting a transaction...
Helen Borrie
helebor
Offline Send Email
Feb 3, 2006
11:30 pm
38068
Chuck, ... First, take on board what Jason said about callbacks: they are a client-side concoction that can intervene between FETCHES for a SELECT statement....
Helen Borrie
helebor
Offline Send Email
Feb 3, 2006
11:57 pm
38069
I'm trying to open a cursor on a newly created table, but get the message: "No permission to read/select COLUMN ENTERED" when I call "Open" on my TIB_Cursor....
ra8009
Offline Send Email
Feb 4, 2006
3:19 am
38070
... Tell us more. Does the set have a column named "COLUMN ENTERED"? Is it being requested via a join/subqyuery/view? Which db engine? Helen...
Helen Borrie
helebor
Offline Send Email
Feb 4, 2006
4:15 am
38071
I'm connecting to Firebird 1.5.2. There is no column called "COLUMN ENTERED". The actual message is "No permission for read/select access to COLUMN ENTERED"...
ra8009
Offline Send Email
Feb 4, 2006
5:06 am
38072
Hello Helen, I take the liberty to complete the transaction handling. Hope Your Honour only forgot to do so - and it isn't me who missed something ;-) ... if...
Christian Danner
christian@...
Send Email
Feb 4, 2006
5:17 am
38073
... It's not about the physical transaction, so please correct it to: if not IB_Transaction1.InTransaction then ... Sorry, one more time too fast with the...
Christian Danner
christian@...
Send Email
Feb 4, 2006
5:34 am
38074
... It's OK, if one wants to commit right then...one does not have to commit until one wants to do so...but it's wrong for this example code, see correction.. ...
Helen Borrie
helebor
Offline Send Email
Feb 4, 2006
5:38 am
38075
Interleaved/bottom posting is preferred. ... And no 'COLUMN' called 'ENTERED' either? ... So are you using the same user name to log into your application and ...
Lester Caine
lscesuk
Offline Send Email
Feb 4, 2006
7:42 am
38076
Hi Helen, ... Ah, you did it with with! Cheerio Christian...
Christian Danner
christian@...
Send Email
Feb 4, 2006
8:23 am
38077
... I am logging in as a different user. How do I check to see what restrictions have been setup (someone else built part of the database.) Do I need to grant...
ra8009
Offline Send Email
Feb 4, 2006
10:15 am
38078
OK .. tried this .. but cannot get to work, as the value passed by the bookmark is a hex value. Ie: '0000E10, 00001010' etc What is Jason actually storing in...
Adrian Wreyford
ajwreyford
Offline Send Email
Feb 4, 2006
1:33 pm
Messages 38049 - 38078 of 44319   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