[Interest] Access forms from an called class?

2013-03-04 Thread Robert Wood
I have my main window which accesses its form. I have another (non-GUI) class I have written that takes BTLE messages in and decodes them. This blte_commands class is called from MainWindow and works out what the message is and what to do with it. I would then like to change values back on the

Re: [Interest] Access forms from an called class?

2013-03-04 Thread Robert Wood
OK, I did that and I finally got the btle class returning the data. I must say though, I am not at all convinced this is a great way of doing it, because now I'll have a couple of hundred routines in the main class that deal with decoding each message that's passed back. I can't pass a generic

Re: [Interest] Access forms from an called class?

2013-03-04 Thread Tony Rietwyk
Sent: Tuesday, 5 March 2013 3:08 AM OK, I did that and I finally got the btle class returning the data. I must say though, I am not at all convinced this is a great way of doing it, because now I'll have a couple of hundred routines in the main class that deal with decoding each message