TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
PRASANTA BISWAS
NA
27
9.2k
About StatusBar control in C# (Microsoft Visual Studio 2010)
Jun 16 2013 1:18 AM
Dear All
I am using Status Bar in my project.First applied onto MDI Form like user name and date. Second applied into another form where displayed number of entered records(total records). But it's showing two status bar panel. I don't know why. I am adding my code below.
---- Form load event
StatusBarPanel recordcount = new StatusBarPanel();
StatusBar mainstatusbar = new StatusBar();
int CountValue = 0;
recordcount.BorderStyle = StatusBarPanelBorderStyle.Raised;
recordcount.Width = 100;
CountValue = Program.GetNumericValue("select count(*) as knt from ROCVDS");
recordcount.Text = "Total Record for DS : " + CountValue.ToString();
recordcount.ToolTipText = "Total Record for DS";
recordcount.AutoSize = StatusBarPanelAutoSize.Spring;
mainstatusbar.Panels.Add(recordcount);
mainstatusbar.ShowPanels = true;
this.Controls.Add(mainstatusbar);
------ Insert records block
CountValue = Program.GetNumericValue("select count(*) as knt from <table name>");
recordcount.Text = "Total Record : " + CountValue.ToString();
N.B : GetNumericValue :- Only approaching like connect DB and retrieve data.
Reply
Answers (
2
)
How many threads can we run at a time.
inserting and getting hyperlink from SQL Table