Need a solution to excute the current statement at the end of the

  • Thread starter Thread starter Ranjit
  • Start date Start date
R

Ranjit

Hi All,

Currently, I am working on .Net CF 2.0. I want to know is there any
keyword (or) method to post a function / method / event such that the current
statement of function / method / event call will be put at the end of the
current object queue instead of calling immediately. So, that the statement
(function / method / event) will be executed after completion of the current
event coding.

Previously I was working on Power Builder where there was POST keyword,
POSTEVENT method for this purpose.

Please let me know is there any way we can put the current function
call at the end of current queue in VS2005.
 
My requirement was like When i tap(click) with stylus into the textbox column
then the entire text in the textbox field should get selected.

I wrote coding to select the entire text in the textbox field in the
GOTFOCUS event still the selection of the text was not happening. So i was
thinking of posting this
function call (txtBox.SelectAll()), so that this function call will
execute after completing the code execution in GOTFOCUS event.
 
Back
Top