Oh no. phpBB. Ancient technology. Dear me. This is not fitting for a cutting edge company.
May I politely suggest as you have made this change that you consider Discourse instead, very widely used and infinitely more capable and visually and technically more attractive and, ahem, modern? I have ...
Search found 152 matches
- Sun May 17, 2020 1:26 am
- Forum: Voltage Modular
- Topic: phpBB
- Replies: 10
- Views: 12460
- Thu May 14, 2020 6:55 am
- Forum: Voltage Modular
- Topic: Coming May 2020..
- Replies: 32
- Views: 33656
Re: Coming May 2020..
Halfway through May! So keen to see version 2.0. What's the status?
- Thu May 14, 2020 12:11 am
- Forum: Cherry Audio Store
- Topic: Sale dates
- Replies: 2
- Views: 4516
Re: Sale dates
I know. Seems there was a lag of a few days winding down. A bit confusing.
- Sun May 10, 2020 1:24 am
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 20339
Re: Questions re Additional Java Files
Hi @honki-bobo, really good architectural approach. Hopefully we can see more in depth posts like that on these forums (which seem to me strangely deserted).
I think the biggest shortcoming of MD is the code editor from 1987 or so. Really, it's dreadful. I am just commencing to hook up Netbeans ...
I think the biggest shortcoming of MD is the code editor from 1987 or so. Really, it's dreadful. I am just commencing to hook up Netbeans ...
- Sun May 10, 2020 1:19 am
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 20339
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.
- Sat May 09, 2020 4:20 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 20339
Re: Questions re Additional Java Files
Logging to disk probably kills audio sample processing. Maybe it's not a good idea for production work anyway, thinking about it.
- Sat May 09, 2020 3:43 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 20339
Re: Questions re Additional Java Files
So we would have to use normal Java logging in our extra Java files. Hmm.
- Sat May 09, 2020 3:11 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 20339
Re: Questions re Additional Java Files
Aha. VoltageModule is an abstract class, so the module you are making extends it. I have code in other java files, and you cant call a method in an abstract class, so none of the methods such as Log() or any of them are going to work, unless the file has a class that extends VoltageModule - but that ...
- Sat May 09, 2020 2:31 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 20339
Re: Questions re Additional Java Files
I'll take a look.
- Sat May 09, 2020 12:25 pm
- Forum: Module Designer
- Topic: Questions re Additional Java Files
- Replies: 21
- Views: 20339
Re: Questions re Additional Java Files
Hi Andrew,
Probably you need this is your Java files:
import voltage.core.*;
Works for me.
Incidentally. I just upgraded from Java SE 1.8 for MD to Java SE 14. I found that the Oracle distro just gives blank gray panels, but the OpenJDK version 14 works fine. This is of course as per the ...
Probably you need this is your Java files:
import voltage.core.*;
Works for me.
Incidentally. I just upgraded from Java SE 1.8 for MD to Java SE 14. I found that the Oracle distro just gives blank gray panels, but the OpenJDK version 14 works fine. This is of course as per the ...