Archive for February, 2008

SharePoint Demo

Looking for a SharePoint portal demo site? - here is one - http://www.wssdemo.com/
And here is a huge list - http://www.wssdemo.com/Pages/websites.aspx
Also, do you know microsoft.com is done with SharePoint?
Here are some SharePoint community websites:
http://forums.microsoft.com/MSDN/default.aspx?ForumGroupID=328&SiteID=1
http://sharepoint.microsoft.com/sharepoint/forums/default.aspx
http://www.sharepointbuzz.com/
http://community.officesharepointpro.com/forums/
http://suguk.org/
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

SQL Server 2005 Driver for PHP

SQL Server 2005 Driver for PHP CTP (Community Technology Preview - February 2008) is avaialble for download.
Click here to download.
You can visit the SQL Server 2005 Driver for PHP Team Blog at http://blogs.msdn.com/sqlphp/
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Connect to Microsoft SQL Server from Java

Here is the way you can connect to your Microsoft SQL Server 2005 from your java application via JDBC.
First you need to download the Microsoft SQL Server 2005 JDBC Driver.
You will get sqljdbc.jar which is all you needed. As a java programmer, you know how to use this, right?
You will get a user [...]

Leave a Comment

Ten Qualities of an Effective Team Player

I just got an interesting article on “Ten Qualities of an Effective Team Player”.
URL: http://www.allbusiness.com/human-resources/employee-development-team-building/8516-1.html
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

How to disable button after submit - ASP.NET

Button1.Attributes.Add(”onclick”, ClientScript.GetPostBackEventReference(Button1,”") + “;
this.value=’Please wait…’;this.disabled = true;”);

If you check the source after rendering, it will look like this:

onclick=”__doPostBack(’Button1′,”);this.value=’Please wait…’;this.disabled = true;”

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Word Automation with .NET

First refer COM objects - Microsoft Office xx.xx Object Libraryand Microsoft Word xx.xx Object Library
Here is the C# code for reading a word document:

Microsoft.Office.Interop.Word.Application oWord = new Microsoft.Office.Interop.Word.Application();
object ofilename = @”C:testdoc.doc”;
object o = System.Reflection.Missing.Value;
object oreadonly = true;
object ovisible = false;
Microsoft.Office.Interop.Word.Document oDoc = oWord.Documents.Open(ref ofilename, ref o, ref oreadonly
, ref o, ref [...]

Leave a Comment

What’s this (Code Name) Avalon?

WPF or Windows Presentation Foundation… formerly known as Avalon.
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Reached Level 3 on Yahoo Answers

Knowledge Sharing continues…

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

How to Refresh iFrame

function reload() {
fr = document.getElementById(”iframe1″);
fr.src = fr.src;
}

test contents

VN:F [1.1.6_502]Rating: 1.0/5 (1 vote cast)

Leave a Comment