/*
// create a Control-Instance which specified in kind(String)
*/
public XInterface createControl(XComponent oDoc, String kind) {
XInterface oControl = null;
XMultiServiceFactory oDocMSF = (XMultiServiceFactory) UnoRuntime.queryInterface( XMultiServiceFactory.class, oDoc );
try{
oControl = (XInterface) oDocMSF.createInstance("com.sun.star.form.component."+kind);