vb.net add text to form without interaction

Posted by user228058 on Stack Overflow See other posts from Stack Overflow or by user228058
Published on 2010-03-14T03:35:31Z Indexed on 2010/03/14 3:45 UTC
Read the original article Hit count: 214

Filed under:
|
|
|

I have a winform project which lists all the files in a specified folder. It allows the user to select a new destination for each file, and when the user has chosen the destinations for all files that he would like to be moved, it moves the files, one by one.

My next step is, I need to display a confirm form when the files are being moved, and add each file's name and destination to the confirm form as it is being moved.

My question is: How can I add more text to the confirm form's controls after I already loaded it (using confirm.showdialog() from my other form, without any user interaction? I imagine that I need to do it from the original form, because it needs to display each one when it starts to move that file, but I'm open to any suggestions:)

TIA

© Stack Overflow or respective owner

Related posts about vb.net

Related posts about winforms