TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Translate this page
Powered by
Microsoft® Translator
Popular Tags
Active Directory
AD
AD DS
adfs
ASP.NET
azure
BizTalk
BizTalk Server
BizTalk Server 2010
C#
Candidate for deletion
certification
cloud
core docs
de-DE
EAA
Ed Price
Ed's Stub Pages
en-US
ESA
es-ES
Excel
Exchange
Exchange 2010
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
FIM Resources
FIM-HELP
forefront
forums
fr-FR
Gokan Ozcifci
has code
has comment
has comments
has image
has Images
has Other Languages
has See Also
Has Table
Has TOC
Horizon_Net
How To
Hyper-V
id-ID
IIS
Italian Wiki Articles
it-IT
ja-JP
Jordano Mazzoni
Link Collection
Luciano Lima
Luigi Bruno
Lync Server 2010
MIISILMFIM MACAULAY
Multi Language Wiki Articles
needs work
operations manager
Pirated Content
Portal
Português Brasil
PowerShell
pt-BR
security
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint Pirate
Small Basic
solucionando problemas
SQL Server
SQL Server 2012
stub
System Center
System Center 2012
TechNet Guru
TechNet Wiki
TechNet Wiki Featured Article
tonyso
Translated into Japanese
troubleshooting
tr-TR
vídeo
Video
Virtualization
VMM
Wiki
Windows
Windows 7
Windows 8
Windows Azure
Windows Server
Windows Server 2003
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
yottun8
اکتیو دایرکتوری
Browse by Tags
>
TechNet Articles
>
All Tags
>
code
Tagged Content List
Wiki Page:
Small Basic Sample: Turtle Plus Flickr
Ed Price - MSFT
Code GraphicsWindow.Show() pic = Flickr.GetRandomPicture("lightning") gw = GraphicsWindow.Width gh = GraphicsWindow.Height GraphicsWindow.DrawResizedImage(pic, 0, 0, gw, gh) distance = 50 Turtle.Speed = 9 For sides = 3 To 20 DrawPolygon() EndFor Sub DrawPolygon...
on
17 Sep 2013
Wiki Page:
Effective C# Coding
Richard Mueller
Make your C# code efficient The following set of effective C# articles contains various ways to improve your C# code. Item 1 - Prefer the Length property when checking string size [ Performance] String comparison involves unnecessary overhead. If all you need is to check whether the...
on
30 Jul 2013
Wiki Page:
Wie fügen Sie formatierten Windows PowerShell-Code im TechNet Wiki ein (de-DE)
Naomi N
Dieses Thema ist eine Vorgehensweise. Bitte halten Sie es so klar und einfach wie möglich. Vermeiden Sie spekulative Diskussionen sowie Grundsatzdiskussionen der zugrunde liegenden Mechanismen oder verwandte Technologien. Sie können formatierten und farbigen Code-Syntax einfügen (der...
on
9 Jul 2013
Wiki Page:
Wiki: 整形されたコードを挿入するには (ja-JP)
Tomoaki Yoshizawa
人間が読み易いコードを TechNet Wiki に挿入することは、読み手にとって多くの価値があります。ただ、記事の編集者にとってはいろいろ工夫が必要です。この記事を How to 情報として共有して利用してください。 Wiki のエディターには整形コードブロックオプション ( ) があります。クリックしてみてください。いくつかのコードを入力し、言語を選択してから OK をクリックします。それにより、整形されたコードが記事へ挿入されます。 その他のオプション TechNet Wiki に整形された Windows PowerShell のコードを挿入する方法...
on
22 Jun 2013
Wiki Page:
Wiki: How to Insert a Formatted Code Snippet and Code Block on TechNet Wiki
Tomoaki Yoshizawa
Table of Contents How to Use the Format Code Block Tool Other Code Insertion Options See Also Other Languages Inserting human-readable code into your TN Wiki articles adds a lot of value for the reader, but it can be a challenge for the author. Use this article to share how-to information. How...
on
22 Jun 2013
Wiki Page:
CRM 2011 Write a Plugin with Early Bound Types
Payman Biukaghazadeh
If you want to use early bound types(CrmSvcUtil) in your plugins, you should add the following code in your Plugin project AssemblyInfo.cs. [ assembly : Microsoft.Xrm.Sdk.Client. ProxyTypesAssemblyAttribute ()]
on
28 May 2013
Wiki Page:
How to Paste Formatted PowerShell Code with Line Numbers on TechNet Wiki
Richard Mueller
The line numbers portion of this script is only really useful for displaying longer scripts. The line numbers are probably better suited for use in TechNet Gallery. This is an extension to the article " How to Insert Formatted Windows PowerShell Code on TechNet Wiki ". With this method...
on
27 Apr 2013
Wiki Page:
StockQuote Sample: How to Avoid Error 80072ee5 (Windows Embedded Compact 7)
Yagmoth555
When you run the Web Services on Devices (WSD) StockQuote sample provided by the Windows Embedded Compact 7 SYSGEN_WSDAPI_SAMPLES catalog item, StockQuoteClient.exe may report error 0x80072ee5 (ERROR_INTERNET_INVALID_URL). In this article: Cause Resolution Cause To work...
on
7 Feb 2013
Wiki Page:
13 Tips to Comment Your Code
FZB
THE CODE SHOULD EXPLAIN HOW. THE COMMENTS SHOULD EXPLAIN WHY. Following are 13 tips on how to comment your source code so that it is easier to understand and maintain over time. 1. Comment each level Comment each code block, using a uniform approach for each level. For example: For...
on
29 Jun 2012
Page 1 of 1 (9 items)
Can't find it? Write it!
Post an Article