Windows Mobile 6.0

时间:2010-10-22 09:21:02

标签: windows-mobile

我正在尝试调试我的应用程序,并且我使用了以下代码... 但每当我尝试调试应用程序时,我都会收到上述错误....

  

错误1部署和/或注册   失败并出现错误:0x8973190e。错误   写文件   '\的Windows \ NETCFv35.wm.ARMV4I.cab'。   错误0x80070070:没有足够的   磁盘上的空间。设备连接   组件不仅有   它发生了“NETCFv35.wm.ARMV4I.cab”   与不同的dll在不同   倍...

代码如下

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;        
        }
    }
}

我已经尝试通过

发布参考资料了
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

先谢谢,我们还有其他任何可以消除错误的解决方案

1 个答案:

答案 0 :(得分:1)

使用模拟器时我也遇到了这个问题。从部署日志中我可以看到VS部署几乎所有.net相关文件,我不知道为什么,它就像VS一样疯狂。

在有人提出解决方案之前,也许你可以像我这样做,只能解决症状。

  1. 删除所有已部署的Windows dll:s,检查部署文件夹。
  2. 更改以便将所有相关项目部署到同一文件夹,以最大限度地减少磁盘空间。
  3. 最后我不使用模拟器。