views:

15

answers:

1

How to open a Win32 dialogbox from inside a VST plug-in? Thanks for any help.

+1  A: 

You should be able to use the standard MessageBox() call, as described in this SO question. Not sure if this will work in a plugin without a GUI editor, though.

Nik Reiman
Indeed. In fact I would like to have a text edit field... that's not immediate. I personnaly resolved it with Qt and a QInputDialog::getText.
moala