Blog
Blog posts on .NET, Azure, and more.
K-MUG Usergroup Meeting on 3rd August Kochi
July 23, 2013 by Anuraj
Miscellaneous User Group Activities
How to upload image on Facebook using graph API and C#
July 22, 2013 by Anuraj
.Net .Net 4.0 ASP.Net MVC Windows Forms
Long back I wrote a post about uploading files to Sky Drive from C# Winform application. This post is about uploading an image to Facebook using C# without any 3rd party library.
How to implement text to speech in WP7 using BING API
July 19, 2013 by Anuraj
.Net Windows Forms Windows Phone
In WP8, Microsoft introduced libraries for both Text to Speech and Speech to Text without an active internet connection. But this feature is not available in WP7. I found some article implementing Text to Speech using BING API, but seems it is no more working. Here is one implementation using BING REST API, which helps to integrate text to speech in in you WP7 applications.
"The file you are trying to open, [filename], is in a different format than specified by the file extension" error opening Excel file
July 01, 2013 by Anuraj
.Net .Net 3.0 / 3.5 .Net 4.0 Windows Forms
Today I got another problem with Excel file opening. One of the my colleague wrote code to generate XLS / XLSX file using OleDb object. And it was working perfectly. Only problem, while opening the XLS / XLSX file, MS Excel was displaying an error like this.
Registry.LocalMachine.OpenSubKey() returns null
July 01, 2013 by Anuraj
.Net .Net 3.0 / 3.5 .Net 4.0
To verify excel installed on my local system; initially I tried using OpenSubKey() method. But it was always returning null, even though I can see the registry key using regedit.exe. I was using a Windows 8, x64 bit OS and the application was developed in VS 2008, Winforms, x86 platform. Later I found the reason - A 32-bit application on a 64-bit OS will be looking at the HKLM\Software\Wow6432Node node by default. To read the 64-bit version of the key, you’ll need to specify the RegistryView enumeration using OpenBaseKey() method.(This API is added in .Net 4.0.) And if you are using .Net 3.5 or below, either you need to build the application using Any CPU or x64 platform target.
Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub