Welcome to AspAdvice
Sign in
|
Join
|
Help
GetWhatYouWant
This Blog
About
Syndication
RSS 2.0
Atom 1.0
Search
Go
Navigation
Home
Blogs
Forums
Photos
Downloads
My Reader
Tags
No tags have been created or used yet.
Recent Posts
SQL - Alternative to FOR XML PATH
ASP.Net - Window form application change / set start up form
Good tools
.Net Compressing file using SharpZipLib
ASP.Net - Javascript onChange does not trigger AutoPostBack
Archives
January 2010 (1)
December 2009 (4)
November 2009 (2)
May 2009 (6)
April 2009 (13)
March 2009 (3)
August 2008 (1)
July 2008 (1)
June 2008 (5)
May 2008 (1)
February 2008 (1)
November 2007 (1)
January 2007 (4)
November 2006 (1)
October 2006 (2)
September 2006 (12)
January 2007 - Posts
Monday, January 29, 2007 4:31 PM
Javascript trim - Simple
str.replace(/^\s*|\s*$/g,'') use same as trim() function in vb Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it! Sponsor
Posted by
mo meng
|
0 Comments
Wednesday, January 24, 2007 11:26 AM
open word document in ASP.Net VB
in localhost, error 1) Access Denied go to C:\WINNT\Microsoft.NET\Framework\ (find the framework ur using) \CONFIG\machine.config open the file n search for impersonate and set it to TRUE and save it. 2) Macro storage go to start > run > type in
Posted by
mo meng
|
2 Comments
Thursday, January 11, 2007 10:10 AM
Macro storage error - microsoft word (simple)
if you encounter error during opening a microsoft word like the eg below Dim objWordApp As New Word.Application Dim objDoc As Word.Document objDoc = objWordApp.Documents.Open("C:\abc.doc") 'error thrown here objWordApp As New Word.Application
Posted by
mo meng
|
2 Comments
Thursday, January 11, 2007 9:53 AM
Access denied when calling Word.Application - Simple
if when u come do doing an office autonation first you need to install a microsoft word 11.0 object library (COM) secondly u might try to run the line to initialize an word application Dim objWordApp As New Word.Application objWordApp As New Word.Application
Posted by
mo meng
|
0 Comments