Create Zip Files Using DotNetZip Library in .NET – 2
Posted On Thursday, October 18, 2012 By Techreceipe.com. Under Asp.Net, Microsoft, Visual Studio Tags: .NET, CodePlex.com, DotNetZip, DotNetZip Library
When we create the zip file with the code
1
...
Create Zip Files Using DotNetZip Library in .NET – 1
Posted On Thursday, October 11, 2012 By Techreceipe.com. Under Asp.Net, Visual Studio, Visual Studio 2010 Tags: .NET, CodePlex.com, DotNetZip, DotNetZip Library
The newly released .NET Framework 4.5 contains classes to compress and decompress files using .NET.
This article explains the samples for compressing and decompressing the files using DotNetZip Library.
DotNetZip Library is avaliable under Microsoft Public License (Ms-PL).
Download the DotNetZip Library from CodePlex.Com
Extract the contents of the files. And the Folder contents ...
Try Visual Studio 2012 free for 90 days
Posted On Wednesday, September 12, 2012 By Techreceipe.com. Under Microsoft, News, Visual Studio Tags: free, Visual Studio 2012
Welcome to Visual Studio 2012 & .NET Framework 4.5!
Before installing this software, you should review the following for a list of known issues, system requirements, and compatibility information:
Visual Studio 2012 Readme
.NET Framework 4.5 Readme
Microsoft Help Viewer 2.0 Readme
Compatibility
Download from here
AJAX Control Toolkit Release Notes - May 2012 Release
Version 60501
May 2012 release of the AJAX Control Toolkit.
AJAX Control Toolkit .NET 4 - Binary – AJAX Control Toolkit for .NET 4 and sample site (Recommended).
AJAX Control Toolkit .NET 3.5 - Binary – AJAX Control Toolkit for .NET 3.5 and sample site ...
StickOut is a desktop sticky note application that offers the following features:
Floating desktop sticky notes
Rich text inside sticky notes
Multi-user; send/receive sticky notes between other sticky friends
Compose Outlook e-mail directly from a sticky note
Send any item from Outlook to the desktop as a sticky note using an Outlook add-in
Send selected content ...
Scott Hanselman explains the no one noticed features in Visual Studio 2011.
Some of them are
Browser Chooser/Launcher in the Toolbar
Image Thumbnails on Hover in the Solution Explorer
CSS Color Picker built-in
Read the entire list in URL : http://www.hanselman.com/blog/FeaturesNOONENOTICEDInVisualStudio11ExpressBetaForWeb.aspx
Download Visual Studio 11 Beta today!
Get Visual Studio 11 Beta today and start preparing for the next generation of
development. You can’t predict the future, but you can get there first:
New HTML and CSS editors extend Visual Studio’s rich editing capabilities to make HTML 5 and CSS 3 development more productive, ...
When using the System.Convert.ToInt32 method , some times the above exception will be thrown. The exception details are
Screen Shot:
The cause of the exception is you are trying to convert the a empty string to a integer value.
Code to reproduce the exception
Make sure that you pass a valid value to the ...
Read values from Comma-Delimited file using VB.Net – Part 2
Posted On Thursday, August 18, 2011 By Techreceipe.com. Under Visual Studio, Visual Studio 2010 Tags: asp.net, Visual Studio, vs2010
The previous article Part1 explains the method of reading a comma-delimited file using VB.Net.
If the file has some comment tokes like
Dim parser As New FileIO.TextFieldParser("D:\Test.txt")
Dim rows As String()
parser.SetDelimiters(",")
parser.TextFieldType = FileIO.FieldType.Delimited
parser.CommentTokens = New String() {"'"}
Try
'Try to read the file
'Read the Header data
rows = parser.ReadFields
'print the Header
For Each str As String In ...
If you want to reverse a string using .Net , you have to use the Visual Basic left over of StrReverse Function.
I have string like "VB is Great" and I want to reversed strings as "Great is VB". Now I use the StrReverse Function.
Dim str As String = "VB is Great"
MessageBox.Show(StrReverse(str))
Output:
taerG ...

