doevents() issue

  • Thread starter Thread starter Edward
  • Start date Start date
E

Edward

Hello,

Win VB6 i used doevents() to update my forms during a process, but for
whatever reason this is changed in vb.net.

Can someone help me with how this should work.

Thanks,

Edward
 
Edward said:
Hello,

Win VB6 i used doevents() to update my forms during a process, but for
whatever reason this is changed in vb.net.

Hi, try Application.DoEvents()
 
Edward said:
Win VB6 i used doevents() to update my forms during a process, but
for whatever reason this is changed in vb.net.

Can someone help me with how this should work.

Menu Edit -> Find&Replace -> Find symbol: Doevents

See also:
http://msdn.microsoft.com/library/en-us/vbcon/html/vboriUpgradingFromVisualBasic60.asp

and

http://msdn.microsoft.com/library/en-us/vbcn7/html/vaconDifferencesBetweenVB6AndVB7.asp

especially sub topic "Programming Element Support Changes Summary"
containing the DoEvents method.


--
Armin

How to quote and why:
http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html
 
Back
Top