tags:

views:

422

answers:

1

Hi everyone...

I created Windows Mobile Application and I loaded web service that contain one method (GetNumber). When I call this method from my emulator I got a following exception

An error message cannot be displayed because an optional resource assembly containing it cannot be found.

Can anyone help me. This is my code from WM Application, it is very siple.

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using MobileClientApp;

namespace MobileClientApp { public partial class Form1 : Form {

    public Form1()
    {
        InitializeComponent();

    }

    private void button1_Click(object sender, EventArgs e)
    {
        MobileClientApp.localhost.WebService m = new MobileClientApp.localhost.WebService();
        int result;
        bool resbool;

        m.GetNumber(10, true, out result, out resbool);
        label1.Text = result.ToString();
    }
}

}

A: 

Sounds like you are missing an assembly in your deployment.

Chris Lively