Welcome, Guest! Sign Up RSS

Covering Hollyhood Microsoft Google Apple

Monday, 2026-08-24
Main » 2012 » May » 22 » Pure Windows Beta 2
6.31.46 PM
Pure Windows Beta 2

Pure Windows is a really hot theme. If you want a beautiful glossy Windows 7 Aero theme, try this one. It also modifies the look of the taskbar icons. If you are tired of the very large taskbar icon borders, get rid of them!

Pure Windows 7
Download Pure Windows Beta | Mirror

Category: Windows themes | Views: 2014 | Added by: Adamsummer | Rating: 0.0/0
Total comments: 2
1 Get icon software for Win  
0
Really strange

2 iconfu.com  
0
By WebOsPublisher

Timing hi.. i have a Imageprocessor and label message. after the user clicks the Submit button,the
Timing ASP.NET 08-Dec-12 03:04 AM
All Posts
Bonus
Unanswered
New Post
Login
Search
Articles
FAQs
Free Icons
Hall of Fame
About Us
ASP.NET - Timing
Asked By basil on 07-Dec-10 04:11 AM
hi..
i have a Imageprocessor and label message.
after the user clicks the Submit button, the Imageprocessor and label message should apperar immediately
but the Link button should appear after 15 seconds..
my code
protected void Page_Load(object sender, EventArgs e)

imgProgressbar.Visible = false;
lblMessage.Visible = false;
lbnDownload.Visible = false; //link button

protected void btnVerExt_Click(object sender, EventArgs e)

imgProgressbar.Visible = true;
lblMessage.Visible = true;
.
..
..
....

after the user clicks the Submit button, the Imageprocessor and label message should apperar immediately
but the Link button should appear after 15 seconds..
thankss
Sagar P replied to basil on 07-Dec-10 04:57 AM
You can try this ;
System.Threading.Thread.Sleep(15000);
This will stop current thread for 15 secs afcter that you can visible your link button...
basil replied to Sagar P on 07-Dec-10 05:01 AM
if i give thread.Sleep(1000)
at Submit button click the Imageprocessor and the label message and Link button will appear same time after 1000 sec..
but i need the Imageprocessor and label message immidiately appear after Submit button clicc but the Link button should appear after 15 sec..
thanks..
Sagar P replied to basil on 07-Dec-10 09:15 AM
Then you can go for TIMER CONTROL like this;
Add timer and make enabled = flase like this;
<asp:Timer ID="tmr" Interval="5000" runat="server" ontick="tmr_Tick" Enabled="false"></asp:Timer>
Then on your submit button click show Imageprocessor and the label message .... and make TMR enabled true like;
tmr.Enabled = true;
So once you make it enabled it will call tmr_Tick after 5 secs as we specified interval as 5000.....
So in that event itself make Link button visible true and make timer enbaled false;
tmr.Enabled = false;
Industry-leading Data Grid Performance: An under the hood look at Infragistics Data Grid

Only registered users can add comments.
[ Sign Up | Login ]
Blogger Widgets