自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (6)
  • 收藏
  • 关注

转载 VC++使用静态库,msvcrt.lib连接错误

一个库被编译成了静态库,在工程中使用该静态库,进行链接的时候报如下错误msvcrt.lib(ti_inst.obj) : error LNK2005: "private: __thiscall type_info::type_info(class type_info const &)" (??0type_info@@AAE@ABV0@@Z) 已经在 libcmt.lib(typinfo.o

2015-02-02 01:35:34 475

转载 MFC调用WebService,WCF的简单例子(转)

<br /><br />(1)生成一个WebService项目WebService1<br />(2)在该解决方案里添加一个MFC对话框项目TestWebService<br />(3)设置MFC项目公共语言支持(/CLR),引用WebService,默认名字localhost<br />(4)在TestWebServiceDlg.cpp里添加<br />#include "stdafx.h"<br />#include "TestWebService.h"<br />#include "TestWebSe

2010-11-20 21:37:00 2085 1

转载 CComboBox控件详解

<br />CComboBox控件又称作组合框控件,其有三种形态可供选择,1.简单组合框(Simple)2.下拉组合框(Drop-down)3.下拉列表式组合框(Drop-down list).       CComboBox控件的常用设置属性说明:         type属性:里面一共有三个选项.就是其三种形式, 我们常用的是后两种形态,其区别就是Dropdown的编辑区为可编辑控件,而droplist为静态控件.         Data属性:当程序初始化的时候,下拉列表将显示其属性里面的内容,内容用

2010-11-19 10:35:00 335

Wpf托盘.rar

WPF实现托盘 private void OnNotifyIconDoubleClick(object sender, EventArgs e) { this.Visibility = Visibility.Visible; this.ShowInTaskbar = true; this.WindowState = WindowState.Normal; } private void Window_StateChanged(object sender, EventArgs e) { this.Visibility = Visibility.Hidden; this.ShowInTaskbar = false; this.WindowState = WindowState.Normal; } public void IconShow() { this.notifyIcon = new NotifyIcon(); this.notifyIcon.Text = "Hello, NotifyIcon!"; this.notifyIcon.Icon = new System.Drawing.Icon("AIM54.ico"); this.notifyIcon.Visible = true; notifyIcon.MouseClick += OnNotifyIconDoubleClick; //this.notifyIcon.BalloonTipText = "Hello, NotifyIcon!"; //this.notifyIcon.ShowBalloonTip(500); }

2013-05-20

价值2000元的IDC虚拟主机平台网站模板

价值2000元的IDC虚拟主机平台网站模板 http://idc.hxyou.com/

2011-03-29

Tab Control控件演示源码VC++2010

Tab Control控件演示源码VC++2010 dll注入模式外挂框架 IDE为VS2010

2010-10-08

多线程入门实例VC++2005

void ThreadFunc() { CTime time; CString strTime; m_bRun=TRUE; while(m_bRun) { time=CTime::GetCurrentTime(); strTime=time.Format("%H:%M:%S"); ::SetDlgItemText(AfxGetMainWnd()->m_hWnd,IDC_TIME,strTime); Sleep(1000); } }

2009-11-09

Tab Control控件演示源码VC++2005

Tab Control控件演示源码VC++2005

2009-10-07

WinIo.dll源码及VC演示程序

WinIo.dll源码及VC演示程序 // ---------------------------------------------------- // // WinIo v2.0 // // Direct Hardware Access Under Windows 9x/NT/2000/XP // // Copyright 1998-2002 Yariv Kaplan // // http://www.internals.com // // ---------------------------------------------------- //

2009-09-15

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除