Wednesday, May 23, 2007
Good site for DB Connection Strings
Friday, March 23, 2007
ZAP: a Tool for Generating ASP.NET Websites Automatically
Transferring Data Using SqlBulkCopy Class
Monday, March 12, 2007
Creating Publisher Certificates For ClickOnce
Some quoting from this article:
There is a good article - “Configuring ClickOnce Trusted Publishers“ by Brian Noyes published on MSDN.
Framework SDK contains tool MakeCert. Here is the command line to make a certificate similar to one created by VS:
makecert -r -pe -a sha1 -n "CN=yourcompany" -b 01/01/2000 -e 01/01/2036 -eku 1.3.6.1.5.5.7.3.3 -ss My
The -b and -e option specify the time period when certificate is valid. The -eku option specifies the certificate is intended for code signing. The -a sha1 option is to set the same algorithm that VS uses.
It's important to use the -pe option which allows to export the private key from the certificate. To do this use CertMgr (another tool from Framework SDK). The new certificate will be installed in your personal store. Select it and click on the Export button. Click Next on the first page, and on the second select to export the private key. On the next one you can select some additional options; if not sure just leave on default. After that you will be asked to type password for the file; can be left blank. On the last one specify the file name and location. Finish the wizard and you should get a .pfx file that can be used in VS or imported on user machines.
Monday, December 11, 2006
Open IE for a specific URL in C#
System.Diagnostics.Process.Start(sURL);
But this will open the default browser in your system.
Another way is create Internet Explorer Application using shdocvw.dll:
using SHDocVw; // Contains the Internet Explorer reference
InternetExplorer oIE = new InternetExplorer();
if (oIE != null)
{
object oEmpty = String.Empty;
object oURL= sURL;
oIE.Visible = true;
oIE.Navigate2 (ref oURL, ref oEmpty, ref oEmpty, ref oEmpty, ref oEmpty);
}
Wednesday, November 15, 2006
Complaining Studio 2005 Text Editor too slow?
Tuesday, November 07, 2006
Build Project Templates Using Visual Studio 2005
Speed Up with Project Templates Using Visual Studio 2005 - Part 2
Speed Up with Project Templates Using Visual Studio 2005 - Part 3
Tuesday, October 10, 2006
Monday, October 09, 2006
Sunday, October 08, 2006
Flash Video Player
Flash Video Player
Free FLV Encoder - Riva VX
Flash Video (FLV) Anti-Aliasing
Friday, October 06, 2006
Google lauched code search
Thursday, September 28, 2006
Why DVD+R(W) is superior to DVD-R(W) -
Thursday, September 14, 2006
Tools for the Power Developer
These tools might be useful for Web Development.
Web Developer extension for Firefox
Internet Explorer Developer Toolbar
Tuesday, September 12, 2006
"Atlas" 1.0 Naming and Roadmap
Monday, August 28, 2006
Serial Port programming
Thursday, August 24, 2006
ClickOnce Installs fail, "ADODB 7.0.3300 required"?
"Unable to install or run the application. The application requies the assembly ADODB 7.0.3300 to be installed in the Global Assembly Cache (GAC) first."
I tried to find the ADODB 7.0.3300. But no way I can find it. The only thing I added to project is Report Viewer. So I removed the reference to ReportViewer, and tried again. It worked. It seems the ReportViewer references this mysterious ADODB 7.0.3300.
Wednesday, August 23, 2006
An Introduction to AJAX Techniques and Frameworks for ASP.NET
Details on CSS changes for IE7
Tuesday, August 22, 2006
Use ClickOnce for VB6 Program
Automatically Updating Visual Basic 6 Applications: Part I
Automatic Updating of Visual Basic Applications: Part II