Click here to Skip to main content
15,889,889 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have 4 rows in my XML table. I need to create 4 textboxes with values from these rows.
I am taking help from Generate RDLC dynamically - Table of ReportViewer Tutorial[^]
Posted

1 solution

XML
TextBox() textBoxes = new TextBox();


textboxes.Id = "bla bla";


This is how u create a new text box,

for instatance in WPF - we can create a textbox like the above code and them to a canvas.

canvasname.add(textBoxes );
Like wise we can add any number of text boxes using loops and add them to the UI.
 
Share this answer
 
Comments
Member 12043068 21-Jan-16 0:02am    
This is not the correct way for my need. Will post the solution in some time. I solved it :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900