Write to static field from instance method
instance method writes to a static field. This is tricky to get correct if multiple instances are being manipulated, and generally bad practice.
public static loadingDialog StatusWndw = null;
StatusWndw = new loadingDialog(this);
iwant to acces this satic field out side the class.
how to slove this problem

