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
emmett.miller
NA
1
0
items to a custom combobox from an XML file and to display the progress of this in a progressbar
Feb 2 2005 9:58 PM
I'm trying to add items to a custom combobox from an XML file and to display the progress of this in a progressbar but don't know what else to do. The program seems to wait for the combobox items are fully added before resuming the progress bar. This means that the progress bar only shows when the combobox has finished adding items not while it is adding items. Can you help me please? Code below:: private void loadComboBoxes() { const string EXPRESSION1 = "//row[not(Specialty = preceding-sibling::row/Specialty)]/Specialty"; const string EXPRESSION2 = "//row[not(Last_x0020_Name = preceding-sibling::row/Last_x0020_Name)]/Last_x0020_Name"; XPathDocument doc1 = new XPathDocument(fileName); XPathNavigator nav1 = doc1.CreateNavigator(); XPathNodeIterator it1 = nav1.Select(EXPRESSION1); XPathNodeIterator it2 = nav1.Select(EXPRESSION2); while (it1.MoveNext()) //this.timer1.Enabled = true; //this.timer1.Elapsed += new System.Timers.ElapsedEventHandler(this.timer1_Elapsed); this.axComboPlus1.AddItem(it1.Current.Value, it1.CurrentPosition); while (it2.MoveNext()) this.axComboPlus2.AddItem(it2.Current.Value, it2.CurrentPosition); } private void button3_Click(object sender, System.EventArgs e) { this.loadComboBoxes(); } private void timer1_Elapsed(object sender, System.Timers.ElapsedEventArgs e) { this.userControl11.Value++; }
Reply
Answers (
0
)
Casting en enum to its underlying type.
how to query other servers ??