吾吾如泪1o
cainiao0806
关注数: 0
粉丝数: 0
发帖数: 97
关注贴吧数: 0
虚拟机 里 几乎打不开 网页 怎么 回事 ? 更新到 4.1.14版本 虚拟机 里 几乎打不开 网页 怎么 回事 ? 更新到 4.1.14版本 之前没有 问题的 。。。
VirtualBox 4.1.10.76795: 支持Win8的虚拟机??? 说支持 ? 没有 vt加速功能 还是 不支持 Win8
在北方农村安装宽带... 电话安装费 100元 ,接入费 150 元 ,(因该还有 100元那收据 我没拿到 要使用 2,G 3g 手机卡,不使用 “ 手机卡 ” 不给你办理宽带 。。。 我申请的是 按月的, " 联通 " 宽带 的 交了 760 按月90 元的 , 这 合理吗 ?
win7 中 怎么 关闭 NetBIOS, IGMP攻击:, ICMP win7 中 怎么 关闭 NetBIOS, IGMP攻击:, ICMP
win7 中 安装目录的 盘符压缩会 怎样 ? 系统自带的 压缩功能 , 会出现 蓝屏之类的马 ?
谁知道 启云 虚拟机 在哪里下载 谁知道 启云 虚拟机 在哪里下载
这个 显卡 不适合 使用 win7 马? 显卡信息 显卡芯片 NVIDIA(英伟达) GeForce 8400M G (G86M) 显存大小 128 MB of DDR2 SDRAM 显卡型号 NVIDIA(英伟达) GeForce 8400M G [华硕] 显卡BIOS版本 60.86.54.00.41 频率 275.0 MHz ====================================== 帮 看下 我用 驱动精灵 装 驱动 后 容易 不停的 闪烁, 黑屏 现象
windows 8 有 虚拟机安装的 朋友 ma? 用vm 安装 安装 tool 快 结束的时候黑屏 没反应了 强制 重启后 开机 停留 深蓝平 页面 不动了 。怎么 等待 也一样
windows8 开启停留在深蓝色页面不动了 怎么 回事 windows8 开启停留在深蓝色页面不动了 怎么 回事
MouseTest void CMouseTestView::OnLButtonDown(UINT nFlags, CPoint point) { // TODO: 在此添加消息处理程序代码和/或调用默认值 CClientDC dc(this); dc.TextOut (point.x, point.y,"鼠标测试"); CView::OnLButtonDown(nFlags, point); } ================================== 错误内容 : error C2664: “BOOL CDC::TextOutW(int,int,const CString &)”: 不能将参数 3 从“const char [9]”转换为“const CString &”1> 原因如下: 无法从“const char [9]”转换为“const CString”1> class“ATL::CStringT<BaseType,StringTraits>”的构造函数声明为“explicit”1> with1> [1> BaseType=wchar_t,1> StringTraits=StrTraitMFC_DLL<wchar_t>
msg test class CMsgTestDoc : public CDocument { protected: // 仅从序列化创建 CMsgTestDoc(); DECLARE_DYNCREATE(CMsgTestDoc) // 属性 public: // 操作 public: // 重写 public:virtual BOOL OnNewDocument(); virtual void Serialize(CArchive& ar); // 实现 public: virtual ~CMsgTestDoc(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: // 生成的消息映射函数 protected: DECLARE_MESSAGE_MAP() private: // 鼠标光标的 x 坐标 int m_PosX; // 鼠标光标的 y 坐标 int m_PosY; // 窗口的高度 int m_Height; // 窗口长度 int m_Width; public: void SetPosX(int x); void SetPosY(int y); void SetHeight(int h); void SetWidth(int w); }; =============================================================================== // CMsgTestDoc 命令 void CMsgTestDoc::SetPosX(int x) { m_PosX = x; UpdateAllViews(NULL); } void CMsgTestDoc::SetPosY(int y) { m_PosY = y; UpdateAllViews(NULL); } void CMsgTestDoc::SetHeight(int h) { m_Height = h;UpdateAllViews(NULL); } void CMsgTestDoc::SetWidth(int w) { m_Width = w;UpdateAllViews(NULL); } int CMsgTestDoc::GetPosX(void) { return m_PosX; } int CMsgTestDoc::GetPosY(void) { return m_PosY; } int CMsgTestDoc::GetHeight(void) { return m_Height; } int CMsgTestDoc::GetWidht(void) {return m_Width; } ========================================== 有错误 求解 红点那里是 出错的 地方
msgtest void CMsgTestDoc::SetPosX(void){m_PosX = x; UpdateAllViews(NULL);} void CMsgTestDoc::SetPosY(void){m_PosY = y;UpdateAllViews(NULL);} void CMsgTestDoc::SetHeight(void){m_Height = h;UpdateAllViews(NULL);} void CMsgTestDoc::SetWidth(void){m_Width = w;UpdateAllViews(NULL);} int CMsgTestDoc::getPosX(void){return m_PosX;} int CMsgTestDoc::GetPosY(void){return m_PosY;} int CMsgTestDoc::GetHeight(void){return m_Height;} int CMsgTestDoc::GetWidth(void){return m_Width;} 这个是 visual c++ .net 内容 的 在 vs2008版 本 中写的 出现 错误 , 求解
DVExample msg.Format(TEXT("m_Data = %d"), pDoc->m_Data); //AfxMessageBox(msg); pDC->TextOut(10, 10, msg);
mfc 中 “anwer”: 未声明的标识符 void CDVExampleView::OnDraw(CDC* /*pDC*/) { CDVExampleDoc* pDoc = GetDocument(); ASSERT_VALID(pDoc); // TODO: 在此处为本机数据添加绘制代码 int answer; CString msg; msg.Format("Add 100 to m_Data?") anwer = AfxMessageBox(msg, MB_YESNO); if(answer == IDYES) { pDoc->AddData(); //Document 调用一个对象的成员函数 } msg.Format("m_Data = %d", pDoc->m_Data); AfxMessageBox(msg); } vc 版本是 2010 出错内容 : “anwer”: 未声明的标识符 error C2664: “void ATL::CStringT<BaseType,StringTraits>::Format(const wchar_t *,...)”: 不能将参数 1 从“const char [12]”转换为“const wchar_t *”1> with1> [1> BaseType=wchar_t,1> StringTraits=StrTraitMFC_DLL<wchar_t>1> ]1> 与指向的类型无关;转换要求 reinterpret_cast、C 样式转换或函数样式转换
渤海商品 这是 怎样 设置的 ~
说 找不到 messagebox 呢 。。。 #include "stdafx.h" #include <windows.h> int _tmain(int argc, _TCHAR* argv[]) { int i; int j;int sum; printf("Console Application.\n"); printf("Enter 1st number : "); scanf("%d", &i); printf("Enter 2nd number : "); scanf("%d", &j); sum =i + j;printf("Sum = %d\n", sum); MessageBox(NULL, "Console Application.","Console", MB_OK); return 0;} 说找不到 messagebox 呢 版本是 vc2008
1
下一页