I have a WebPage (MyWebPage1) and a WebDialog (MyWebDialog1). On the WebPage I have a ListBox (MyListBox).
In the WebDialog I have a routine that grabs information from a database and attempts to put that in the correct row-column in the WebPage-ListBox. In a desktop application this works fine. However in a WE application this causes an endless loop anytime the code hits a reference to the WebPage-WebListBox
The first thing I try to do is delete all rows of
MyWebPage1.MyListBox from within
MyWebDialog1. This code inside a
Method in
MyWebDialog1 causes an endless loop
MyWebPage1.MyListBox.DeleteAllRows
How does one go about clearing or setting ListBox or Label objects in a WebPage from a WebDialog?