I have:

- Form1
- Class1 (with method Test)

In Form1, i have declared:
Code:
Private x As Class1
Now, i want to use CallByName from another module, to call Test from Class1. E.g.:
Code:
CallByName Form1, "x.Test", vbMethod
But it doesn't go that easy Is there any solution to my problem?

Thanx!

-gav