Tuesday, June 30, 2009

Skype 3.0 for Windows Mobile Shares Files, Sends Texts, Skypes


Skype's finally dropped a brand new version of their app for Windows Mobile.

This new version adds two features that users have long requested: file sharing and SMS texting. Skype is available in either a version to install from a PC or a downloadable CAB file for installation direct from the phone.

Want to be a Microsoft Office 2010 Beta Tester?

According to this page on Microsoft Connect, the company is looking for participants for “Microsoft’s Office 2010 Real Life Stories program.” These participants can be anyone – a home user, a student, a small business owner with 5 PCs or less, but you have to be living in the U.S. to apply.

More information is here.

Sunday, June 28, 2009

Run Applications in XP on Windows 7

Windows 7 Professional and Ultimate versions targeted towards businesses will now include a free copy of software Microsoft is calling Windows XP Mode. Providing the ultimate software compatibility Windows XP Mode is based on Virtual PC and allows you to run applications in a Windows XP virtual machine but they appear on your desktop as a normal desktop application. When a application is running in Windows XP Mode, I comes with the XP window look!

Windows XP Mode applications also appear separately in the Start Menu as shown below:



Windows Team Blog

Saturday, June 27, 2009

Windows 7 Free Upgrade

Starting June 26th when users buy a new computer from a major manufacturer with Windows Vista Premium, Business or Ultimate computer they will get a free upgrade to the corresponding version of Windows 7. Users will receive the free Windows 7 upgrade shortly after GA on October 22nd. Available world wide, users must request the free upgrade on a special Web page setup by the computer manufacturer.

On the Windows 7 Upgrade Option Web site Microsoft has provided links to all major computer manufacturers participating in the program.


Source: WinGeek

SharePoint 2007 Service Pack 2 Alert

The public update for the Service Pack 2 expiration date issue is now available for download.

The update can be applied before or after Service Pack 2 installation. If the update is applied prior to installing Service Pack 2 it will prevent the expiration date from being improperly activated during installation of Service Pack 2, if it is applied after Service Pack 2 it will remove the expiration date incorrectly set during installation of Service Pack 2.

Installation instructions : http://support.microsoft.com/kb/971620

x86 download link : http://download.microsoft.com/download/2/F/5/2F51AB71-1325-49D2-9CB9-18DEC4780E99/office2007-kb971620-fullfile-x86-glb.exe

And for x64: http://download.microsoft.com/download/5/B/B/5BBD34A9-C528-42B0-8A5F-9A8997B25C32/office2007-kb971620-fullfile-x64-glb.exe

Source : MSDN Blogs

Wednesday, June 24, 2009

Microsoft tries to make Windows 7 easier to open

Microsoft is trying to make Windows 7 easier than Windows Vista on many levels--right down to the box it comes in.


Microsoft is trying to make Windows 7 easier than Windows Vista on many levels--right down to the box it comes in.

One of the many criticisms of Windows Vista was the incredibly complex packaging that Microsoft used for both Vista and Office 2007. In an effort to prevent theft and piracy, Microsoft created boxes that required their own set of instructions to open.

In a blog posting on Wednesday, Microsoft said it will use a package that is shaped similarly to the Vista one. However, the box will open more like a standard DVD case.

The case, which will be recyclable, will contain just the disc and a getting started guide. Overall, Microsoft said it reduced the packaging weight by 37 percent.

Microsoft plans to start selling Windows 7 on October 22, although pre-sales of the product as well as a free upgrade program for new PC buyers are expected to both kick off on Friday.

Source: CNET.com

Microsoft's free security beta fills up

A day after making available a free beta of its Microsoft Security Essentials software, Microsoft has stopped offering new downloads, saying it has reached the number of participants it was looking for, at least here in the U.S. The software maker had said it was only looking to initially have about 75,000 downloads of the product, formerly code-named Morro.

"Thank you for your interest in joining the Microsoft Security Essentials Beta. We are not accepting additional participants at this time," Microsoft said in a posting on its Web site. "Please check back at later a date for possible additional availability."

Microsoft Security Essentials is the free product that Microsoft promised it would create last year, at the same time the software maker said it was discontinuing its paid Windows Live OneCare product.

The program hits the antivirus basics, including built-in and customizable scan options, a scheduler, automatic definition file updates, a real-time defense shield, and rootkit protection. It's also similar to other free products on the market, such as those from AVG and Antivir.

by Ina Fried, CNET

Friday, June 19, 2009

Input Validation in ASP.NET MVC

Here, you can find how to arrange a data entry page using the  ASP.NET MVC Framework.

The ASP.NET MVC Framework is a Model-view-controller framework which Microsoft added to ASP.NET. It allows software developers to build a Web application as a composition of three roles: Model, View and Controller. A Model represents the state of a particular aspect of the application. Frequently, a model maps to a database table with the entries in the table representing the state of the table. A Controller handles interactions and updates the model to reflect a change in state of the application. A View extracts necessary information from a model and renders a user interface to display that.

The Official Microsoft ASP.NET MVC Site

Wednesday, June 17, 2009

Top 6 Firefox Plugins for Web Development

Top 6 Firefox Plugins for Web Development

By: Simon Hamp

  1. FireBug with FirePHP FTW!
  2. FireBug (getfirebug.com)
  3. FirePHP (firephp.org) req. FireBug
  4. ColorZilla (colorzilla.com/firefox/)
  5. HTML Validator (users.skynet.be/mgueury/mozilla)
  6. YSlow (developer.yahoo.com/yslow/) req. FireBug
  7. Web Developer (chrispederick.com/work/web-developer)
Find more extentions here!

API of Microsoft's new Bing search

The Bing Application Programming Interface (API), Version 2, enables developers to programmatically submit queries to and retrieve results from the Bing Engine. This topic introduces the online documentation and additional resources that support use of the Bing API.

Click here for more information.

Tuesday, June 16, 2009

How set parameter in Crystal Report and print to printer in ASP.NET

In the following example you can see how to set the report parameters programmatically :

ASP.NET, C# :

// Creating a new report document :
ReportDocument rptdoc = new ReportDocument();
rptdoc.Load(Server.MapPath("report name and path"));


//Setting the report parameter :
ParameterField field = rptdoc.ParameterFields[0];
ParameterDiscreteValue paraval = new ParameterDiscreteValue();
paraval.Value = "parameter value";
field.CurrentValues.Add(paraval);


//Setting the report source :
CrystalReportViewer1.ReportSource = rptdoc;

don't forget to use these libraries:

using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;



In a Web application the print button on the CrystalReportViewer control toolbar opens a secondary Web page that emulates a print dialog box. A pdf is generated on the Web server, and then downloaded and displayed on the Web page. If you want to print the report directly to your local printer, you must set CrystalReportViewer properties and also add some line of xml codes to your web.config file :

//On PageLoad method of your web page :
CrystalReportViewer.PrintMode = PrintMode.ActiveX;

add the following xml to your Web Site's web.config file :

<configSections>
<sectionGroup name="businessObjects">
<sectionGroup name="crystalReports">
<section name="printControl" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null" />
<sectionGroup>
<configSections>

<businessObjects>
<crystalReports>
<printControl>
<add key="url" value="http://myserver/PrintControl.cab" />
<printControl>
<crystalReports>
<businessObjects>

Note:

Only Internet Explorer supports ActiveX controls. Printing from a non-Internet Explorer client (FireFox, Safari, Mozilla, and others) reverts to the PDF export dialog.

PrintControl.cab can be downloaded from here.

more info :

Demos: A six-part series on getting the most out of SharePoint Designer 2007

This six-part training demo series provides information on how power users can get the most from Office SharePoint Designer 2007 :

  • Powerful user interface and design tools
  • Customize SharePoint sites
  • Create and modify layout pages
  • Create and modify rules-based workflow applications
  • Build composite no-code SharePoint applications
  • Visual Studio integration

check out here.

Sunday, June 7, 2009

Microsoft Automated Troubleshooting Services

With one click, Microsoft Automated Troubleshooting Services will detect problems on your machine and automatically fix any common problems that are found.
check out here.

Saturday, June 6, 2009

Several Reasons to buy Windows 7



Microsoft enumerated several reasons to buy Windows 7 :
  • Faster, more responsive performance : Nobody likes to wait, so we designed the operating system to start up, shut down, resume from standby, and respond faster.

  • Streaming media in your home: Windows 7 makes it easy to use your PC to stream music, videos, or photos to your home audio-video system and other networked media devices.

  • Improved taskbar and full-screen previews: Pin any program to the taskbar so it’s always just a click away. Rearrange the icons on the taskbar just by clicking and dragging.

  • Desktop enhancements: Windows 7 simplifies how you work with the windows on your desktop. For example, Snaps lets you easily compare two open windows side-by-side.

  • Reduce interruptions: When Windows 7 needs your attention, you'll see an Action Center icon and can find out more by clicking it. Or wait and read it later when you have time.

  • HomeGroup: This great new feature is set up automatically when you add the first PC running Windows 7 to your home network. Store digital photos on a computer in one room and access them in another.

  • Jump Lists: Access recently used files with just two clicks. Right-click the relevant program icon (such as Word) on your taskbar and Jump List will show your most recent, frequently used, and pinned Word documents.

  • Windows Search: Windows 7 makes search results more relevant and easier to understand. It also uses libraries to show all content of a particular type, like photos, in one spot.

Check out Microsoft Store site.


Introducing the Microsoft Touch Pack for Windows 7

The Microsoft Touch Pack for Windows 7 is a set of six multi-touch optimized applications and games that are designed to truly showcase the capabilities of Windows Touch in Windows 7. It consists of 3 casual games, and 3 Microsoft Surface applications that have been created for Windows 7. They are:

  • Microsoft Surface Globe
  • Microsoft Surface Collage
  • Microsoft Surface Lagoon
  • Microsoft Blackboard
  • Microsoft Rebound
  • Microsoft Garden Pond

more info :
Introducing the Microsoft Touch Pack for Windows 7

SP2 for Microsoft Windows 2008 and Vista

A few days ago, SP2 for Microsoft Windows 2008 and Vista has beed released :

Download: Vista SP2/Server 2008 SP2 32 bit
Download: Vista SP2/Server 2008 SP2 64 bit

Please see the Windows Server SP2/Windows Vista SP2 page on TechNet/MSDN for additional details and documentation :

Windows Vista SP2 TechNet
Windows Server 2008 SP2 TechNet

Friday, June 5, 2009

Connecting to console session

For a network administrator, sometimes it may hard to access the server physically, so if there is a need to connect to console session, it can be done by remote desktop features.

There is no UI option in Remote Desktop to do this, but there was a command line switch enabled this capability.

Just type the following command in Start -> Run :

mstsc /admin

Also you can set the server address with /v switch like this :

mstsc /v:192.168.1.1 /admin

You can find more switches through mstsc/?

enjoy it!



Windows 7 vs. Mac OS x


Here you can find feature-by-feature comparison of new Windows OS, Windows 7 and Max OS x, aka "Leopard".

It will help you to choose a better OS!

What is Bing!

Bing! yes, it's the name of Microsoft's new search engine which is the replacement for Microsoft' Live Search Engine.

It's came online just a few days ago and also provides following search services :


There is more information on Wikipedia.

I tried it, I think it's more interactive! I like its Image search engine too!


try it : http://www.bing.com

New version of the AJAX Control Toolkit

A new version of the AJAX Control Toolkit is now available for download from the CodePlex website :

http://ajaxcontroltoolkit.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27326

It contains three new controls:

HTMLEditor :
Allows you to easily create and edit HTML content. You can edit in WYSIWYG mode or in HTML source mode. The control exists as a server-side extender but can also be instantiated purely on the client-side with a single line of code.

ComboBox :
Provides a DropDownList of items, combined with TextBox. Different modes determine the interplay between the text entry and the list of items. this control behaves very much like a Windows combo.

ColorPicker :
Can be attached to any ASP.NET TextBox control to provide client-side color-picking functionality from a popup.

This new release also includes fixes for over 20 of the most voted bugs in existing AJAX Control Toolkit controls and now features minimized release versions of the script files.

more information :
http://ajaxcontroltoolkit.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27326