Calling procedure - time

CookieMonster24

Well-known member
Joined
May 4, 2003
Messages
45
i have a procedure where im displaying the data that is about to be saved. however, when it is called the first time, there is a long waiting time. however, the second time its called, there is no waiting time. is this normal? if not, any suggestions on how to fix it
 
That is normal becuase .Net applications compile as they run, so that function wasnt compiled until the first time you used it. .Net apps compile as they run because it allows youre program to bond to the hardware of any computer (Windows only at the moment) and run as efficently as possible
 
Back
Top