Exemplo n.º 1
0
 public void Init( string _path)
 {
     // Debug.Log("init state machine");
     ExcelHelper helper = new ExcelHelper( _path);
     mainTable = helper.ReadXLS(Global.MAIN_SHEET_NAME);
     factory.Init(this);
     path = _path;
 }
Exemplo n.º 2
0
 public void ShowDialogFromPath(string path, string sheetName)
 {
     ExcelHelper helper = new ExcelHelper( path);
     DataTable table = helper.ReadXLS(sheetName);
     ShowDialog(table,sheetName);
 }