I have a rather large program where I declare many global variables as so:
Public WithEvents master_rate_info As HYDRUS.MODEL.SuperTable = HYDRUS.CONTROL.DataClass.GetSimple("master_rate_info", strEnv, False)
. It takes over 30 seconds for all of these to be declared and therefore takes forever for my program to start. Is there a way to declare these asynchrously or a more effiecient way to do this. Thank you.
Public WithEvents master_rate_info As HYDRUS.MODEL.SuperTable = HYDRUS.CONTROL.DataClass.GetSimple("master_rate_info", strEnv, False)
. It takes over 30 seconds for all of these to be declared and therefore takes forever for my program to start. Is there a way to declare these asynchrously or a more effiecient way to do this. Thank you.