Monthly Archives: March 2012

How to access Skydrive shared by another person

1. Sign in to your own live account. 2. Add the live mail of the person you want to access to your contact. 3. Go to Windows Live and search the contact. 4. Click the Document folder of that person. … Continue reading

Posted in .Net | Tagged , | Leave a comment

Create Hello World in Metro Style Application

1. File -> New Project. 2. Choose Blank Application. 3. Click on the BlankPage.xaml. 4. Drop a Textbox. 5. Drop a Button. 6. Double click on the button and put Hello World in it. Watch the video below. Create Hello … Continue reading

Posted in .Net | Tagged , | Leave a comment

Visual Studio PerfWatsonhas identified responsiveness problem with Visual Studio

If you see the below message:   ——————————————————-   Visual Studio PerfWatsonhas identified responsiveness problem with Visual Studio. Do you want to report these errors to Microsoft? ——————————————————-   The solution at the moment is uninstall the extension by choose … Continue reading

Posted in .Net | Tagged , | Leave a comment

How to get Visual Studio 11 (VS 11) sample

Go to pull down menu choose Help -> Sample. See the video below. How to get Visual Studio 11 (VS 11) sample

Posted in .Net | Tagged , | Leave a comment

Loading designer never ended for WPF or Metro Style app in VS 11

One of the possible reasons is if you install VS 11 in Virtual Box 4.1.10. Revert back to 4.1.8 and rebuild then it will work.

Posted in .Net | Tagged , , , , , | Leave a comment

Cannot be opened because it is version 706. This server supports version 661 and earlier

The you attach a database to SQL Server 2008 R2. The first error you hit is. —————————— An error occurred when attaching a database(s). —————————— When you click the hyper link you see the error as below. —————————— The database … Continue reading

Posted in .Net | Tagged , | 5 Comments

Do not install Guest Additions for Virtual Box 4.1.10 if your guest OS is Windows 8

Do not install Guest Additions for Virtual Box 4.1.10 if your guest OS is Windows 8. It will crash your Windows 8 consumer preview. 4.1.8 the Guest Additions cannot be installed but will not crash your OS.

Posted in .Net | Tagged , | 1 Comment

Retrieve a specific property from Active Directory

You want to retrieve the MemberOf property for an Active Directory user. //pass in AD server name, account , password that can access to this server DirectoryEntry entry = newDirectoryEntry(“LDAP://dc1.localserver.localdomain”, “Administrator”, “password”);   DirectorySearcher mySearcher = newDirectorySearcher(entry); //someone is the … Continue reading

Posted in .Net | Tagged , , | Leave a comment

Northwind in Microsoft SQL Server 2012

Finally SQL server 2012 is working and able to attach Northwind database to it. I am able to enable SQL authentication. What are the out coming bugs I will find??? Stay tuned. You can download the Northwind.mdf from my skydrive … Continue reading

Posted in .Net | Tagged , | 35 Comments

Error 1330.A file that is required cannot be installed because the cabinet file D:\1033_ENU_LP\redist\VisualStudioShell\VSIntSetup\cab12.cab has an invalid digital signature

You might hit the error below when you are installing SQL Server 2012. ——————————————————————- Error 1330.A file that is required cannot be installed because the cabinet file D:\1033_ENU_LP\redist\VisualStudioShell\VSIntSetup\cab12.cab has an invalid digital signature. This may indicate that the cabinet file … Continue reading

Posted in .Net | Tagged , , , , , | 7 Comments