Process.Start("MyDocument.Doc") would load the document using the associated program although I would suggest using one of the many free HTML Compilers (creating CHM file) or a help file creator. Failing that I would save the final document as a PDF file.
Steve Jowett ------------------------- Sometimes a man who deserves to be looked down upon because he is a fool, is only despised only because he is an 'I.T. Consultant'
Please look at Colin's article, and stop asking the same question over and over :)
"I guess it's what separates the professionals from the drag and drop, girly wirly, namby pamby, wishy washy, can't code for crap types." - Pete O'Hanlon
dexter9703 wrote:
Can anyone please help with using multiple forms. I am trying to have more than one form on a program, so that data is shared between both those forms.
That's a bit vague. What exactly are you having a problem with? Do you need to know how to open mulitple forms simultaneously?
SomeForm form = new SomeForm();
form.Show();
SomeForm is the name of your Form class. Do you need to know how to pass data between forms? Passing values between forms[^] Something else?
Upcoming FREE developer events: * Developer Day Scotland Recent blog posts: * Follow up on hiring a software developer * The Value of Smaller Methods My website | blog
dexter9703 wrote:
I add items to a listbox using a button and remove using another. How can I disable the remove button if there are no contents in the listbox
Me.RemoveButton.Enabled = (Me.ListBox.Items.Count>0)