Oct 14, 2011

Best Social Media Tools For Marketing Your Busines...

Best Social Media Tools For Marketing Your Business: Social media is a growing field to advertise your business. Twitter and Facebook are large websites where a company can have thousands or even millions of people interacting with them on a daily basis. It is impossible to interact with each and every one of those individuals. That is why businesses need to take advantage of the best social media tools for marketing your business.

Oct 1, 2011

Metro Style Application - A new Microsoft Technology

Hello friends,

Just before couple of weeks, I came to know about METRO STYLE Application - New Microsoft technology, which will be shipped along with Visual Studio 11.

Feeling too good hearing that:
  • This technology is using XAML, which is well known to WPF/Silverlight Developers.
  • Its in C++, C Sharp and VB languages
  • Windows 8 application programming base is having some relation with it(I am not exactly sure about this)
  • MVVM pattern masters will be having good advantages(cheers..)
  • And lot more to search from my side.
For a quick view, I please go through below mentioned link:
Building Metro Style Application

Hope, this would keep all pros, up to date with latest Microsoft technology releases.

Thanks!!

Sep 30, 2011

Silverlight 5 R&D

Now a days, I am focusing over,

Silverlight RC 5 to start,
Web Analytic & Text Mining
Silverlight Analytic Framework MSAF





Sep 27, 2011

Getting Suggested spelling lists for any wrong spell list

Hi Friends,
I have just started working over one utility or better to say code which will give me list of suggestions words for a wrongly spell word.

Say for example:
For my word is "vurak"
Output : viral,quark,vera,aura,lurk

Similarly
My word is "Indai"
Output: India,Indian,Indi

And few days before I have posted, above post to which I found solution from web, but this was so much time consuming to find and refine the codes, as everywhere spell checking utility is given over web, but our verge was different to go to spell suggestions. Below mention is the tiny code written in C#, using Visual Studio 2010

Spell Suggestion Utility

//Special References to add, I have not mention default references
using Microsoft.Office;
using Microsoft.Office.Interop;
using Microsoft.Office.Interop.Word;
//Method which returns CSV(Comma Seperated Values) of suggestions of words, for MyWord passed as parameter
private string GetSpellingSuggestions(string MyWord)
        {
            Microsoft.Office.Interop.Word.Application app = new Microsoft.Office.Interop.Word.Application();
            string strReturn = "";
            if (MyWord.Trim().Length > 0)
            {
                app.Documents.Add();
                if (app.CheckSpelling(textBox3.Text))
                    strReturn += "Spelling is Correct \n";
                else
                {
                    foreach (object item in app.GetSpellingSuggestions(textBox3.Text))
                        strReturn += (item as SpellingSuggestion).Name+ "\n";
                }
            }
            else
                strReturn = "Word is empty";

            app.Quit();           
            return strReturn;
        }
// Note: MS Office is required

Okay, thats it, you just need to copy and past above short method, I have done lot of search and found : Bing webService, AfterDeadline.dll, but for bulk data,which I have for Text Mining,  the above mention approach suits my application, hence I have used it :)

Do share your comments, regarding the same, and doubts, if any.

Thanks for going through my post :)

Sep 16, 2011

Silverlight 5 RC (Release Candidate) is out

Hello Friends,

It seems I am a bit late but not missed, to let you all Silverlighter know about the Released Candidate version of Silverlight 5 is out in market.

If you have already installed Silverlight 5 Beta version, then you may need to uninstall Beta first then, Install Silverlight 5 RC.

Thanks!!

Aug 5, 2011

Silverlight 4 Reporting Dashboard

Dear All,
I am currently working, for a very specific RnD, related to a Silverlight Dashboard Applicaiton which is data driven, having huge data.

There will be in all two types of data:
1). Online Data
2). Offline Data

Both type of data will combine to form a LIVE DATA, which will be finally accessed by user.
i.e., consider following steps to make scenario more clear:

STEP 1:
Whenever user will be online, there will be a retrival of whole data in bulk from Internet, which will be saved to user's PC in specific format.

STEP 2:
And, Whenever Internet is not available then also User, will be able to operate the Dashboard and can see offline data, and can click on various functionality and use the Dashboard.

STEP 3:
After that, when internet access comes, only the NEW data should be downloaded, and appended to the data stored at users desk.

I would like all to take participate for the above Task:
Some Hints : Use Isolated Storage, Silverlight Caching..