Categories
Microsoft Windows 7 Windows 8 / 8.1 Windows Server 2008 Windows Server 2012 Windows Vista Windows XP

Microsoft Expression Studio 4 Ultimate requires Product Key

Microsoft Expression Studio 4 Ultimate requires Product Key

Microsoft Expression Studio 4 Ultimate includes:

  • Expression Blend 4 + SketchFlow
  • Expression Studio 4 Web Professional
  • Expression Design 4
  • Expression Encoder 4 Pro

You downloaded the installation ISO from Microsoft website and you have a company license for this software.
You read “no product key needed” in the Microsoft website but a few of days after installation when you’ll open a tool of this software appears a window with a message that require to insert a Product Key

Solution:
Use the following key:

6WDDQ-K7D4F-GQGF4-2VYBJ-8K6MB

Did my solution solve your problem? Leave a reply.

Categories
7.0 7.5 7.8 8.0 HOW TO Microsoft SDK 7.1 SDK 7.8 VB.NET Visual Studio Windows Phone

HOW TO create a bulleted list in Microsoft Windows Phone App

To create a bulleted list in Microsoft Windows Phone App you have the following options:

  1. Write text inside your xaml file using and elements
    [sourcecode lang=”xml”]
    <TextBlock TextWrapping="Wrap">
    New features:<LineBreak/>
    <Run>• No Ads</Run><LineBreak/>
    <Run>• Message Encryption with Password for a double protection</Run><LineBreak/>
    <Run>• Advanced settings</Run><LineBreak/>
    <Run>• and more…</Run><LineBreak/>
    </TextBlock>
    [/sourcecode]
  2. Write text inside you Resouces file (use SHIFT+RETURN to create new line)
    [sourcecode lang=”text”]
    New features:
    • No Ads
    • Message Encryption with Password for a double protection
    • Advanced settings
    • and more…
    [/sourcecode]
  3. Create a bulleted or numbered list in Blend

Did my HOW TO help you? Leave a reply.