Search found 5 matches

Search

by SebastianR
Fri Mar 15, 2019 1:39 pm
Forum: Bugs / Problems
Topic: Libraries cannot handle circular dependent classes
Replies: 2
Views: 4229

Re: Libraries cannot handle circular dependent classes

I guess this is by design. I would suggest to create at least a new 'interface' class, which defines the needed interface and can be used in the implementations to provide the interface(s). The implementation derives from this 'interface' class and implements the functionality, but the functions 'g...
by SebastianR
Fri Mar 01, 2019 1:34 pm
Forum: Bugs / Problems
Topic: Libraries cannot handle circular dependent classes
Replies: 2
Views: 4229

Libraries cannot handle circular dependent classes

Hello everyone! For bug let's create a simple setup in any WinCCOA project by creating two library CTRL scripts called A.ctl and B.ctl which can be described as follows: A.ctl #uses "B" class A { public A() {} public void print(string s) { DebugN(s); } public B giveB() { B ret = B(); retur...
by SebastianR
Mon Dec 10, 2018 11:20 am
Forum: Bugs / Problems
Topic: Embedded Module panel accessibility
Replies: 5
Views: 6434

Re: Embedded Module panel accessibility

<t>Hey Philipp!<br/> <br/> I recommend using the Initialize event within the panels which you are loading in RootPanelOnModule().<br/> If you need some parameters you can always pass them as parameters within the RootPanelOnModule() call as well.<br/> <br/> Edit:<br/> To give an example:<br/> <br/> ...
by SebastianR
Wed Nov 21, 2018 11:51 am
Forum: Bugs / Problems
Topic: Embedded Module panel accessibility
Replies: 5
Views: 6434

Re: Embedded Module panel accessibility

Hey Martin!

Thanks for your answer, this works perfectly!

Also thanks to Gertjan for fixing the picture in the original post, I somehow got that wrong..
by SebastianR
Tue Nov 20, 2018 3:39 pm
Forum: Bugs / Problems
Topic: Embedded Module panel accessibility
Replies: 5
Views: 6434

Embedded Module panel accessibility

<r>Hello everyone, I'll just be straightforward:<br/> I have a panel/window which contains a tree view and an Embedded Module and a button - based on the selection in the tree view I load panels into the Embedded Module - and pressing said button I want to call a public function within the Scope Lib...