Search found 126 matches
- Thu Aug 13, 2020 1:21 pm
- Forum: Module Designer
- Topic: How to use Custom Cursor option in Module Designer
- Replies: 6
- Views: 996
Re: How to use Custom Cursor option in Module Designer
Thank you so much for this reply - and for a really clear explanation! Will look at using this in an upcoming release to make the UI even more discoverable.... and thanks for the resources you are making available on GitHub - this a really useful resource for us all. Kudos!
- Thu Jul 16, 2020 1:09 pm
- Forum: Module Designer
- Topic: How to use Custom Cursor option in Module Designer
- Replies: 6
- Views: 996
How to use Custom Cursor option in Module Designer
I want to use a custom cursor to indicate the availability of an area where right-clicking will bring up a pop-up (options) menu. There is nothing in the standard set of cursors (the hand being the closest, but not ideal, option) and I was wondering how to use the "custom" option that is listed as a...
- Sun May 10, 2020 6:28 am
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 4431
Re: Questions re Additional Java Files
Then I would suggest using the Java logging API. The only reason to use VoltageModule.Log() would be to write to the one single file. The reason I was using their logging API was so that it also shows up in the debug window when testing, and so it can be switched on or off through VM settings. I'm ...
- Sat May 09, 2020 5:13 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 4431
Re: Questions re Additional Java Files
Thanks Martin, and your approach seems like a really well thought out and constructed model.
- Sat May 09, 2020 4:41 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 4431
Re: Questions re Additional Java Files
The logging was very specific logging for some activities I have when the module opens (Initialisation stage) to deal with some configuration stuff - so does not happen when any real audio processing going on - but agree, in normal situations, this would not be something you would do except for debu...
- Sat May 09, 2020 3:30 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 4431
Re: Questions re Additional Java Files
I was coming to the same conclusion (but you have explained it really well here). I can do a workaround in these cases by making the shared code return information that the main code in the module can deal with - not ideal, but I can move 95%+ of the code that I want to make shared to ensure consist...
- Sat May 09, 2020 2:51 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 4431
Re: Questions re Additional Java Files
Thank you 

- Sat May 09, 2020 12:36 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 4431
Re: Questions re Additional Java Files
Thanks - I'd already got this in. It looks like Log and LogError have been changed from static (in v1) to non-static (in v2) and the static versions deprecated. ShowMessageBox does not look like it was ever static. Any other thoughts?
- Sat May 09, 2020 11:12 am
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 4431
Questions re Additional Java Files
I am wanting to modularise my modules to better share utility code. Much of what I want to do (probably showing my lack of Java skills) I have now worked out after some trial and error - but can't seem to work out how to access some methods in the VoltageModule class - specifically Log, LogError and...
- Wed Apr 08, 2020 2:33 pm
- Forum: Module Designer
- Topic: Feature Request: decimal places in the Digital Counter control
- Replies: 4
- Views: 3178
Re: Feature Request: decimal places in the Digital Counter control
The basics are sort of simple in approach (I like simple). I fixed the decimal place for the displays (makes it easier), format the number as a fixed decimal place string (or create the string that I want to display), using fixed length everything so that the formatted number was either left or righ...