I had an application that was built only with PFC. I changed it and I replaced the code by (insert into). But I want to disable all the PFC in this particular Windows and keep it in the others, that it is possible?
Yes, you can disable services for just one window. How easy (or hard) this is to do depends on where in the inheritance scheme you enabled the window's services.
. If Windows B and C are inherited from Window A AND
. Window A is where the services were enabled AND
. Window B is the window you want to turn the services off in,
. Then commenting out the code in A that turns the services on, could affect both windows (B and C), so you don't want to do that.
Instead, you can dis-enable window B's services by dis-enabling each service in B.
For example, this.of_SetBase(FALSE) -- possibly in B's open statement -- would turn off the base window services for B without affecting window C.
However, if you didn't inherit the window services from A, you can just comment them out in Window B without affecting Window C.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.