Hi,i am trying to debug my application and i have used the following code... but whenever i try to debug the application i get the above error....
Error 1 Deployment and/or registration failed with error: 0x8973190e. Error writing file '\Windows\NETCFv35.wm.ARMV4I.cab'. Error 0x80070070: There is not enough space on the disk.Device Connectivity Component not only with "NETCFv35.wm.ARMV4I.cab" it happens with different dlls at different times...
code is as follows
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;
using Facebook;
using Facebook.Entity;
namespace WindowsMobileFacebookDemo
{
public partial class Form1 : Form
{
Facebook.API.FacebookAPI fbAPI = new Facebook.API.FacebookAPI();
public Form1()
{
InitializeComponent();
fbAPI.IsDesktopApplication = true;
fbAPI.ApplicationKey = "00b0a669821ecbb4a646f822fdb56ffe";
fbAPI.Secret = "1b185cd1951cc7eb8bc28fdec7adb664";
string savedAuthToken = fbAPI.AuthToken;
fbAPI.CreateSession(savedAuthToken);
string savedSecret = fbAPI.Secret;
string savedSessionKey = fbAPI.SessionKey;
}
}
}
Please i have already tried releasing the references by
1.changing the Property Copy Local to False
2.trying to reset the emulator
3.uninstalled and reinstalled the
a. Microsoft Virtual PC 2007
b. Microsoft Active Sync
c. Windows Mobile Professional Emulator 6.0 and standard as well
4.tried to change the active sync
5.Deleted the Programs and stopped the running programs from the emulator
Thanks in Advance do we have any other solution that will remove the errors