[VB6] VbVst - VST2.x framework for VB6.
Hello everyone!
This framework allows you to create VST 2.X plugins (so far only the effects) in VB6.
https://www.youtube.com/watch?v=7QvkzYNzJ2E
https://github.com/thetrik/VbVst
Re: [VB6] VbVst - VST2.x framework for VB6.
very good work.
I haven't had much time to test it.
I found a problem with the ctlKnob control when compiling.
Overflow error in the two projects VbTrickGlitch and VbDebugVst.
Code:
Public Sub Refresh()
fValue = (m_lValue - m_lMin) / (m_lMax - m_lMin)
greetings The Trick good job as always
Re: [VB6] VbVst - VST2.x framework for VB6.
Quote:
Originally Posted by
yokesee
I haven't had much time to test it.
I found a problem with the ctlKnob control when compiling.
Overflow error in the two projects VbTrickGlitch and VbDebugVst.
How to reproduce that error?
Re: [VB6] VbVst - VST2.x framework for VB6.
the problem is in ctlUI and not in ctlKnob.
can't open user control or frmMain or compile.
always overflow error.
windows 10 vb6 8176 i dont have sp6
a greeting
Re: [VB6] VbVst - VST2.x framework for VB6.
Quote:
Originally Posted by
yokesee
the problem is in ctlUI and not in ctlKnob.
can't open user control or frmMain or compile.
always overflow error.
windows 10 vb6 8176 i dont have sp6
a greeting
Okay, thank you for testing. This is because you don't have SP6. The Resize events occured before the ReadProperties (that is a bug, fixed in SP6). I've updated the repository to support the non-SP6 builds now. You can download the updated version.
Re: [VB6] VbVst - VST2.x framework for VB6.
thank you very much now it works fine.
Your plugin system is very interesting. I'll investigate it.
You have a simpler version to understand it.
a greeting crack
Re: [VB6] VbVst - VST2.x framework for VB6.
Quote:
Originally Posted by
yokesee
You have a simpler version to understand it.
You can use the VstTemplate project as a starting point. The most simpliest plugin is VbTrickCrusher you can see its implementaion which is based on the VstTemplate project.