Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Datagrid Control > using text box to show progress

Reply
Thread Tools

using text box to show progress

 
 
Arvid
Guest
Posts: n/a
 
      03-13-2007
Hi,

I have a simple program that calculates invoices. The actual calculation
happens in a web service (WS in the code).
Since the web service takes some time, I just wanted to put a text in a text
box (resultaat in code) when it started (first line of code) then if ok run
the webservice and when it has finished another message would be put in the
text box.

But only when everything has finished the text box its text changed, so the
first line of code has no effect...

How can I solve this? (code is below)


resultaat.Text = "De facturatie is bezig!"
If ValidatieOK() Then
resultaat.Text = WS.START(Maand.Text, Stelsel.Text)
Else
resultaat.Text = "De facturatie is NIET gebeurd!"
End If

--
regards,

Arvid
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
div box questions; float text around a box, fit box to image size Gnarlodious HTML 4 05-05-2010 11:30 AM
Using threads to show progress Aldric Giacomoni Ruby 21 12-17-2009 06:50 PM
Progress bar to show the progress of a task Charlie Zhang Java 3 08-16-2004 05:53 PM
Show Upload Progress Jeff S ASP .Net 3 04-06-2004 04:53 AM
Show the progress of an asp.net page while loading.. jcfilth ASP .Net 3 01-16-2004 12:11 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57