You have to create an instance of the class inside the static method, and from this instance you can access any (instance/class) members.
ex.
<pre>
class
Test {
void instMetod() { }
static void staticMethod() {
Test tst = new Test();
tst.instMethod();
}
}
</pre>
regds
maha anna