You may refer to this previous late-bind post on how to open a document
Continue reading “How to insert a row in existing table using C# late bind” »
Monthly Archives: July 2011
How to insert a row in existing table using C# late bind
Example code for MS Word search and replace using early binding in C#
Compared to late bind search and replace it is more straight forward. You just have to add a COM reference of your Microsoft Word Object Library
Continue reading “Example code for MS Word search and replace using early binding in C#” »
Example code for MS Word search and replace using late binding in C#
The main advantage of late binding is that code is more certain to be version-independent. As what i have read there are disadvantages of using late bind instead of early bind. The main reason why i decided to use late bind code instead of the early bind approach is that I am using Word 2007 while the client is using Word 2003.
Continue reading “Example code for MS Word search and replace using late binding in C#” »
How to customized wordpress login in side bar of your blog
Below are the basic steps i did to tweak the wordpress login.
step 1.
I modified the sidebar.php of my theme, copied the login submit form of the original code from wp-login.php. I changed some of the classes of few of the elements so that the original style will not be affected. This is what the tweak login looks like.
Continue reading “How to customized wordpress login in side bar of your blog” »
Basic example of .htaccess url rewrite
old url: http://localhost/mysite/profile.php
new url: http://localhost/mysite/profile+settings
Continue reading “Basic example of .htaccess url rewrite” »
