Hi! When I try to open an application that tries to open a database on an FB Server running on a Windows 2003 Server O.S. When my applicaiton hits the...
... IBX or IBO? ... By default, Win 2003 doesn't open any ports in the firewall. Open at least port 3050 and, if you are using events, open at least one more....
That would be fine, but how do I do it. This field is being pulled from another file based on a field in this record, but the second field doesn't have to...
In a Windows application I set the FieldsEditMask and FieldsDisplayFormat of an IBOQuery component to !\(000\)000-000 for a phone number such as (012)802-2816...
... HTML itself doesn't support "smart controls", just the basic 5 input containers. You can achieve edit mask behaviour with Javascript. The TMS components...
I have this problem resolved now and it will be in the next sub-release. For those who have full source and would like to try a quick patch, try this: ...
Yes, I am clear now that this problem is more than just understanding what my design was and that there is a current issue due to the last sub-release. ...
Yes, you can interate through the buffer using all the BufferXXXX methods and properties. This has been touched on heavily in the archives. As for your other...
Hi... Why when I give a NEXT in my IB_Query it change of the state dssBrowse for dssInsert? Thanks Joćo [Non-text portions of this message have been removed]...
... That happens when you do not have any more records to Browse, IBO adds another record and goes to insert mode. -- Lester Caine ... L.S.Caine Electronic...
Thanks Lester... Another Question: When I open the same IB_Query, it this changing automatically for state dssEdit. You can help me? Tkanks again Joćo ... ...
... It looks like you're assigning a value to any field of the dataset in any events. For example if you do sth like: myQry.FieldByName ( 'ANYFIELD' ).asString...
... Sounds like you are assigning something to one of the field components and so it is trying to update the record. Try First() rather than Open(), also worth...
Hi there, I'm using Delphi 7 and IBObjects 4 with Firebird 1.0. I am having a problem with TIBOTable cached updates. I could not make it work as I expected. I...
Depending on the current state of a data entry screen, I need to be able to skip over some columns within the grid and prevent editing in those columns. 1. I...
... tiConcurrency isolates your transaction from work done by any other transaction. Even if another user commits work on the same record, your concurrency...
... No, it's not what you want. With the IBO native controls, the data determines the behaviour of controls, not the other way around. ... Are you using this...
I just refinanced my home loan at better interest rate; this saved me thousands of dollars and will repair my horrible credit. All the information is right...
I've got an IBOTable with <default> IB_Transaction and DatabaseName='mydatabase'. How do I get TIB_Transaction object used by this IBOTable? I want certain...
Robert Osowiecki
robson@...
May 4, 2005 2:57 pm
35495
... Refer to the IB_Transaction property of the IBOTable object. e.g. if not MyTable.IB_Transaction.Started then MyTable.IB_Transaction.StartTransaction; Helen...
... Have you actually tried that? In C++ Builder IB_Transaction returns NULL when default transaction is used... R....
Robert Osowiecki
robson@...
May 4, 2005 4:24 pm
35497
That seems to work. It is just understanding when to apply, and unapply the FieldsReadOnly string list and when it was looked at by the Query was the lacking...