Sponsored Ad

Friday, February 26, 2010

Windows Mobile 6.5 Developer Tool Kit – Free Official Download

Windows Mobile 6.5 Developer Tool Kit – Free Official Download

The Windows Mobile 6.5 Developer Tool Kit adds documentation, sample code, header and library files, emulator images and tools to Visual Studio that let you build applications for Windows Mobile 6.5.

 

This Development kit includes:

  • Windows Mobile 6.5 Professional Square Emulator
  • Windows Mobile 6.5 Professional QVGA Emulator
  • Windows Mobile 6.5 Professional WQVGA Emulator
  • Windows Mobile 6.5 Professional VGA Emulator
  • Windows Mobile 6.5 Professional WVGA Emulator
  • Windows Mobile 6.5 Standard Square Emulator
  • Windows Mobile 6.5 Standard QVGA Emulator

How to Download:

http://www.microsoft.com/downloads/details.aspx?familyid=20686A1D-97A8-4F80-BC6A-AE010E085A6E&displaylang=en

Free Download Microsoft Device Emulator 3.0 -- Standalone Release

Free Download Microsoft Device Emulator 3.0 -- Standalone Release

Microsoft Device Emulator 3.0 is the third publicly released version of the Device Emulator for ARM-based devices. This emulator will also release with Visual Studio 2008. Device Emulator 3.0 will replace the executables and DLLs from previous releases (1.0 and 2.0). The main addition with Device Emulator 3.0 is the new automation API for the device emulator manager, which allows developers programmatic access to perform the same operations on installed emulator images that can be performed interactively on the Device Emulator Manager drop-down and context menus.

 

To Free Download Full version of this emulator, Please visit to the given link. Emulator is available for vista and other Microsoft operating systems. For more detail and User instructions, please visit to documentation also.

 

 

How to Download:

http://www.microsoft.com/downloads/details.aspx?FamilyID=a6f6adaf-12e3-4b2f-a394-356e2c2fb114&DisplayLang=en

Thursday, February 25, 2010

PHP to ASP.NET 1.x Migration Assistant Free Download | Free Download PHP to ASP.NET 1.x Converter Tool

PHP to ASP.NET 1.x Migration Assistant      To     PHP to ASP.NET 1.x Migration Assistant 

 

The PHP to ASP.NET 1.x Migration Assistant helps to convert PHP pages and applications to ASP.NET. This does not fully automate the process but helps developer to ease the process.

 

Free Download and install the PHP to ASP.NET 1.x Migration Assistant

http://download.microsoft.com/download/0/d/c/0dc4631e-8624-46e9-b87c-59c829b947f4/PHPConvert.msi

Review the PHP to ASP.NET 1.x Migration Assistant Whitepapers

http://msdn.microsoft.com/asp.net/using/migrating/phpmig/whitepapers/default.aspx

 

 

Check Full Details:

http://www.asp.net/downloads/archived/migration-assistants/php-to-aspnet/

Free Download ASP to ASP.NET Migration Assistant | ASP To ASP.NET Converter Tool Free Download

Free Download ASP to ASP.NET Migration Assistant

The ASP to ASP.NET v1.x Migration Assistant helps to convert ASP pages and applications to ASP.NET. This tool does not fully automate the process but helps developer to ease the process.

 

Free Download and Install the ASP to ASP.NET Migration Assistant

http://download.microsoft.com/download/0/7/8/0780e532-8d77-4834-9a8e-fd428fbdde63/Setup.msi

Free Download the ASP to ASP.NET 1.x Migration Guide

http://msdn.microsoft.com/asp.net/migration/aspmig/aspmigasst/default.aspx

Free Download the ASP to ASP.NET Migration Assistant Training

http://download.microsoft.com/download/b/f/6/bf6ac2d3-1359-49f4-ad8a-271edd223275/ASP%20to%20ASP.NET%20Migration%20Asssitant%20Training.msi

http://msdn.microsoft.com/asp.net/migration/aspmig/aspmigasst/default.aspx

 

Check Full Details:

http://www.asp.net/downloads/archived/migration-assistants/asp-to-aspnet/

Tuesday, February 23, 2010

Facebook Developer Toolkit – Free Download - .NET

The main goals driving the release of version 3.0 were:

• Provide better doc and samples
• Provide support for Silverlight
• Provide support for ASP.NET MVC
• Provide improved support for WPF
• Provide improved support for FBML (FBML Server Controls)
• Provide a login control that can be used to replace the BasePage and/or MasterPage for Canvas Development
• Improve out of the box support for Extended Permission Prompts
• Refactor core source to improve maintainability and design

As part of this, we worked closer with the Developer Division at Microsoft to help design the Silverlight and WPF support. Also, after discussions with Microsoft it was decided that the namespaces and methods should be updated again to be more consistent with traditional .NET apis. This will cause some breaking changes to everyone as they move to 3.0. But, the main goal is that we wanted to get it right this time so that this could become an officially supported client library. Microsoft is working with Facebook to get the toolkit identified as the officially supported library. The plan is to provide real-time support and updates to keep the toolkit in synch with the Facebook API.

Download the starter kit to develop Facebook applications, This is fully developed in .NET and support multiple new .NET Technologies.

 

How to Download:

http://www.codeplex.com/FacebookToolkit

Quick Start Guide:

http://facebooktoolkit.codeplex.com/wikipage?title=Quick%20Start%20Guides&referringTitle=Home

Monday, February 22, 2010

Free Download Connector - Driver for MySQL and .NET connector





Connector/Net is a fully-managed ADO.NET driver for MySQL.


This is free open source software / driver to connect to MySQL database through Microsoft .NET. This driver usage the ADO.NET technology to connect. for more detailed info please refer to documents.


Connector-Net 6.2.2

How to Download:
http://dev.mysql.com/downloads/connector/net/

Online Documentation:
http://dev.mysql.com/doc/refman/5.1/en/connector-net.html

Free Download MySQL Community Server



MySQL Enterprise subscription is the most comprehensive offering of MySQL database software, services and support to ensure your business achieves the highest levels of reliability, security, and uptime. MySQL Enterprise includes the MySQL Enterprise Server software, which is the most reliable, secure and up-to-date version of the world's most popular open source database. Users also receive monthly rapid updates and quarterly service packs with the latest bug fixes of MySQL Enterprise Server.

Download MySQL Community Server totally free from, MySQL Official site, The link is given below, Please let us know if you feel any problem while downloading.

Documentation and other help also available at same site.

How to Download:
http://dev.mysql.com/downloads/mysql/

Sunday, February 7, 2010

JavaScript Overriding Functions

This is a way to use a closure to override the document.getElementById () function, so that we can add two additional parameters. In general, we should store the original function so that we could use our own function:

  1. // store the original document.createElement
  2.     var _createElement = document.createElement;
  3.      
  4.     //override document.createElement
  5.     document.createElement = function(tag)
  6.     {
  7.         var _elem = _createElement(tag);
  8.         eval("_elem." + name + " = fn");
  9.         return _elem;
  10.     }

Although technically there is nothing wrong with this approach, the creation of a global variable is difficult and perhaps even error prone. A better way is to pass the original document.createElement () for ours to be kept in memory. That allows us to delegate the creation of node to it. Instead of creating a function that could only be called once, you can use one in line to run immediately, and store the results in our document.createElement () replaced the function

  1. document.createElement = (function (fn)
  2.     {
  3.         return function (type, id, className)
  4.         {
  5.             var elem = fn.call(document, type);
  6.             if (id) elem.id = id;
  7.             if (className) elem.className = className;
  8.      
  9.             return elem;
  10.         };
  11.     })(document.createElement);

Understanding JavaScript Closures

JavaScript Closures are considered advanced material, reserved for the gurus of matter. Much has been written about them, but especially in academia, with little or no attempt made to make the subject understandable to the non-academic. That's really a shame, because the closures are the answer to the problem of how to bind variables to functions that are called at a later time. Today's article will explain what the closures are summarized some common dilemmas and ways that these closures can be used to overcome them.

Closure occurs when a function creates an environment that binds local variables to it so that to stay alive after the function has returned. The closure is a special type of object that combines two things: a function, and local variables that were in scope at the time that created the closure. In the following example, getNameFunction () is a closure that incorporates both the getName () and "Rob" string that is local to the scope of the external function. When running the code, it shows an alert box that says "Hi Rob!". A second alert shows that the variable is now displayName getName () function without the variable name. Finally, a third warning is educated through a setTimeout () and confirms that the name is still in the memory, long after the initial call to getNameFunction ():

  1. function getNameFunction()
  2.     {
  3.       var name = "Rob";
  4.      
  5.       return function getName()
  6.       {
  7.           return name;
  8.       }
  9.     }
  10.      
  11.     var displayName = function()
  12.     {
  13.         var getName = getNameFunction();
  14.         alert( "Hello " + getName() + "!" );
  15.      
  16.         return getName;
  17.     }();
  18.      
  19.     //holds the getName() function
  20.     alert(displayName);
  21.      
  22.     //call it again later...
  23.     setTimeout( 'alert( "Your name is " + displayName() )', 10 );

Wednesday, February 3, 2010

How to use Service Trace Viewer to check Service Details in WCF – VS 2008 | svctraceviewer.exe

Windows Communication Foundation (WCF) Service Trace Viewer Tool helps you analyze diagnostic traces that are generated by WCF. Service Trace Viewer provides a way to easily merge, view, and filter trace messages in the log so that you can diagnose, repair, and verify WCF service issues.

Here is a simple demo for naive users, that how to use Service trace viewer to analyze service data in WCF (Windows communication foundation)

 

Step 1: Go to Start menu – > Program files –> Visual studio 2008 –> Visual studio tools –> visual studio 2008 command prompt, Please note that this command prompt is different from ms dos command prompt.

How to use Service Trace Viewer to check Service Details in WCF – VS 2008

 

Step 2: command Prompt is open now, just type svctraceviewer to open Service trace viewer.

How to use Service Trace Viewer to check Service Details in WCF – VS 2008

 

Step 3: Service trace viewer is open now.

How to use Service Trace Viewer to check Service Details in WCF – VS 2008

 

Step 4: Browse to your service host directory and select service log file from there (app_messages.svclog) .

How to use Service Trace Viewer to check Service Details in WCF – VS 2008

 

Step 5:  All the Service logs are available there for view.

How to use Service Trace Viewer to check Service Details in WCF – VS 2008

 

Step 6:  There number of logs , Please select the log which you want to see in details.

How to use Service Trace Viewer to check Service Details in WCF – VS 2008

 

 

 

 

Read more information on service trace viewer and WCF:

http://msdn.microsoft.com/en-us/library/ms732023.aspx

Tuesday, February 2, 2010

Live Windows Communication Foundation (WCF) Training

Windows Communication Foundation is...

a part of the .NET Framework that provides a unified programming model for rapidly building service-oriented applications that communicate across the web and the enterprise.

Windows Communication Foundation (WCF) Training  Part 1

 

Windows Communication Foundation (WCF) Training  Part 2

 

Windows Communication Foundation (WCF) Training  Part 3

 

Windows Communication Foundation (WCF) Training  Part 4

 

More about WCF:

http://msdn.microsoft.com/en-us/netframework/aa663324.aspx

http://msdn.microsoft.com/en-us/netframework/first-steps-with-wcf.aspx

Online Videos:

http://channel9.msdn.com/shows/Endpoint/Endpoint-Screencasts-Creating-Your-First-WCF-Service/

How to Overcome Limitation of long in Oracle

I have faced a issue while writing a Oracle procedure, I had a long type Oracle variable to store the dynamic query, And the long variable was not able to store the dynamic query because of large size of query.

v_sql long := 'Some thing very large';

Because long variable have limitation to store only 4000 characters while concatenating, you can not store more than 4000 char.

We have an alternate method.

 

Use of Global Temporary Table.

Step 1: Break The queries into 4000 bunch and execute the separate queries and insert into a global temporary table.

Step 2: Select all data from global temporary table.

All done.

 

Please note that this situation happened when i was using number of union blocks to combine a query and this method will increase the procedure execution time.

There may be other alternatives but this can be one.

 

execute immediate 'INSERT INTO GT_TEMP(ID,NAME)
  SELECT ID, Name FROM ( ' || v_sql || ' )';

Improve Data Grid Performance – Use Paging – C#.NET – Reduce DataGrid Binding time

If you data is very huge and you have to display in data grid or infragistics grid. There is one very simple solution to just go for paging.

Data grid provide a simple pager tag to allow paging, Just put inside the

<<DisplayLayout>  tag and have the benefit of paging.

 

There is number of options you can define:

PageSize: Specify the number of results in page

PrevText: Specify Previous text

AllowCustomPaging: Specify the Custom paging – write your paging logic

PrevText: write the previous display test

StyleMode: Paging style mode – numeric , text etc

 

Code Snippet
  1. <Pager StyleMode="PrevNext" AllowPaging="True" PageSize PrevText AllowCustomPaging PrevText StyleMode  >
  2.                            <Style BorderWidth="1px" BorderStyle="Solid" BackColor="LightGray">
  3.                               <BorderDetails ColorTop="White" WidthLeft="1px" WidthTop="1px" ColorLeft="White">
  4.                               </BorderDetails>
  5.                            </Style>
  6.                       </Pager>

 

This is the simplest solution with large data displaying in one grid. However this method have a drawback, This method will call the database every time you click on the next or previous page. It means it will take same database time every time.

This method only reduces the binding time of grid and that is most important performance factor.

You can opt a Custom paging option to reduce database time.

I will come up with one more post demonstrating the Custom paging.

ASP.NET MVC Training Kit Free Download

The ASP.NET MVC Training Kit includes presentations, hands-on labs, demos, and event materials. This content is designed to help you learn how to utilize ASP.NET MVC.

 

Extract the kit and launch with internet explorer. This kit includes number of tutorials and demos and other material.

 

How to Download:

http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=1e0be0b2-910a-4676-9f3a-41e4d9c0fc08

Monday, February 1, 2010

Interview Puzzle Questions – GrapeCity Noida 2010

Find the Interview Puzzle Questions asked in GrapeCity Noida

Calculate values of the given alphabets the alphabet values can be

0 1 2 3 4 6 7 8 9

 

      A  B  C  D

  +  J  K  F  E

-------------------------------

    I  K  D  E

 

Answer :

 

 

      4  9  7  0

  +  1  2  3  8

-------------------------------

    6  2  0  8

Free Download Microsoft .NET Framework 3.0 Redistributable Package

The Microsoft® .NET Framework version 3.0 redistributable package installs the common language runtime and associated files required to run applications developed to target the .NET Framework 3.0.

 

Supported Operating Systems: Longhorn (Windows Code Name) ; Windows Server 2003 Service Pack 1; Windows Vista; Windows XP Service Pack 2

You can download free official version from given link, Please read the complete document before downloading and installing.

 

How to Download:

http://www.microsoft.com/downloads/details.aspx?familyid=10CC340B-F857-4A14-83F5-25634C3BF043&displaylang=en

Free Download Microsoft .NET Framework Version 2.0 Redistributable Package (x86)

The Microsoft .NET Framework version 2.0 (x86) redistributable package installs the .NET Framework runtime and associated files required to run applications developed to target the .NET Framework v2.0.

 

You can download the Original Free version of .NET Framework Version 2.0 Redistributable Package (x86) from the link given below, Detailed documentation is also available at given link.

 

How to Download:

http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&displaylang=en

Sponsored Ad

More Related Articles

Website Update

Followers