Ok so I have this project that I have done when I compile it and it has no error or wanings, but when I try to debug it opens the pocket pc emulator but it does not show the program that I have coded. and when I close the emulator it shows this at the bottom of the ide
Error 1 Deployment and/or registration failed with error: 0x8007048f. The device is not connected.
Device Connectivity Component
using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Cs425HW
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void menuItem2_Click(object sender, EventArgs e)
{
this.label2.Text =
String.Format("So you are from {0}", this.textBox1.Text );
}
}
}
This is the only code that I modified from what the ide game me
Visual Studio 2008 trial ed. to be specific. i also have the Windows Mobile Device Center installed on the computer but when I open it it says it is not connected. If this helps any.
Thanks
