¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date
Re: Unhandled Exception Errors
CalculateX and Y private int methods and has worked before trying to get ButtonPress method introduced private int CalculateX(int index) { return (index - 1) % 4; } private int CalculateY(int index) {
By Brad Wykoff · #249341 ·
Re: Unhandled Exception Errors
Where is your CalculateX and CalculateY methods? I think somewhere in there you are trying to use an object that hasn¡¯t been instantiated. If you comment out those 2 method calls and run the code
By Shawn Fennell · #249340 ·
Re: Unhandled Exception Errors
I believe so: Simpl+ GameGridUtility _myGame; This is between IO variables and Global variables.
By Brad Wykoff · #249339 ·
Re: Unhandled Exception Errors
have you instantiated the class object in SIMPL + ? Your code doesn¡¯t show this.
By Shawn Fennell · #249338 ·
Re: Samsung Flip2
Adding to Istvan's great work. To set the monitor ID on a WM65R: -Hit the menu button on screen (hamburger icon) -Settings -System -Advanced Settings -Enter the code (000000 default) -Remote
By felice@... · #249337 ·
Unhandled Exception Errors
What am I missing here. Error message is at bottom of page. C# public void ButtonPress(ushort GameButtonPress) { if (GameButtonPress != 0) { PlayerClickHandler(GameButtonPress); } else { throw new
By Brad Wykoff · #249336 ·
Re: SImpl+ Windows 10 Compile Errors #simplwindows
Seems this driver is only suppose to work for 4series. Test it with recompiling it after changing the processor type to 4series. ThanksMayank
By Mayank Paurush · #249335 ·
Re: SImpl+ Windows 10 Compile Errors #simplwindows
Have you checked to see if this CLZ is in your S+ modules folder (or in your project directory, if you use that instead)?
By ckangis · #249334 ·
SImpl+ Windows 10 Compile Errors #simplwindows
After a windows update I've not been able to compile any projects that have simpl+ modules.? Programs without Simpl+ will compile.? Below is an example from a cisco module but I have the same errors
By jmill210 · #249333 ·
Topics in Home Automation - New Article in Residential Tech Today
My latest article, "Delivering a Crestron-based Smart Homes Despite Supply Chain Delays¡± is being published by the good folks at Residential Tech Today Magazine on their web site. Many smart home
By jbasen · #249332 ·
Re: Samsung IP QPA Series Control?
CEC is typically solid with Samsung, you should be able to insert that using your dmps.
By Nate Goplen · #249331 ·
Re: DIN-8SW8-I & VC4 ?
Hi, We use thees pruducts insted: https://www.p5.hu/index.php/products/ethernet-modules They can delivery and Are very easy to Control. Hope it helps. Regards Flemming
Re: 3 Series Comparison
I remember? reading somewhere that rmc3/dinap3 were 800mhz, CP3 1000 and pro3/AV3 1200mhz (mind blowing numbers).
By ZS · #249329 ·
Re: How to get C# trigger a method based on event from Simpl+
I've updated my code as follows: C# public void ButtonPress(ushort localButtonPress) { //? localButtonPress = ButtonPressID; ButtonClickHandler(localButtonPress); CrestronConsole.PrintLine("Button
By Brad Wykoff · #249328 ·
Re: How to get C# trigger a method based on event from Simpl+
Trying to create logic similar to the game Othello. this has been causing the following error: Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object
By Brad Wykoff · #249327 ·
Re: How to get C# trigger a method based on event from Simpl+
Bool is not a datatype understood by SIMPL+ so you won¡¯t have access to those methods. You can wrap it in a ushort equivalent method but SIMPL+ also doesn¡¯t generally deal well with one method
By Lincoln King-Cliby · #249326 ·
Re: How to get C# trigger a method based on event from Simpl+
what if method in C# is public bool?
By Brad Wykoff · #249325 ·
Re: 3 Series Comparison
I have an MC3 for sale if it¡¯s going to get anyone out of a jam. Location NZ Tim Greenbank Control Systems Engineer
By Tim Greenbank · #249324 ·
Re: How to get C# trigger a method based on event from Simpl+
When your Simpl+ sees a change you call the method in your C# application if it¡¯s a public method. ?So example in C# public void DoSomething(ushort I) { Your code here } in simpl change Input {
By cmac_HT · #249323 ·
How to get C# trigger a method based on event from Simpl+
I am able to use EventHandler in Simpl+ to watch for changes from C# but how do you reverse that logic? Example: I have an integer (16bit) value that periodically changes in Simpl+ that is being sent
By Brad Wykoff · #249322 ·