... i have a form maked with vb 6.0 classic and i want to import into a vba for Excel project is possible? existis a good way to transform it in a vba form?
Printable View
... i have a form maked with vb 6.0 classic and i want to import into a vba for Excel project is possible? existis a good way to transform it in a vba form?
VB (vb6 and prior) forms are not supported in VBE so you'd have to recreate it.
If you want to use VB form in VBE/VBA:
What you can do is you can create a dll and add a reference in your vba/vbe code and you can call the required procedures/functions.
But then you'd have to distribute that dll, register it ... so basically get yourself [voluntarily] into another dll hell ... not worth it as far as I'm concerned.