1
Answer

Creating form templates has anybody got an answer?

Photo of dotnetsql

dotnetsql

21y
2.1k
1
Hi there I hope somebody could give me a hand I have already reinstalled VS TWICE because i tried myself to create subproject Templates. I have found links how to create a solution template but i cannot do the following: Create Custom Form Templates Scenario: There are some forms I use all the times. MDIParent form with toolbar/ListBar etc. Dialog Form base Add Edit form base I know I could put them in a dll and then inherit from them,but this is not the point What I am trying to do is Create a folder in vbProjectItem Called "MyItems" And in this folder my already made forms(templates) should appear,so that when i press add new Item I go to myitems folder and just double click on myformBase I get the usual toolbar with icons etc. I am amazed that MS has not created a wizard that you can pick up a form YOU CREATED, add to your templates. CAN ANYBODY HELP ME ON THIS ONE?????? A walkthrough would be ideal because the process is a bit nasty. Thanks a lot Gabriel

Answers (1)

0
Photo of itsme
NA 26 0 20y
.................................... richTextBox1.LinkClicked += new LinkClickedEventHandler(Link_Clicked); ................................................ protected void Link_Clicked(object sender, LinkClickedEventArgs e) { ................................................. } Could someone tells me how: when click on an item in the richTexBox1 to display a specific area of the richTextBox1 ?