Can I change the template for new forms that I add to my VB6 project?
Hello!
For each new form that I add to my project I find myself changing the font size, scalemode and startup position, etc.
Is there a template that I could change to avoid this task?
Thank you!
Re: Can I change the template for new forms that I add to my VB6 project?
Not really, but you could copy-paste it from another form if you open it in a text editor.
Re: Can I change the template for new forms that I add to my VB6 project?
For the form font, you can use this addin:
https://www.vbforums.com/showthread....rms&highlight=
I think you can modify the Addin to change other properties
Re: Can I change the template for new forms that I add to my VB6 project?
Create your form as desired. Save this form in the following path:
C:\Program Files\Microsoft Visual Studio\VB98\Template\Forms
Then this form will appear in the list of forms which is shown whenever you add a form
to a project.
Re: Can I change the template for new forms that I add to my VB6 project?
Quote:
Originally Posted by
VBClassic04
Create your form as desired. Save this form in the following path:
C:\Program Files\Microsoft Visual Studio\VB98\Template\Forms
Then this form will appear in the list of forms which is shown whenever you add a form
to a project.
Works great! Had to change the path however to:
C:\Program Files (x86)\Microsoft Visual Studio\VB98\Template\Forms
Re: Can I change the template for new forms that I add to my VB6 project?