Posts

Showing posts with the label WindowsPhone7

Silverlight 4.0 Tutorial (12 of N): Collecting Attendees Feedback using Windows Phone 7

Image
You can find a list of the previous tutorial posts here Continuing our RegistrationBooth Application… It’s very important to collect the attendees feedback to help us improve the future sessions/events we might organize, we can go ahead and implement this functionality in the RegistrationBooth application. but in this post we will take a different approach, we will implement a Windows Phone 7 application that attendees can use on their phones to submit their feedback. Luckily for us Windows Phone 7 uses Silverlight as its development platform (along with XNA), the Silverlight version on Windows Phone is not the same one as the desktop version, think of this as a compact version that fits the phone capabilities. Before we start creating the phone application, first let’s think how we will bring the data to the phone, in the case of the Silverlight application we used WCF RIA services (DomainService) which provided rich client experience for the Silverlight application, Unfortunate...

Windows Phone 7 Developer Tools RTM Problem

Image
I couldn’t get Windows Phone 7 Tools RTM to work, whenever i try to deploy the application i receive the following error “Connection failed because of invalid command-line arguments.” this long thread which comes on the top of the search results has the solution buried among all the replies http://social.msdn.microsoft.com/Forums/en-US/windowsphone7series/thread/fde4c415-44c5-4837-b1cd-e09727a75b92/ the problem was that the Virtual Machine Manager (VMM) service used by the Windows Phone Emulator was not running. you can query the status of the VMM service from command window by typing the command “sc query vmm” , if the service is stopped, start it by the following command (run the command window as administrator) “sc start vmm”. Thanks god :), this version of the emulator is faster than the previous ones. Here is a screenshot of a default Windows Phone Panorama Application

RSUG Video Recording

Here are recordings of some of the sessions delivered at Riyadh SharePoint Users Group (RSUG) Meeting (April 2010) Keynote (Cloud Computing): 1. http://www.youtube.com/watch?v=X3e2MjEENrc 2. http://www.youtube.com/watch?v=2E2IPp9_whw 3. http://www.youtube.com/watch?v=MXhps6ws5pc 4. http://www.youtube.com/watch?v=Po75XEEb4Jk 5. http://www.youtube.com/watch?v=ZKk49Tx080I SharePoint Large Lists 1. http://www.youtube.com/watch?v=EIaPFMcgvMs 2. http://www.youtube.com/watch?v=QADN47DYauw 3. http://www.youtube.com/watch?v=ocdOP_JUGx0 4. http://www.youtube.com/watch?v=1kjBV0xl_IY 5. http://www.youtube.com/watch?v=VFsJqWbHn5o 6. http://www.youtube.com/watch?v=Xl9VW2Pr5sg Windows Phone 7 1. http://www.youtube.com/watch?v=SKuc0zLm6p0 2. http://www.youtube.com/watch?v=Tr3OrQpCopM 3. http://www.youtube.com/watch?v=e9OD5K_yyNE 4. http://www.youtube.com/watch?v=nCGZ2OOEE2U 5. http://www.youtube.com/watch?v=w8U7K05tigM JQuery with SharePoint 1. http://www.youtube.com/watch?v=wjNwp4ddfn4 2. http://www....

My First Windows Phone 7 Application

Image
This is a walkthrough on creating a sample RSS reader for Windows Phone 7 (WP7), make sure to check my previous post for some useful links on how to start developing for WP7 create a new Windows Phone List Application: this project template provides you with a sample application that contains two pages, the main page for displaying a list of items, when you click on one of the list items a nice transition takes you to the second page which displays the list items details we will use this sample list application as starting point for creating our RSS reader, we will have 3 pages, the first will have a list of RSS feeds, when we click on each feed we will go to the second page that contains a list of the items available in this feed, and when we click on a particular item we move to the third page which displays the feed item details let’s start by defining our data models, the Windows Phone List Application project template provides you with a sample view model classes in the ViewMode...