Inside and Out...

An attempt to understand technology better...

  Home  |   Contact  |   Syndication    |   Login
  160 Posts | 0 Stories | 12 Comments | 181 Trackbacks

News


WinToolZone - Spelunking Microsoft Technologies
I work as a developer on the Common Language Runtime (CLR) team, specifically in the areas of exception handling and CLR hosting.
Disclaimer

The information in this weblog is provided "AS IS" with no warranties, and confers no rights. This weblog does not represent the thoughts, intentions, plans or strategies of my employer. It is solely my opinion. Inappropriate comments will be deleted at the authors discretion. All code samples are provided "AS IS" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

Twitter





Tag Cloud


Archives

Post Categories

Image Galleries

Links

April 2005 Entries

This is how the managed Date Picker, CalendarSP, looks like (click here for download details):
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

The .NET Compact Framework lacks a Date Picker control for the SmartPhone development platform. I have written CalendarSP that overcomes this limitation of the .NET CF and is targetted for the SmartPhone 2003 platform.Its free to use and comes with complete documentation.Download it from http://www.wintoolzone.com/...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

I have added support in CERapi to determine the type of device (PocketPC, SmartPhone, etc) connected to via ActiveSync. The CESystemInformation class has a DeviceType property that will return a CEDeviceType enumeration value which indicates the type of device. The snippet below exemplifies this: CESystemInformation si = rapi.SystemInformation; // Device TypeConsole.WriteLine("You are connected with a {0}",si.DeviceType.ToString... And below is the output for my Typhoon: Download the updated CERapi...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Snap of the Bangalore team is here.
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

I love the city of Hyderabad and the weekend of 10th April is the DevCon of the Microsoft User Group, Hyderabad. I would be speaking there - do join the community; it will be fun. Registrations are free and can be done at http://www.mugh.net/devcon.htm
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Read it at http://blogs.msdn.com/relea
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

There's no programmatic way to determine if the Windows CE device connected via ActiveSync to the desktop is a PocketPC or a SmartPhone. If you wish to determine the same, open HKEY_CURRENT_USER\Software\... CE Services registry key and lookup the value of DeviceType value. Its a REG_SZ and contains the type of device you are connected with
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Whenever you publish a new version of an assembly that has some breaking changes relative to its predecessor version, its an exercise in itself to publish the breaking changes. BradA points to LibCheck, an application used internally for doing the same. Check it here
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

CERapi allows you to work with the file system of the Windows CE device and the snippet below shows how easy it is to do the same: // Working with device foldersCEFolder rootFolder = new CEFolder(\\storage\\My Documents);Console.WriteLin... {0}",rootFolder.Path);Conso... Files: {0}",rootFolder.TotalFileCo... SubFolders: {0}",rootFolder.TotalSubFol... // Copy File from desktopConsole.WriteLine("Move C:\\CASDEMO.TXT to device: {0}",rootFolder.MoveFileFro...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

CERapi, the managed implementation for Windows CE Remote API (RAPI) has been updated to work with the file system of the Windows CE device. The CEFile and CEFolder classes have been introduced that make navigating the device easy. You can: Get list of files in specified folder Create/Delete folders Create/Delete/Move files Get folder/file attributes File's folder and its name - property Create shortcut to files Find files as per custom search filter Set file attributes Set filetime Launch files...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati