473,395 Members | 1,870 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Best ways to source controlling "Code Snippets"

I am interested in learning how to use the VS 2005 code snippets.
However, I wish to know what are the best ways to source control the
code snippets?

Are there any source safe/subversion add-ons for this purpose?

If not, any urls which demonstrates code snippets management?
I apologize for the cross-posting. This is relative obscure question,
and wish to get as much exposure as possible.

great thanks
Frank

Mar 23 '07 #1
13 1067
http://msdn2.microsoft.com/en-us/vbasic/ms789085.aspx

Code snippets are the best thing since shirt pockets.

Robin S.
-----------------------------
<fr*****@gmail.comwrote in message
news:11**********************@y80g2000hsf.googlegr oups.com...
>I am interested in learning how to use the VS 2005 code snippets.
However, I wish to know what are the best ways to source control the
code snippets?

Are there any source safe/subversion add-ons for this purpose?

If not, any urls which demonstrates code snippets management?
I apologize for the cross-posting. This is relative obscure question,
and wish to get as much exposure as possible.

great thanks
Frank

Mar 23 '07 #2
That may be Robin but Confucius said "man with hole in pocket feels cocky
all day."

I'm using an application called Snippy that works fairly well for C#.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:ut******************************@comcast.com. ..
http://msdn2.microsoft.com/en-us/vbasic/ms789085.aspx

Code snippets are the best thing since shirt pockets.

Robin S.
-----------------------------
<fr*****@gmail.comwrote in message
news:11**********************@y80g2000hsf.googlegr oups.com...
>>I am interested in learning how to use the VS 2005 code snippets.
However, I wish to know what are the best ways to source control the
code snippets?

Are there any source safe/subversion add-ons for this purpose?

If not, any urls which demonstrates code snippets management?
I apologize for the cross-posting. This is relative obscure question,
and wish to get as much exposure as possible.

great thanks
Frank


Mar 23 '07 #3
LOL. Thanks, I needed that on a Friday afternoon.

And what's the deal with C# not having nearly as many code snippets as VB?
Did someone at MS fall down on the job?

And while I'm at it, in VB you can type ? and tab and it will bring up the
code snippets. Is there a shortcut for C#?

Thanks,
Robin S.
------------------------------------------
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:ey**************@TK2MSFTNGP05.phx.gbl...
That may be Robin but Confucius said "man with hole in pocket feels cocky
all day."

I'm using an application called Snippy that works fairly well for C#.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:ut******************************@comcast.com. ..
>http://msdn2.microsoft.com/en-us/vbasic/ms789085.aspx

Code snippets are the best thing since shirt pockets.

Robin S.
-----------------------------
<fr*****@gmail.comwrote in message
news:11**********************@y80g2000hsf.googleg roups.com...
>>>I am interested in learning how to use the VS 2005 code snippets.
However, I wish to know what are the best ways to source control the
code snippets?

Are there any source safe/subversion add-ons for this purpose?

If not, any urls which demonstrates code snippets management?
I apologize for the cross-posting. This is relative obscure question,
and wish to get as much exposure as possible.

great thanks
Frank



Mar 23 '07 #4
Snippy is a VS2005 add-in and called using Ctrl-K, Ctrl-B

Here's more from "Help on Snippy"...

How to get started:

This code snippet editor will help you write snippets that conform to the
following schema:
http://schemas.microsoft.com/VisualS...05/CodeSnippet.

The following xml is a simple example of what this will produce:
<CodeSnippets
xmlns="http://schemas.microsoft.com//VisualStudio//2005//CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>
My Snippet
</Title>
</Header>
<Snippet>
<Code Language="CSharp">
<![CDATA[MessageBox.Show("Hello World");]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>

The following fields are required for a snippet to work inside of Visual
Studio: Title, SnippetTypes, Code, Language.

Title - This is the name of the snippet that will be visible in the
code snippet picker and the code snippet manager.
Shortcut - If you want to invoke your snippet through the keyboard, you
can assign it a shortcut. Pressing the shortcut and hitting "Tab" will
insert your new snippet in the editor.
SnippetTypes - Expansion is for a snippet that inserts text. SurroundsWith
is for snippets that will surround a block of text such as a for loop
Language - This is required to know which type of language the snippet
you are creating will work for. The currently supported lanugages are VB,
C#, J# and XML
Code - The actual code that will be spit into the editor is required
here. In the above example, this is the text that is wrapped in the CDATA
section. You do not need to include the CDATA block
Adding a Literal or Object:
The Literal element is used to identify a replacement for a piece of code
that is entirely contained within the snippet, but will likely be customized
after it is inserted into the code. For example, literal strings, numeric
values, and some variable names should be declared as literals.
The Object element is used to identify an item that is required by the
code snippet but is likely to be defined outside of the snippet itself. For
example, Windows Forms controls, ASP.NET controls, object instances, and
type instances should be declared as objects. Object declarations require
that a type be specified.
Use the Add button on the literals/objects section to add a new literal.
ID and default value are the only required fields.
Now that you have created literals and objects, you need a way to use them
in the code that will be inserted by the code snippet. You reference the
literals and objects you have declared in the Declarations element by
placing $ symbols at the beginning and end of the value in the literal or
object's ID elementTo reference a literal or object in a Code element, place
$ symbols at the beginning and end of the literal or object's ID element
value. For example, if a literal has an ID element that contains the value
MyID, you would reference that literal in the Code text box with $MyID$.

After creating your snippet, you need to save it to a location that Visual
Studio will be able to access it from. In Visual Studio, go to the Tools
menu and choose Code Snippet Manager. Here you can select the language that
the snippets you are creating refer to. From there you will be able to see
the directories where you can place the snippet. Copy one of these
locations and save your snippet there. Visual Stuido wil then automatically
pick up your newly created snippet.

--
<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:pN******************************@comcast.com. ..
LOL. Thanks, I needed that on a Friday afternoon.

And what's the deal with C# not having nearly as many code snippets as VB?
Did someone at MS fall down on the job?

And while I'm at it, in VB you can type ? and tab and it will bring up the
code snippets. Is there a shortcut for C#?

Thanks,
Robin S.
------------------------------------------
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:ey**************@TK2MSFTNGP05.phx.gbl...
>That may be Robin but Confucius said "man with hole in pocket feels cocky
all day."

I'm using an application called Snippy that works fairly well for C#.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:ut******************************@comcast.com ...
>>http://msdn2.microsoft.com/en-us/vbasic/ms789085.aspx

Code snippets are the best thing since shirt pockets.

Robin S.
-----------------------------
<fr*****@gmail.comwrote in message
news:11**********************@y80g2000hsf.google groups.com...
I am interested in learning how to use the VS 2005 code snippets.
However, I wish to know what are the best ways to source control the
code snippets?

Are there any source safe/subversion add-ons for this purpose?

If not, any urls which demonstrates code snippets management?
I apologize for the cross-posting. This is relative obscure question,
and wish to get as much exposure as possible.

great thanks
Frank



Mar 23 '07 #5
I tried out your link to the code snippet editor, and get a "page cannot be
found". Try out the link I gave; it's probaby the same thing you're talking
about.

http://msdn2.microsoft.com/en-us/vbasic/ms789085.aspx

The Ctrl-K Ctrl-B thing is what *I* was looking for! Thanks!

Robin S.
-------------
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:Oe**************@TK2MSFTNGP05.phx.gbl...
Snippy is a VS2005 add-in and called using Ctrl-K, Ctrl-B

Here's more from "Help on Snippy"...

How to get started:

This code snippet editor will help you write snippets that conform to the
following schema:
http://schemas.microsoft.com/VisualS...05/CodeSnippet.

The following xml is a simple example of what this will produce:
<CodeSnippets
xmlns="http://schemas.microsoft.com//VisualStudio//2005//CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>
My Snippet
</Title>
</Header>
<Snippet>
<Code Language="CSharp">
<![CDATA[MessageBox.Show("Hello World");]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>

The following fields are required for a snippet to work inside of Visual
Studio: Title, SnippetTypes, Code, Language.

Title - This is the name of the snippet that will be visible in
the code snippet picker and the code snippet manager.
Shortcut - If you want to invoke your snippet through the keyboard,
you can assign it a shortcut. Pressing the shortcut and hitting "Tab"
will insert your new snippet in the editor.
SnippetTypes - Expansion is for a snippet that inserts text.
SurroundsWith is for snippets that will surround a block of text such as
a for loop
Language - This is required to know which type of language the
snippet you are creating will work for. The currently supported
lanugages are VB, C#, J# and XML
Code - The actual code that will be spit into the editor is
required here. In the above example, this is the text that is wrapped in
the CDATA section. You do not need to include the CDATA block
Adding a Literal or Object:
The Literal element is used to identify a replacement for a piece of
code that is entirely contained within the snippet, but will likely be
customized after it is inserted into the code. For example, literal
strings, numeric values, and some variable names should be declared as
literals.
The Object element is used to identify an item that is required by the
code snippet but is likely to be defined outside of the snippet itself.
For example, Windows Forms controls, ASP.NET controls, object instances,
and type instances should be declared as objects. Object declarations
require that a type be specified.
Use the Add button on the literals/objects section to add a new literal.
ID and default value are the only required fields.
Now that you have created literals and objects, you need a way to use
them in the code that will be inserted by the code snippet. You reference
the literals and objects you have declared in the Declarations element by
placing $ symbols at the beginning and end of the value in the literal or
object's ID elementTo reference a literal or object in a Code element,
place $ symbols at the beginning and end of the literal or object's ID
element value. For example, if a literal has an ID element that contains
the value MyID, you would reference that literal in the Code text box
with $MyID$.

After creating your snippet, you need to save it to a location that
Visual Studio will be able to access it from. In Visual Studio, go to
the Tools menu and choose Code Snippet Manager. Here you can select the
language that the snippets you are creating refer to. From there you
will be able to see the directories where you can place the snippet.
Copy one of these locations and save your snippet there. Visual Stuido
wil then automatically pick up your newly created snippet.

--
<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:pN******************************@comcast.com. ..
>LOL. Thanks, I needed that on a Friday afternoon.

And what's the deal with C# not having nearly as many code snippets as
VB? Did someone at MS fall down on the job?

And while I'm at it, in VB you can type ? and tab and it will bring up
the code snippets. Is there a shortcut for C#?

Thanks,
Robin S.
------------------------------------------
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in
message news:ey**************@TK2MSFTNGP05.phx.gbl...
>>That may be Robin but Confucius said "man with hole in pocket feels
cocky all day."

I'm using an application called Snippy that works fairly well for C#.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:ut******************************@comcast.co m...
http://msdn2.microsoft.com/en-us/vbasic/ms789085.aspx

Code snippets are the best thing since shirt pockets.

Robin S.
-----------------------------
<fr*****@gmail.comwrote in message
news:11**********************@y80g2000hsf.googl egroups.com...
>I am interested in learning how to use the VS 2005 code snippets.
>
>
However, I wish to know what are the best ways to source control the
code snippets?
>
Are there any source safe/subversion add-ons for this purpose?
>
If not, any urls which demonstrates code snippets management?
>
>
I apologize for the cross-posting. This is relative obscure question,
and wish to get as much exposure as possible.
>
great thanks
Frank
>




Mar 23 '07 #6
On Mar 23, 10:43 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
LOL. Thanks, I needed that on a Friday afternoon.

And what's the deal with C# not having nearly as many code snippets as VB?
Did someone at MS fall down on the job?
http://msdn2.microsoft.com/en-us/vstudio/aa718338.aspx

Mar 24 '07 #7

"Alexey Smirnov" <al************@gmail.comwrote in message
news:11**********************@l75g2000hse.googlegr oups.com...
On Mar 23, 10:43 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
>LOL. Thanks, I needed that on a Friday afternoon.

And what's the deal with C# not having nearly as many code snippets as
VB?
Did someone at MS fall down on the job?

http://msdn2.microsoft.com/en-us/vstudio/aa718338.aspx
Thank you! Awesome!!

Now, is there a way to invoke "Insert Code Snippet" without using the
context menu in the code window? In VB, you can type ? and tab and it
brings them up. Is there any such shortcut in C#?

Robin S.
Mar 24 '07 #8
On Mar 24, 4:35 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
>
Thank you! Awesome!!

Now, is there a way to invoke "Insert Code Snippet" without using the
context menu in the code window? In VB, you can type ? and tab and it
brings them up. Is there any such shortcut in C#?
Ctrl+K+X

More information about Code Snippets:
http://msdn2.microsoft.com/en-us/lib...92(VS.80).aspx

Mar 24 '07 #9
On Mar 24, 11:47 am, "Alexey Smirnov" <alexey.smir...@gmail.com>
wrote:
On Mar 24, 4:35 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
Thank you! Awesome!!
Now, is there a way to invoke "Insert Code Snippet" without using the
context menu in the code window? In VB, you can type ? and tab and it
brings them up. Is there any such shortcut in C#?

Ctrl+K+X

More information about Code Snippets:http://msdn2.microsoft.com/en-us/lib...92(VS.80).aspx
Hi,

Sorry to bother.

What is the best way to ensure all the developers on a team have the
same code snippets on their machines?

What is the best way to source control the code snippets?

regards
Frank

Mar 24 '07 #10
"Alexey Smirnov" <al************@gmail.comwrote in message
news:11**********************@n59g2000hsh.googlegr oups.com...
On Mar 24, 4:35 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
>>
Thank you! Awesome!!

Now, is there a way to invoke "Insert Code Snippet" without using the
context menu in the code window? In VB, you can type ? and tab and it
brings them up. Is there any such shortcut in C#?

Ctrl+K+X

More information about Code Snippets:
http://msdn2.microsoft.com/en-us/lib...92(VS.80).aspx
Thanks very much!!

Robin S.
Mar 24 '07 #11

<fr*****@gmail.comwrote in message
news:11*********************@o5g2000hsb.googlegrou ps.com...
On Mar 24, 11:47 am, "Alexey Smirnov" <alexey.smir...@gmail.com>
wrote:
>On Mar 24, 4:35 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
Thank you! Awesome!!
Now, is there a way to invoke "Insert Code Snippet" without using the
context menu in the code window? In VB, you can type ? and tab and it
brings them up. Is there any such shortcut in C#?

Ctrl+K+X

More information about Code
Snippets:http://msdn2.microsoft.com/en-us/lib...92(VS.80).aspx

Hi,

Sorry to bother.

What is the best way to ensure all the developers on a team have the
same code snippets on their machines?

What is the best way to source control the code snippets?

regards
Frank
I'd put them on a share, and add that library to the Code Snippet Manager.
That way, if you write your own, you can store them there and everyone can
get to them.

Robin S.
Mar 24 '07 #12
On Mar 24, 5:40 pm, frk....@gmail.com wrote:
On Mar 24, 11:47 am, "Alexey Smirnov" <alexey.smir...@gmail.com>
wrote:
On Mar 24, 4:35 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
Thank you! Awesome!!
Now, is there a way to invoke "Insert Code Snippet" without using the
context menu in the code window? In VB, you can type ? and tab and it
brings them up. Is there any such shortcut in C#?
Ctrl+K+X
More information about Code Snippets:http://msdn2.microsoft.com/en-us/lib...92(VS.80).aspx

Hi,

Sorry to bother.

What is the best way to ensure all the developers on a team have the
same code snippets on their machines?

What is the best way to source control the code snippets?

regards
Frank
Use a public shared folder for common snippets

http://msdn2.microsoft.com/en-us/lib...sb(VS.80).aspx

Mar 24 '07 #13
On Mar 24, 4:50 pm, "Alexey Smirnov" <alexey.smir...@gmail.comwrote:
On Mar 24, 5:40 pm, frk....@gmail.com wrote:
On Mar 24, 11:47 am, "Alexey Smirnov" <alexey.smir...@gmail.com>
wrote:
On Mar 24, 4:35 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
Thank you! Awesome!!
Now, is there a way to invoke "Insert Code Snippet" without using the
context menu in the code window? In VB, you can type ? and tab and it
brings them up. Is there any such shortcut in C#?
Ctrl+K+X
More information about Code Snippets:http://msdn2.microsoft.com/en-us/lib...92(VS.80).aspx
Hi,
Sorry to bother.
What is the best way to ensure all the developers on a team have the
same code snippets on their machines?
What is the best way to source control the code snippets?
regards
Frank

Use a public shared folder for common snippets

http://msdn2.microsoft.com/en-us/lib...sb(VS.80).aspx
many thx

Mar 24 '07 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Charles Law | last post by:
I have started getting "There is no source code available for the current location" when I run my VB.NET solution. I have no breakpoints set but cannot get rid of this message. The debugger...
13
by: Adam | last post by:
My "C:\" is getting full. What's the best way to install "wxWindows" without taking up 115 MB from my "C:\" ? Why do the following: MS Visual Studio, wxWindows, Borland C++, Stingray...
0
by: wilsonchan1000 | last post by:
There is a note regarding this error in UDB. I eventually found a solution and want to share with all or you. Problem occur with connect to db2 server: SQLCODE : -332 SQL0332N There is no...
1
by: Randy | last post by:
Hello All, I've got an app which performs a simple query to a web service and stores the returning data in a DataSet. The first time through it works find and as expected. The problem is that the...
6
by: swartzbill2000 | last post by:
Hello, I have some downloaded source code on my machine that the .net framework thinks is "not fully trusted". How can I fix this? I assume I use the 'Microsoft .NET Framework 1.1 Configuration'...
3
by: nan | last post by:
Hi All, I am trying to connect the Database which is installed in AS400 using DB2 Client Version 8 in Windows box. First i created the Catalog, then when i selected the connection type...
4
by: The Grue - James T. Sprinkle | last post by:
Does anyone know where I can download the source code to accompany PJ Plauger's book "The Standard C Library"? I find a lot of references for the library, but not the actual source code from the...
2
by: Ole Mercano | last post by:
When I create in Designer a new button on my Form it is automatically named e.g. "button1". When I doubleclick on it I am directed to the Form.cs where the following procedure is automatcially...
2
by: Deniz Dogan | last post by:
Hello. I am writing a program which has to send a signal (SIGUSR2 F.Y.I.) to a certain process, which I only know the name of, i.e. I need the PID for that process. How can I do this in C or...
0
by: Bobzilla | last post by:
Ok, so I've looked around and I can't seem to find an answer to my specific question, so here goes... I am using VS 2003 and I have a solution with code and all that I am steping through. When...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.