Markus, ... That was exactly it, after changing ...FieldByName('Icon').AssignTo(...) to ...BufferFieldByName('Icon').AssignTo(...) it works nicely. One...
How do I programmatically change the focused cell in a TIB_Grid? I know I can use MoveCol to move to a specific column but I want to change the row in the...
... not sure, if I understood your question, but here's a thought: if you click in the grid to focus a cell then that will change the current record in the ...
Thanks! I thought it must be something simple. BufferMoveBy is what I need. Leigh ... From: Markus Ostenried [mailto:chef_007@...] Sent: Sunday, February...
Hello, I have spend more time going through Helen's code and my code as to pinpoint the root of the problem, but I am still as a loss. The code works fine...
... It seems you didn't get around to fixing up those input parameter names. If the parameter names don't match, the IBO parser can't do anything with them...
Hi, I'm using TIB_Query for a table with a DOUBLE PRECISION field. When using the FieldsDisplayFormat PRIJS=######0.00 on that field I get a '310,1' is not a...
Hello! I am still with connection problems. I deleted IB_Connection and I placed other and the connection worked again, temporarily, unhappily. Now I am...
Hi, ... can ... I'm not sure if you got an answer already, this one will probably not help you :-( Just want to say that I also had this problem with Locate...
My app freezes after running for few hours. I have upgraded to FB1.5 and still have this problem. The app freezes but FB can be used. Is there something in IBO...
I seem to remember a known issue with locating on integers under dialect 3 because they had changed the column type for integers internally to bigint when IB6...
... Sandeep, if there are 99 transactions running with Autocommit then you are getting no garbage collection. The higher the pile of garbage, the harder it...
... The transaction difference of 100 is for a short duration (10-20 secs) when the app is processing records. After that it is ok. And that is the only thing...
... Sandeep, if the cause of your problem is a single process that needs 100 concurrent transactions (which is pretty abnormal) then how do suppose this ...
... I have gone thru the app again and managed to get the Next Transaction number difference, after one process run, down to 23 i.e. the process now uses 23...
Please provide a better description of the problem. When you say freezing, what exactly do you mean. Have you traced or generated log entries to pinpoint where...
Make it a type string parameter and set the AsString property of the TParam. Then, when it is transferring the value to the internal TIB_Column object it will...
There is an outstanding bug I need to resolve under certain unusual cases. I believe if you can afford to do a FetchAll to the dataset there won't be a...
Jason, We are getting two types of freezes. Both are driving our users nuts and majority are threatening to throw the stuff out. We have managed to reproduce...
Hi, ... It all depends on how you use IBO given the tasks/circumstances that your application has to perform. Sometimes you can't rely on autocommit and have...
Hi all, Could someone point me to a example code, of proper use of insertsql, editsql, with ibodataset in a client server enviroment? Thanks, Daniel...
Hi, As I configure the property "Default Value" of the field of TIBOQuery to receive the date from the day? OR Has as to configure a TIBOQuery to directly...
I have numerous applications that run days on end without freezing. Some of them are multi-threaded and handle substantial volumes of data. First thing people...
You just put in TODAY or NOW and that should do it. Then it will use whatever is current on the client when the insert is initiated. Jason ... Hi, As I...
It depends on what you are doing. If you are doing nothing special, just set RequestLive to true and IBO will do it for you. If you are using cached updates...
I believe I see the problem. You need to use the BuffFields rather than the GridFields of the grid to get at the buffer data instead of the current row data. ...