Microsoft providers two Workflow development tool for Windows SharePoint Services. First one is Visual Studio 2005 Extension Second one is Office SharePoint Designer 2007 Visual Studio 2005 Office SharePoint Designer 2007 Visual Studio 2005 Designer for Windows Workflow Foundation Office SharePoint Designer 2007 Can write workflows for Microsoft Windows SharePoint Services 3.0 Can write workflows for Microsoft Windows SharePoint Services 3.0 Code-behind file enables developer to write custom Microsoft ......
Microsoft unified communication bridges the gap between telephony and computing to deliver real-time, messaging, voice and conferencing to the desktop environment. Microsoft unified communications technologies tear down the walls that separate tele-communications and computing. And they do it with software that leverages your existing telecommunications infrastructure. Microsoft unified communications technologies are more than just VoIP. They break down all the traditional communications silos. ......
The Microsoft Office Interactive Developer Map is a Windows Presentation Foundation (WPF) application that helps developers visualize the different programs, servers, services, and tools that will help them build solutions. It allows them to drill down to each product and technology and learn about new features, objects, Web services, namespaces, and schemas required to extend Microsoft Office and build custom Office Business Applications (OBAs). The map is a living document that provides links to ......
Popfly is a Microsoft new web site that is totally frees 4 everyone. Popfly basically is a very easy way to build and share gadgets, web pages and applications. Popfly is consists of two parts:
1. Popfly Creator is a set of online visual tools for building Web pages and mashups.
2. Popfly Space is an online community of creators where you can host, share, rate, comment and even remix creations from other Popfly users.
Today is the first day of Pakistan Developer Conference 2007. PDC 2007 is five conferences in the row from 2003. Today I attended the awesome tracks of Naveed Bajwa he is Microsoft Most Valuable Professionals (MVPs) for Connected System Development, today in his first track he presents us the workflow implementation through Microsoft InfoPath 2007 and MOSS 2007. The good thing that I found is demos that he shows in his presentation [increase my practical KBs]. I found a very fascinating feature of ......
By the grace of ALLAH today I successfully passed 70-536 exams and I become MCP. I think that I want to mention here one important point [Microsoft .Net FRAMEWORK 2.0 Application Development Foundation] is very awesome book and you should read this book, I read it at least two time. Now I am going in Pakistan Developer Conference PDC2007 for catching some tech bytes from experts. {Which is my next paper i still not decided?} ......
There is a huge misunderstanding about Microsoft Surface, "Microsoft Copy the idea of IPhone". It’s totally wrong because Microsoft has started this project in the 2001 when Stevie Bathiche and Andy Wilson began brainstorming concepts for an interactive table. After the hardworking of two years they present their idea to Bill Gates and with in the month or so the first Surface prototype was born. The good news Microsoft Surface first unit is available in the winter this year ......
My following class is a complete C# class because its contain all possible declarations. using System; class MyClass { public const int MyConst = 45; public int MyField = 64; public static int MyStaticField = 65; public void MyMethod() { Console.WriteLine("MyClass.... call"); } public int MyProperty { get { return MyField; } set { MyField = value; } } public event EventHandler MyEvent; public int this[int index] { get { return 0; } set { Console.WriteLine("this[{0}] = {1}", index, value); } ......
Suppose you have an application that developed on the .Net Framework 1.1 and it’s deployed in the shared environment where .Net Framework 1.1 and 2.o both are installed and you need to run your application on .Net framework 1.1. Solution Microsoft gives a very simple solution of this problem. You only need to write the following setting in the app.config file. <configuration> <startup> <!--set the appropriate .net version--> <supportRuntime version="1.1.4322"/> </startup> ......