Beispiel #1
0
 public static Object getValue(String title, Object defValue, byte valueType, ObjectVector vectorListT)
 {
     vectorList = vectorListT;
     if (smallDialog_PropertyValue == null)
     {
         smallDialog_PropertyValue = new SmallDialog_PropertyValue(title);
     }
     else
     {
         smallDialog_PropertyValue.Text = title;
     }
     smallDialog_PropertyValue.setValueType(valueType, defValue);
     smallDialog_PropertyValue.ShowDialog();
     return(smallDialog_PropertyValue.getValue());
 }
 public static Object getValue(String title, Object defValue, byte valueType, ObjectVector vectorListT)
 {
     vectorList = vectorListT;
     if (smallDialog_PropertyValue == null)
     {
         smallDialog_PropertyValue = new SmallDialog_PropertyValue(title);
     }
     else
     {
         smallDialog_PropertyValue.Text = title;
     }
     smallDialog_PropertyValue.setValueType(valueType, defValue);
     smallDialog_PropertyValue.ShowDialog();
     return smallDialog_PropertyValue.getValue();
 }