How to generate (via button) file properties (randomly) in textboxes fields (screen)
What you need to generate
[assembly: AssemblyTitle("[TITLE]")] [assembly: AssemblyDescription("[DESCRIPTION]")] [assembly: AssemblyCopyright("[COPYRIGHT]")] [assembly: AssemblyVersion("[VERSION]")] [assembly: AssemblyFileVersion("[FILE-VERSION]")] [assembly: AssemblyCompany("[COMPANY]")] [assembly: AssemblyProduct("[PRODUCT]")] In general, the essence of what you need when you click on the button to generate different AssemblyText [TEXT] in the textbox in random order!
arrayorList<string>and shuffle them based on a randomly selected index, and then display them in the text box. - Bulson