I am building a tool that can outputs certain information from the input.
I have this free form DataWindow with textboxes and a button( button_1 ). Let's say I have a Window Button [ADD] and when clicked will trigger dw_1.InsertRow(0)
The textboxes and button( button_1 ) will multiply according to how many times the ADD button is clicked.
I was planning to add another DataWindow inside the free form DataWindow so that when the button_1 is clicked to whatever row it is. will call dw_2.InsertRow(0) that is inside that DataWindow, this dw_2 DataWindow has textboxes of its own and can have multiple rows inside it.
Is this possible? If yes how do I do this, if not, can you recommend a way on how can I do this.