How to run a scrip when application is loading

Discussion of application development using iX Developer, including but not limited to getting started, using the functions tab, properties, objects and installation.
Post Reply
daoa80
Posts: 44
Joined: Fri Aug 10, 2012 8:50 am

How to run a scrip when application is loading

Post by daoa80 »

where can I place a script that runs when the application is loading all the files (booting)? is it on the Tag screen script? is it on the default screen script that is been displayed when it boots?

by the way, there is another question under application development called System Tags which have not been aswer, does anybody have that info available?


Thanks

stuartm
Posts: 61
Joined: Thu Jun 06, 2013 9:21 am

Re: How to run a scrip when application is loading

Post by stuartm »

try this constructor inside your script module:

static ScriptModule1(){
MessageBox.Show("Hello Application");
}

Post Reply