[development-axapta] Re: pause(seconds)

2004-08-10 Thread byteway_so
Thanks for your reply! It works, but I thought there would be some build in commando for that. Something like: sleep(int milliseconds) But for now I think I can live with you solution: { int startTime, endTime; int pauseTime; ; startTime = WinApi::getTickCount(); pauseTime =

[development-axapta] Re: pause(seconds)

2004-08-10 Thread sebdra
Hello, hmmm, there is a function on forms and reports element.settimeout(str method_name_as_string,int timeout_value,boolean calc_only_idle_time) but this works only in forms and reports SebDra --- In [EMAIL PROTECTED], byteway_so [EMAIL PROTECTED] wrote: Thanks for your reply!

[development-axapta] Re: pause(seconds)

2004-08-10 Thread byteway_so
yes yes yes now I can: sleep(1000); Thanks! Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ To unsubscribe from this group, send an email to:[EMAIL PROTECTED] Your

RE: [development-axapta] Re: pause(seconds)

2004-08-10 Thread Andrae, Tobias
: [development-axapta] Re: pause(seconds) Hello, hmmm, there is a function on forms and reports element.settimeout(str method_name_as_string,int timeout_value,boolean calc_only_idle_time) but this works only in forms and reports SebDra --- In [EMAIL PROTECTED], byteway_so

Re: [development-axapta] Re: pause(seconds)

2004-08-10 Thread Thomas Turn Jensen
a terminal server will not be happy about it. Now will the other users using it! Best regards Thomas Turn Jensen - Original Message - From: byteway_so [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 10, 2004 9:54 AM Subject: [development-axapta] Re: pause(seconds) Thanks