Sign in
SharePoint Comic
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Tags
ASP.NET
Certification
Errors
Miscellaneous
News
Office 365
RMS
SharePoint
SharePoint Comic
SQL Server
Tips
Visual Studio
Windows 7
Windows 8
Windows Phone 7
Windows Server 2008
Blog Search
Blog Archive
Archives
August 2012
(1)
June 2012
(2)
May 2012
(1)
March 2012
(1)
October 2011
(1)
August 2011
(1)
June 2011
(1)
May 2011
(2)
April 2011
(1)
February 2011
(1)
November 2010
(5)
July 2010
(1)
June 2010
(1)
May 2010
(3)
April 2010
(4)
March 2010
(1)
February 2010
(5)
January 2010
(1)
December 2009
(2)
November 2009
(6)
October 2009
(8)
September 2009
(6)
August 2009
(7)
July 2009
(7)
June 2009
(2)
May 2009
(2)
April 2009
(9)
March 2009
(10)
February 2009
(4)
January 2009
(7)
December 2008
(6)
November 2008
(6)
October 2008
(5)
September 2008
(8)
August 2008
(6)
July 2008
(1)
June 2008
(3)
May 2008
(6)
April 2008
(6)
March 2008
(1)
February 2008
(2)
January 2008
(1)
December 2007
(3)
November 2007
(1)
October 2007
(3)
September 2007
(2)
August 2007
(1)
July 2007
(1)
May 2007
(3)
April 2007
(1)
February 2007
(2)
January 2007
(1)
August 2006
(1)
July 2006
(2)
May 2006
(1)
April 2006
(4)
March 2006
(3)
July 2005
(2)
TechNet Blogs
>
SharePoint Comic
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
SharePoint Comic
Use an Image in a HyperLinkColumn
Posted
over 7 years ago
by
SharePoint Comic
0
Comments
I’ve seen a lot of posts on boards of people inquiring how to utilize an image in a hyperlinkcolumn. I found those posts, because I was trying to do the same thing. In my codebehind, I had some custom things going on for the link, and really...
SharePoint Comic
Formatting Strings in a DataGrid
Posted
over 7 years ago
by
SharePoint Comic
0
Comments
In my opinion, one of the coolest .net controls is the DataGrid. There is sooo much you can do with this puppy. One of the things I like most about it is how you can choose to control or not control how data is rendered. Which brings...
SharePoint Comic
Determine how many records are in a DataSet
Posted
over 7 years ago
by
SharePoint Comic
0
Comments
To determine how many records are in a dataset, you can use the Count method of the Rows in a table (last line in code). // New DataSet DataSet dbSet = new DataSet ...
SharePoint Comic
Date and Time in a SQL Statement (DateTime)
Posted
over 7 years ago
by
SharePoint Comic
0
Comments
To get the date and time for a datetime value in SQL Server, use the GetDate method. It will return the current system date and time in the SQL Server standard internal format for datetime values. This is a pretty useful function if you need to...
SharePoint Comic
Close Registry Keys After Use
Posted
over 7 years ago
by
SharePoint Comic
0
Comments
To open a windows registry key using C#, the code would look something like this: RegistryKey rk = Microsoft.Win32. Registry .LocalMachine.OpenSubKey( "Software\\TWC\\Applications" , true ); The RegistryKey object has lots of methods on it to...
SharePoint Comic
How to debug JavaScript in Visual Studio
Posted
over 7 years ago
by
SharePoint Comic
0
Comments
Follow these 2 simple steps and you will be debugging JavaScript with ease. 1. Clear the “disable script debugging” checkbox in Internet Explorer’s advanced properties. 2. Add the keyword “debugger” somewhere within...
SharePoint Comic
How to swap two strings
Posted
over 7 years ago
by
SharePoint Comic
0
Comments
using System; class SwappinStrings { static void SwapStrings( ref string s1, ref string s2) // The string parameter x is passed by reference. // Any changes on parameters will affect the original...
SharePoint Comic
ImageButton in DataGrid and DataGrid.ItemCommand Event
Posted
over 7 years ago
by
SharePoint Comic
0
Comments
I recently had an ImageButton in a DataGrid, and for whatever reason it wouldn’t fire the DataGrid.ItemCommand event. After beating my head on the keyboard for an entire day, I finally found the problem. When you are binding the grid (or calling...
SharePoint Comic
Convert VB to C#
Posted
over 8 years ago
by
SharePoint Comic
0
Comments
Ever find a tutorial or code sample that will resolve your current issue…. and Argh! It’s in VB. It’s happened to me a thousand times. This experimental web app can convert that foreign language for you: http://www.developerfusion.co...
SharePoint Comic
Clear Read Only Attributes
Posted
over 8 years ago
by
SharePoint Comic
0
Comments
I was recently working on a project at work where the actual development was being outsourced. When the 3rd Party sent their builds over for deployment - the code never worked. The constant complaint was that there were files set to Read Only...
Page 8 of 8 (185 items)
«
4
5
6
7
8