Hi Vlad,
> do I have to add all my classes from vb.net as Com classes in this
> library?
No, only those you want to use from VBA.
>Can I still let some as normal classes? Am I able to use them
> like this?
Sorry, don't get you here.
> what about masks? Am I able to add them also and reuse in VBA?
Hmm...what are masks? Something I've never heard of in .NET...
> I have to pay attention to all used types not to be generic ones? where
> can I find which types are nongeneric?
Yes, you are most likely limited to non-generic classes only.
I think MSDN Library should indicate whether a class is generic or not.

Signature
Regards,
Dmytro Lapshyn [MVP]
http://blogs.vbcity.com/DmytroL
> Hi!
>
[quoted text clipped - 17 lines]
>
> thanks a lot!
Vlad - 27 Jul 2006 13:29 GMT
Hi!
thanks for your answer.
So, if I understood corectly I have to add as com classes just those
which I use in VBA.
what about those classes which are indirectly used, for ex. if in VBA I
need Keyword.vb (com class) and this class is using another class,
Operator.vb, this last one should I added also as COM class or just as
Class??
I used "mask" word for Forms. Can I put them also in this library to be
able to reuse? Or just the controls, like DataGridView?
I had a problem to use something like:
"Inherits DataGridViewButtonCell"
Do you have any idea how can I solve this?