\' – single quote, needed for character literals \" – double quote, needed for string literals \\ – backslash \0 – Unicode character 0 \a – Alert (character 7) \b – Backspace (character 8) \f – Form feed (character 12) \n – New line (character 10) \r – Carriage return (character 13) \t – Horizontal […]
How do delete sourcesafe .scc
.scc files used by Microsoft Visual SourceSafe, that integrates with Visual Studio; contains source code control information used to get and commit developer files; used by the application for managing local copies of projects under source control. SCC files are never committed to the version control repository. Instead, they are used for communicating with the […]
Unable to start debugging on the web server
Just enable “Integrated Windows authentication” of your IIS web application If this is not working try to re-register your .NET framework with aspnet_regiis.exe Happy coding.
SQL Server Object Dependency
It’s always hard to make modifications to code or database design especially if you don’t know anything about the business process. In sql server 2005 (or 2008) you can use sp_depends stored procedure to obtain dependency between the objects such as table, view or stored procedure. For example just run ‘sp_depends Users’ script to determine […]
Using clipboard with console applications
Clipboard is a windows object. If you want to use clipboard in your .NET framework console applications you must reference `System.Windows.Forms` and mark your main method with `STAThreadAttribute` attribute. Then you can use this class's methods e.g. Clipboard.SetText("some text to store in the clipboard"); Happy coding.
Deadlock Resources
If you encounter a deadlock problem this resources can help to understand and solve the problem. Deadlocking http://msdn.microsoft.com/en-us/library/ms177433.aspx Minimizing Deadlocks http://msdn.microsoft.com/en-us/library/ms191242.aspx Detecting and Ending Deadlocks http://msdn.microsoft.com/en-us/library/ms178104.aspx
Enterprise Library 4.1 Data Application Block Integration Exception
if you are getting this exception "The type initializer for 'Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ObjectBuilder.EnterpriseLibraryFactory' threw an exception." try to reference Microsoft.Practices.ObjectBuilder2.dll Happy coding…
C# and VB.NET Code conversion
We, the developers sometimes need work with different languages for some projects. Especially if you are a .NET developer you will need a conversion tool to convert C# to VB.NET or VB.NET to C#. Here is a useful free tools for that need. C Sharp to VB.NET VB.NET to C Sharp You can check other […]
VS 2010 and .NET Framework 4.0
This is the announcement of the release date for VS 2010 and .NET Framework 4.0 of March 22, 2010!
Combine column values as one string
You can use T-Sql’s COALESCE function to combine your data into a single string. Here is a simple sample: Result: Ilbay|Talha|Roberte|Theıoden|Cihan|Sagolee|Kazım|Mehmet|Recep|Alp|Haci|Ömer Happy coding…