Errores solucionados
This commit is contained in:
parent
e38a7e9820
commit
7c7763eb0a
10
src/main.js
10
src/main.js
|
@ -348,8 +348,14 @@ var App =
|
||||||
|
|
||||||
this._disableUi (false);
|
this._disableUi (false);
|
||||||
|
|
||||||
if (this.fso.fileExists (this.mdbFile))
|
try {
|
||||||
this.openMdb ();
|
if (this.fso.fileExists (this.mdbFile))
|
||||||
|
this.openMdb ();
|
||||||
|
}
|
||||||
|
catch (e)
|
||||||
|
{
|
||||||
|
this.showMessage (e.message);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
openMdb: function ()
|
openMdb: function ()
|
||||||
|
|
Loading…
Reference in New Issue