Singapore Management University hosts Microsoft's Overview of Windows Phone 7

August 27th 2010, Singapore Management University hosts Microsoft’s Overview of Windows Phone 7 session. Within this two-hours session, Microsoft introduces the usage of Visual Studio and Expression Blend to students with working-through demo. Meanwhile, a lot of existing Silverlight and XNA applications are introduced to illustrate new level of functionality Windows Phone 7 could achieve . Most of students saw Windows Phone 7 for the first time and they checked it out after the session. ...

SGSQL - Aug 2010 - Getting Started with SQL Azure

Getting Started with SQL Azure The excitement of cloud computing really changes people how to develop their application. Talking about application, it is almost impossible to proceed without the database. Microsoft® SQL Azure Database is a cloud-based relational database service built on SQL Server technologies. It provides a highly available, scalable, multi-tenant database service hosted by Microsoft in the cloud. SQL Azure Database helps to ease provisioning and deployment of multiple databases. Developers do not have to install, setup, patch or manage any software. High availability and fault tolerance is built-in and no physical administration is required. Customers can use existing knowledge in T-SQL development and a familiar relational data model for symmetry with existing on-premises databases. SQL Azure Database can help reduce costs by integrating with existing toolsets and providing symmetry with on-premises and cloud databases. Speaker profile: Name : Wely Blog : http://wely-lau.net Prior joining NCS as a Cloud Solutions Architect, he worked as Developer Evangelist for Microsoft Indonesia. In NCS, he drives and realizes the adoption of Cloud Computing, specifically on Windows Azure platform. Creating cloud assessment program, migrating existing application to the cloud, developing new cloud application, and conducting cloud training are all his daily tasks in NCS. His passion in driving Microsoft technologies on both online and offline community activity make him awarded Microsoft MVP in Visual C# category. Date: August 26th, 2010 Time: 7:00PM – 8:30 PM Registration starts at 6:30 PM Venue: NTUC Building 21nd Floor Microsoft Office One Marina Boulevard Please confirm your attendance by sending email to SGSQL@LIVE.COM

Windows Phone 7 : Style it using Expression Blend

Expression Blend 4 for Windows Phone provides the same streamlined development workflow for Windows Phone 7 that was previously only available for Silverlight and .NET applications. The ability to take your ideas all the way from concept to completion helps accelerate the delivery of innovative applications on Windows Phone. You can download Expression Blend 4 for Windows Phone Beta here. Now I will introduce some simple but useful tips for utilizing Expression Blend 4 for your Windows Phone Application.- Style your page element by using Expression Blend ...

MTUG - Aug 2010 - Exchange 2010 SP1 & New RPC Client Access Service

Agenda for the Night 7:00 PM to 7:15PM - Registration 7:20 PM to 8:30PM – What’s new in Exchange 2010 SP 1(beta) by Triston 8:30 PM to 8:45PM - Toilet/Stretching Break 8:45PM to 10PM – Exchange 2010 and the new RPC client access service by Achinta Abstract for What’s new in Exchange 2010 SP1(beta): This month we are going to peep into the public release of highly anticipated Exchange SP1(beta). We are going to talk about what are the new features that introduced in this Service Pack and what are advantages of them. Since this is a beta release, we are also going to talk about what are the known issues of this beta release. So join us in this month’s meet up and get to know more about this beta release. **Abstract for Exchange 2010 and the new RPC Client Access Service:**The session will cover in detail Exchange 2010 Client Access Server Arrays. A brief history will be provided on the client access architectures of Exchange 2007 ,2003 and 2000 and what has changed in the new Exchange 2010.What are the supported Outlook clients, Public folder connections and setting static RPC ports for MAPI connections will be conversed. There will be a brief discussion on how to provide true High availability for internal Outlook MAPI clients by combining CAS Array and Windows Network Load Balancing. Registration For registration, please email to tristonwan@gmail.com with the following: ...

Windows Phone 7 App – SG NRIC Checker

Recently, I have been very much involved with Windows Phone 7. From developing Windows Phone 7 app for codeXtremeApps competition to listening Chris Ismael presenting about Windows Phone 7 in MSP meeting to coming up with developers’ bootcamp on Windows Phone 7 in my institution. Let me take you through how do we create a simple phone app which is a SG NRIC checker. Pratibha had written a blogpost here on the tools needed to develop for Windows Phone 7 platform. So once you have those, you can get started with the following steps to create this app - Step 1: Open Visual studio 2010, click on New Project and select Silverlight for Windows Phone and Windows Phone Application. You may want to rename it to NRICCheckerWP7 Step 2: Notice that it will open up a default Mainpage.xaml. This is again, a template used for developing WP7 Applications. Now, go to “Toolbox”, drag and drop again, a textbox and a button into the phone. Step 3: Rename the button to btnCheck and insert Check as the text. Rename the textbox to txtNRIC by editing their properties via properties window after you click on the respective controls. Step 4: Again, double click on the Check button. This will lead us the part where we do our logic. Lets change the event handler. You should have this after you change it. [cc lang=‘csharp’ ] private void btnCheck_Click(object sender, RoutedEventArgs e) { if (txtNRIC.Text.Length == 9) { string inputIC = txtNRIC.Text; string nric = "" + inputIC[1] + inputIC[2] + inputIC[3] + inputIC[4] + inputIC[5] + inputIC[6] + inputIC[7]; string lastLetter = "" + inputIC[8]; checkNRIC(nric, lastLetter); } else { MessageBox.Show(“Invalid NRIC”); } } [/cc] Step 5: You will realise that you are missing the checkNRIC method which takes in a string nric and a string lastLetter. checkNRIC is where we put in the logics for checking if the NRIC is valid or invalid. Do a search online and you can find the algorithms for checkNRIC. These are the 2 methods needed. Copy and paste this in. [cc lang=‘csharp’ ] private void checkNRIC(string s, string lastLetter) { int sum, remainder; int[] weight = new int[7]; string outputletters = “JZIHGFEDCBA”; string nric; sum = 0; weight[0] = 2; for (int i = 1; i < 7; i++) { weight[i] = 8 - i; } if (IsInteger(s) == true) { nric = s; for (int i = 0; i < 7; i++) { sum += Int32.Parse(nric[i].ToString()) * weight[i]; } remainder = sum % 11; if (lastLetter.ToUpper() == outputletters[remainder].ToString().ToUpper()) { MessageBox.Show(“Valid IC”); } else { MessageBox.Show(“Invalid IC”); } } } public bool IsInteger(string theValue) { try { Convert.ToInt32(theValue); return true; } catch { return false; } } [/cc] Lastly, go ahead and click on Ctrl + F5!!! As you can see here, this is just a very simple app with very basic checking. You should be able to improvise here and be creative and do much stuff to it! J - Guo Hong Lim & Koh Kiat Siang, Temasek Polytechnic Student Partner Leads

Windows Phone 7 Developer's Session By Singapore Poly MSPs

After a month odd of preparation, we finally pulled it off – a Windows Phone 7 Developers’ session right here in our campus: Singapore Polytechnic. We had a huge list of sign ups, so we changed our plans and split the originally planned single session into two concurrent sessions. Out of the 60+ registrations, 30 turned up for the event. The participants were then split up such that each room engaged only 15 participants. ...

Windows Phone 7 – My First Phone App!

After much procrastination, I started to create my first Windows Phone 7 application this week. To be honest I did not think it would be an easy task given that it has been quite a while since I last opened visual studio to code something(much of my time has been spent admiring apps written by the amazing Imagine cup competitors;-)). Well, but I decided to take the plunge, and to my complete surprise I wrote my first app in flat 15 minutes. Hence this blog post, coz I believe my example should inspire several others to start writing apps for the new and upcoming Windows Phone 7 platform using cool technologies such as Silverlight and XNA. Let me walk you through the steps I took to get started – 1. The first thing I had to do was of course to download the much talked about tools for Windows Phone 7. It was a totally painless experience to download and run the setup on my Windows 7 PC. The set up installed the following components for me in less than 5 minutes. ...

SharepointPros - Aug 2010 - Infopath Forms + Workflows = Business Applications

InfoPath 2010 and SharePoint 2010 Productivity Riwut Libinuko, MVP SharePoint Server Microsoft InfoPath 2010 provides easier way than ever to design electronic forms. It includes Office Fluent UI which allows us to create powerful, interactive forms without having to write any code. This session will show how to use InfoPath 2010 and SharePoint 2010 to increase your productivity in solution delivery. Formatted mostly as on stage scenario – demos , we are expecting to expose all new functionalities. InfoPath Forms + SharePoint Workflows = Business Applications Hoo Kai Sheng, K2 As an application platform, SharePoint comes with a wide collection of building blocks that enables both business and technical users to create applications to suit varying business needs. We will be exploring forms and worklows in SharePoint - two commonly seen building blocks in a business application and review how can they be combined to establish high performance SharePoint solutions with the minimal effort possible. Refreshments will be provided, courtesy of K2 Singapore. Please RSVP to ssofian@mvps.org to confirm your attendance

Catch NDP2010 Live on xinmsn

We are excited to announce the lanuch of the National Day Parade 2010 live telecast site http://xinmsn.com/ndp2010/. For the past couple of weeks, our team has been working closely with the MediaCorp and NCS folks to build the site that provide live video feeds from all six NDP venues (Padang, Eunos, Woodlands, Choa Chu Kang, Bishan and Seng Kang). In addition to watching the live telecast, visitors can have an interactive panoramic experience (essentially [Photosynth](We have incorporated Photosynth imagery so that )) of each of the venue by visiting the “Photo 360” link. During the live event, visitors may share their thoughts and invite friends to join them through Facebok Connect. Another intersting bits of the site is the ShakeUp App - a mini game (running on both web and mobile phones) that let users contribute points to their geographical zones. To download the app to your mobile, simply SMS “NDP” to 75500. Please spread the news, encourage your friends and family to visit the site to watch the live telecast and to try out the cool features =) http://xinmsn.com/ndp2010/

August 5, 2010 · 1 min ·  Alex Goh

Free Training: Creating Applications for Windows Phone 7 using Silverlight

UPDATE: Training agenda and venue updated here - http://wp7sg.community.officelive.com/CreatingAppsforWP7UsingSilverlight.aspx Hot on the heels of our recently successful WP7 XNA training, we are providing you with another Windows Phone 7 2-day Hands on Lab on Aug 12 – 13. This time we’ll teach you how to create apps for WP7 using Silverlight. We are still polishing the agenda, but you can start to register here. (You know the drill, provide us with a good reason for us to secure you a slot ) ...