Skip to main content
Email Password   helpLost your password?

Sample Image - weatherinfo.gif

Introduction

Weather Info came about because another weather program I had been using time bombed and the developer had disappeared. I sought out to learn about using web services on the .NET Compact Framework and ended up coming up with what I think is a very useful application for my first.

Implementation

This project contains a series of classes to implement the web service calls and the caching of data for offline use. WeatherInfoMain.cs contains all of the main code to implement the user interface. WeatherItem.cs contains the information for storing and serializing a web service response. WeatherCache.cs provides the mechanism for caching and retrieving WeatherItems, and Registry.cs contains the code for manipulating the Pocket PC registry.

Web Service Setup

Weather Info uses the weather data provided by EJSE. (Sorry to the non-US users, but this service only supports the United States.) I was actually pleasantly surprised at how simple it was to set up the web service request and to retrieve data from the service. One note: proxy configurations on the Pocket PC are problematic at best, so the application does not support the use of a proxy.

Pocket PC Registry

The application uses PInvoke to call the native Pocket PC registry handlers. I used the registry to store the ZIP code that the web service uses to retrieve the weather info.

Scrolling Forms

The other big challenge I faced in the application was developing a scrolling mechanism for when the user displayed the soft input panel and for the extended forecast. When the soft input panel is displayed, the viewable area shrinks by whatever the size of the selected input method is. To handle this, I developed all of the data as a series of panels and then dropped the panels into the main tab control. The scroll bars are displayed as necessary to allow the user to view the entire contents of the panel.

/// <summary>

/// Handles setting scroll bars and viewable areas

/// when the soft input panel is enabled or disabled

/// </summary>

/// <param name="sender"></param>

/// <param name="e"></param>

private void inputPanel1_EnabledChanged(object sender, System.EventArgs e)
{
    if(this.inputPanel1.Enabled)
    {
        //subtract SIP height from tab control height

        this.tabControl1.Height= 
          this.ClientRectangle.Height - this.inputPanel1.Bounds.Height;
        this.vScrollBarCurrent.Visible=true;
        this.vScrollBarAbout.Visible=true;
        this.panelAbout.Left=-(this.vScrollBarAbout.Width/2);
    }
    else
    {
        this.tabControl1.Height=this.ClientRectangle.Height;
        this.panelCurrent.Top=0;
        this.vScrollBarCurrent.Value=0;
        this.vScrollBarCurrent.Visible=false;
        this.panelAbout.Top=0;
        this.panelAbout.Left=0;
        this.vScrollBarAbout.Value=0;
        this.vScrollBarAbout.Visible=false;
    }
    int iCurrent=this.panelCurrent.Height-this.tabCurrent.Height;
    this.vScrollBarCurrent.Maximum=iCurrent+((iCurrent/10)/2);
    this.vScrollBarCurrent.LargeChange=iCurrent/10;
    this.vScrollBarCurrent.Height=this.tabCurrent.Height;
    int iExtended=this.panelExtended.Height-this.tabExtended.Height;
    this.vScrollBarExtended.Maximum=iExtended+((iExtended/10)/2);
    this.vScrollBarExtended.LargeChange=iExtended/10;
    this.vScrollBarExtended.Height=this.tabExtended.Height;
    int iAbout=this.panelAbout.Height-this.tabAbout.Height;
    this.vScrollBarAbout.Maximum=iAbout+((iAbout/10)/2);
    this.vScrollBarAbout.LargeChange=iAbout/10;
    this.vScrollBarAbout.Height=this.tabAbout.Height;
}

Required Libraries

Serialization support requires Compact Formatter.

Conclusion

I hope you enjoy using Weather Info. Updated versions can be found here.

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralHow to take zip code??? Pin
Member 6087403
4:39 30 Apr '09  
GeneralHow to compile weather info. Pin
Member 6087403
4:32 27 Apr '09  
AnswerRe: How to compile weather info. Pin
CUShane
5:45 27 Apr '09  
GeneralWeb Service Pin
scott_d
10:33 17 Jun '05  
GeneralRe: Web Service Pin
CUShane
14:38 17 Jun '05  
GeneralRe: Web Service Pin
samsacheti
1:57 6 Mar '07  
GeneralRe: Web Service Pin
CUShane
3:28 6 Mar '07  
GeneralRe: Web Service Pin
samsacheti
7:01 6 Mar '07  
GeneralRe: Web Service Pin
CUShane
8:04 6 Mar '07  
GeneralBuild Error! Pin
jcynion
21:31 24 Jun '04  
GeneralRe: Build Error! Pin
CUShane
4:13 28 Jun '04  


Last Updated 27 May 2004 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009