How to add Win CE 6.0 office viewer, PDF viewer support ?
Turns out, it is simpler than I thought - it is a third party app - unlike Win CE 5.0 which has it as standard catalog component to choose from.
I was scouring NET to find out Win CE 6.0 viewers support which is boasted about in Win CE Features Page
but never has any direct links for how-to add those features.
Visit here to download & install it in your Win CE 6.0 development PC.
Once installed, the catalog components for the File Viewers will be under “\Third Party\File Viewers”
Win CE 6.0 Office viewer/PDF viewer components
So check the boxes and "sysgen".
You are good to go.
Try it out folks !! - Simple enough !!
NOTE: There are limitations (viewer)
Check the file name "xxxxReleaseNote.html" you can typically find it in path C:\WINCE600\PUBLIC\Viewers once you finished installation
Windows Embedded CE 6.0 R3 has been released yesterday, you can download it from here: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=bc247d88-ddb6-4d4a-a595-8eee3556fe46
One of the most exciting new features of R3 is Silverlight For Embedded.
With this technology the UI of an application can be described using XAML, an XML-based language, and can be designed using visual tools like Expression Blend.
This will allow UI designers to work on embedded devices using the same tools they use on the desktop and it will let embedded developers concentrate on the core application features and not on the design of the UI.
I hope that this will lead to visually pleasing but also more user friendly interfaces on any kind of embedded device. Using visual tools for UI design should also improve development time and allow minor fixes to the UI without code modifications. This will improve device development times and reduce maintenance costs.
This simple tutorial will show how you can design a very basic UI in Expression Blend 2, load it inside an application and interact with it.
The first step you need to perform is include the components needed to support Silverlight For Embedded inside your OS Image and rebuild it. Jochen Dieckfoß provided a good description of that process on his blog here: http://discovertheexperience.blogspot.com/2009/09/windows-embedded-ce-60-r3-using.html
Now that you have an OS image supporting Silverlight for Embedded you can start to design your UI.
Start Expression Blend and create a new Silverlight application.
You'll have to use Expression Blend 2 SP1 (thanks Shai for the useful advice!) because this is the release that support Silverlight 2, the version that is currently supported on embedded devices.
This will create a Visual Studio solution (that we don't need for this tutorial).
As you can see the wizard allows you to choose a language between C# and Visual Basic. Silverlight for Embedded supports only C++ programming and it's currently not integrated with Expression Blend, so you'll not use the source code generated by this tool.
Remember to disable Visual Studio integration inside Expression Blend or it will generate C# or VB.NET code for event handlers etc.
After you created a new project, Expression Blend will present you with an empty XAML document (named page.xaml by default).
We can draw a simple button inside it picking it from the rich collection of controls provided by Silverlight.
Using the properties window we can assign a name to our new button.
The properties toolbox allows you to customize many aspects of your button: it's colors, it's rotation (yes you can have a vertical button or a button turned at 45 degrees!), it's opacity etc.
We will experiment with all these features in the next tutorials, for now we will keep the button as is and save our XAML.
If you open the XAML file using a text editor or view it using the XAML view inside Expression Blend you'll see that it's quite simple:
We have a top level container (UserControl) that uses a Grid layout (objects are organized in rows and columns) and contains our button.
The button has attributes for placement inside its own grid cell (the only one we have), alignment, content (the text "Button") and its name ("MyButton").
Now we can start Platform Builder and add a new subproject to our OS Design.
You may develop your Silverlight for Embedded application also using Visual Studio 2005 or 2008 Smart Device application if you generate an SDK from your R3 OS design and install it on your development PC, but for this tutorial we will keep things simple...
Move to the solution tab, right click on the subprojects node and select "add new...".
Create a Win32 application.
And choose the simple Win32 application template.
This will create an application containing only WinMain, it's enough to start experimenting with our first Silverlight for Embedded UI.
The first thing we should do is add the Silverlight for Embedded includes to our source code:
#include "pwinuser.h"
#include "xamlruntime.h"
#include "xrdelegate.h"
#include "xrptr.h"
We will add the XAML that we generate with expression blend to our application resources. In this way we will not need to distibute the XAML file with it. On the other side changes to the XAML will require a rebuild of the application, you may choose the best method to integrate XAML and C++ source code in your application.
To include resources inside your executable file you need to add a resource script (rc file) to your subproject.
Right click on the subproject in solution view, select "add\new item" and then select resource file from the dialog box and assign a name to it (usually you have only one resource file per application so using the application name for that file sounds like a good idea).
Now that you have your resource file you can add the XAML data to it by creating a new resource.
Go to the "resource view" tab, right click on your resource file and select "add resource..."
Now you can import your XAML file data inside your executable. It will be stored inside it (at the end of the file) as binary data.
Type "XAML" as resource type.
For the tutorial you can leave the default ID (IDR_XAML1) for that resource, but it's a good idea to give meaningful names to your XAML components in a real project.
To use our resource IDs we need to include "resource.h" inside our .cpp file:
#include "resource.h"
Then, inside our application main function (WinMain) we can start to interact with the XAML runtime.
First of all we need to initialize it:
if (!XamlRuntimeInitialize())
return -1;
If XamlRuntimeInitialize succeeded, the Silverlight for Embedded runtime is loaded inside your application and it's ready to handle the UI.
Each Silverlight for Embedded application has a singleton "Application" object that allows us to access global application properties and features.
To access it we should use the GetXRApplicationInstance API.
HRESULT retcode;
IXRApplicationPtr app;
if (FAILED(retcode=GetXRApplicationInstance(&app)))
return -1;
Someone will notice that we are using HRESULTs and classes that use the "I" prefix and the "Ptr" suffix and understand that this new technlogy is based on COM (Component Object Model) that may sound like an ancient tool in those .NET and managed code days but it's still the foundation of many technlogies on both CE and desktop Windows releases. All Silverlight for Embedded objects are implemented as COM objects that export specific interfaces (COM interfaces have names beginning with "I"). Since using interfaces directly requires handling of their reference count and this may lead to memory leaks or premature object deletions, COM programmers prefer to use "smart pointers" that are wrappers around the interfaces and manage reference counting internally, destroying the COM object when the smart pointer object goes out of scope inside your C++ application (function return if it's allocated on the stack, object destruction if it's declared as a class member etc.). Smart point classes add the "Ptr" suffix to the interface name.
After this 30 seconds introduction to COM, we can return to our application.
The first thing we have to do with our application object is tell it where it can find its resources (XAML, images etc.).
We included them inside the executable using the resource file and so we can pass our HINSTANCE handle to it:
if (FAILED(retcode=app->AddResourceModule(hInstance)))
return -1;
Now that we have initialized our application object we can create our main window and let Silverlight for Embedded manage its contents:
if (FAILED(retcode=app->CreateHostFromXaml(&xamlsrc, &wp, &vhost)))
return -1;
The VisualHost object "hosts" the runtime and allows us to access its contents and load our XAML from resources (using the XRXamlSource object).
Now our XA
The object inside our Silverlight for Embedded application are organized in a objects tree. To access the object inside it we need a pointer to its root:
IXRFrameworkElementPtr root;
if (FAILED(retcode=vhost->GetRootElement(&root)))
return -1;
From the root object we can access our button using the name we assigned to it inside Expression Blend:
IXRButtonBasePtr btn;
if (FAILED(retcode=root->FindName(TEXT("MyButton"), &btn)))
return -1;
To receive a notification when the user clicks our button we need to provide a delegate. A delegate is a pointer to a member of an istance of a C++ class that should have a specific prototype.
We can declare a simple C++ class inside our .cpp source and implement our button click event delegate inside it:
MessageBox(NULL,TEXT("Click!"),TEXT("Silverlight for Embedded test"),MB_OK);
return S_OK;
}
};
Our event handler will simply display a message box when the button is clicked.
As you can see the event handler takes two parameters. A pointer to the object that generates the event (our button) and a pointer to a structure that contains the event parameters.
To connect our event handler to the button we have to create a delegate object:
BtnEventHandler handler;
IXRDelegate* clickdelegate;
if (FAILED(retcode=CreateDelegate(&handler,&BtnEventHandler::OnClick,&clickdelegate)))
return -1;
if (FAILED(retcode=btn->AddClickEventHandler(clickdelegate)))
return -1;
Our event handler has been connected to the button, now we can show our UI and wait that the user presses our wonderful button:
UINT exitcode;
if (FAILED(retcode=vhost->StartDialog(&exitcode)))
return -1;
Our clickdelegate object is not a smart pointer, so we will have to release it explicitly:
clickdelegate->Release();
Before we can build our subproject we need to add the include directories and the libraries needed to support Silverlight for Embedded inside our application.
Open the subproject sources script by right clicking on the subproject and choosing "open".
Add includes:
Installing Windows Embedded CE 6.0 has a number of steps which are listed below (with appropriate links). Perhaps the list may be useful as a “check list” for installation if you are ever in the position of needing to install from ground up.
Installing Windows Embedded CE 6.0 – Steps:
* Install Visual Studio 2005 * Install Visual Studio 2005 SP1 * Install Visual Studio 2005 SP1 for Vista * Install Windows Embedded CE 6.0 (Eval link) * Install Windows Embedded CE 6.0 SP1 * Install Windows Embedded CE 6.0 R2 * Install Windows Embedded CE 6.0 cumulative product update package (through 12/31/2008) * Install Windows Embedded CE 6.0 monthly update package (Jan 2009) * Install Windows Embedded CE 6.0 monthly update package (Feb 2009) * Install Windows Embedded CE 6.0 monthly update package (Mar 2009) * Install Windows Embedded CE 6.0 monthly update package (Apr 2009) * <-Latest QFE->
A new release of Windows Embedded CE 6.0 R3 has been announced yesterday at ESC Boston during Kevin Dallas’ keynote (Kevin is the GM for the Windows Embedded group at Microsoft… my big boss :-))
This new intermediate release brings some really great features that OEMs were really looking forward to see available in CE 6.
Silverlight for Windows Embedded The power of Silverlight brought to Windows Embedded CE to create rich applications and user interfaces. This technology is in 2 parts.
* The first one is a XAML rendering engine that will leverage Hardware Graphics acceleration to provide a great user experience on devivces. Using Expression Blend, designers will be able to built XAML based user interfaces for Embedded applications. the XAML supported is a subset of the Silverlight 2 XAML. * The second part of the technology is a native developing API. While in Silverlight you have a managed model, in Windows Embedded CE you will use C++ to implement the business intelligence of the application.
For more details on Silverlight for Windows Embedded, check out these videos: Introduction to Silverlight for Windows Embedded Working with XAML in Expression Blend Create a user control in Silverlight for Windows Embedded
Internet Explorer Embedded Internet Explorer with panning and zooming capabilities and a customizable interface to optimize the browsing experience on devices. To have an idea of what you can expect from this new browser, check out the new Zune HD browser which is based on the same IE (careful, the Zune HD is running on Windows CE 6.0 R2, NOT on R3, only the browser is common to the CE 6.0 R3 one) in this review of the device.
Flash Lite Browser plug in to render rich media websites. This is the version 3.1 of Flash Lite that is now included in the Windows CE tools, meaning there is no need to acquire an additional license to embed it into your device
Touch and Gesture Plug-in engine to enable natural input capabilities and gesture animations
Connection Manager Infrastructure technology to manage multiple network interfaces on the device
Microsoft Office and PDF Viewers Applications to render Microsoft Office Word, PowerPoint, Excel and Adobe PDF content on the device
QQ Messenger Device side client to connect to popular Instant Messaging service
This release should be available for download next week! To learn more about Windows Embedded CE 6.0 R3, visit the Web Site.
Microsoft, if it pays good attention to creating this gizmo, it would certainly create a new segment the market has never heard of ever before. It may get along well with the folks who thoroughly despise the exploits of tablet PC.