ContributionsMost RecentMost LikesSolutionsCannot call Opendialog from C# winformHi I create a winform (C#) call OpenFileDialog1.ShowDialog as below: public void btnBrowse_Click(object sender, EventArgs e) { String[] fileNames; OpenFileDialog dialog = new OpenFileDialog(); dialog.Filter = "Excel files (*.xls)|*.XLS"; dialog.InitialDirectory = "D:"; dialog.Title = "Select a file"; if (dialog.ShowDialog() == DialogResult.OK) { fileNames = openFileDialog1.FileNames; } } --> Then I call this form : var obj = dotNET["AutomationTestTool"]["Form1"]["zctor"](); var res = obj["ShowDialog"](); TestComplete show that form, but when I click on button Browse, the winform is hang and not work. Please help me resolve it. Thanks. How to create name mapping for windows application when testing web application?Hi All, I'm testing a web application, but it has some windows application forms occured when testing this web application. I can't add that windows application in TestedApp because I don't have it. So when I created name mapping with that winforms, those name mapping will not be worked when running in another computer. Please help me resolve it. Thanks in advance. Helen. TcxListBox: How to add data at (row, column) or remove an Item?Hi All, I create an UserForm with TcxListBox, but I don't know how to add data at row, column or remove a row. I also don't know how to add column caption and column seperator. Can anyone help me resolve it? Thanks in advance. Helen Solved