文章列表
1.下载CDT插件如cdt-master-6.0.2-I201002161416.zip
2.选择菜单:Help->MyEclipse Configuration Center
3.选择Software标签,在界面左上方的Broswer Software输入框旁边点击“Add Site”,如下图所示:
4.点击“Add from Archive File",选择刚才下载的cdt文件,输入相应的Name,如“CDT_install”,点击OK即可按提示完成CDT插件的安装。
- 2010-10-21 15:03
- 浏览 1531
- 评论(0)
Compiling...
BookM.cpp
Linking...
LINK : fatal error LNK1000: Internal error during IncrBuildImage
Version 9.00.21022.08
ExceptionCode = C0000005
ExceptionFlags = 00000000
ExceptionAddress = 00490028
NumberParameters = 00000002
ExceptionInf ...
- 2010-10-05 15:31
- 浏览 880
- 评论(0)
System Events
Application 类提供了处理如下系统事件的事件处理器
电池事件(Battery events)
内存事件(Memory events)
屏幕事件(Screen events)
电池事件(Battery Events)
当电池电量等级改变时该事件被触发。像相机、MP3播放器这样耗电量大的多媒体应用需要检测电池电量等级。使用 OnBatteryLevelChanged()
事件处理器来处理电池事件。 当电池电量等级改变时该处理器被调用。
根据电量,推荐下面的处理方式:
EMPTY:关闭应用程序。
CRITICAL:停止使用多媒体特性,因 ...
- 2010-10-04 16:33
- 浏览 736
- 评论(0)
关于该函数的原型及参数可以参考msdn:
The LineDDA function determines which pixels should be highlighted for
a line defined by the specified starting and ending points.(指定由给定的起点和终点定义的线段上应该被“高亮”的像素)这个“高亮(highlighted)”用的很奇怪,让人不知道是什么意思,是不是要画线的意思?
BOOL LineDDA(
int nXStart, // x-coordinate of starti ...
- 2010-07-28 17:16
- 浏览 803
- 评论(0)
原帖地址:http://www.oklinux.cn/html/Basic/jyjq/20081011/62034.html
测试可用,网上搜的其他方法如复制字体文件等都不成功。
首先说明,我是被锯齿的Netbeans折磨了半年才下决心解决来解决这个问题,
想想还真是冤枉。
我用的Linux发行版是Ubuntu
8.04,如果使用源里面的JDK一切都很简单(现在源里的版本是1.6u6),JDK6开始支持反锯齿。装完Netbeans你就会惊喜的发现,仿原生
GUI的界面(GTK+)上的文字是反锯齿的,但是编辑器里面的文字是锯齿的,小了看着别扭,选大号的字体就极为明显的看出来了 ...
- 2010-06-14 09:27
- 浏览 704
- 评论(0)
刚测试过,可用。
在程序main.cpp中加入以下代码
#include <QTextCodec>
int main(int argc, char **argv)
{
QTextCodec *codec = QTextCodec::codecForName("GB2312");//课改为其他编码,我用GB2312不行,所以就改成UTF-8了。
QTextCodec::setCodecForLocale(codec);
QTextCodec::setCodecForCStrings(codec);
QTextCodec::setCode ...
- 2010-03-08 16:37
- 浏览 1585
- 评论(0)
我安装了vs2008的90天试用版,现在把如何破解和卸载说明如下:
1.开始> 设置> 控制面版> 添加或删除程序 > 卸载vs2008
2.如果你在这之前安装了微软的更新,卸载可能会出一点问题,弹出:
A problem has been encountered while loading the setup
components的对话框。这个就是那个更新搞的鬼,必须先把更新卸载掉才能运行vs2008的卸载程序。卸载更新时要勾选“显示更新”复选框才能把更新显示出来。
3.在卸载程序的页面左下角输出下面的序列号:
- 2010-01-11 15:39
- 浏览 1045
- 评论(0)
在Google和百度上都没有找到中文的解决办法,在微软官网上找到了,现在贴出来供大家参考。
went to "Project | Game Properties | Configuration Properties | C/C++ | Code Generation | Runtime Library"
and set Multi-threaded Debug (/MTd)
did build generated error messages...
then reset
"Project | G ...
- 2010-01-04 18:09
- 浏览 1082
- 评论(0)
自从1999年开始,java.sun.com的作者们已经采访了来自不同背景的Java开发者并将从他们那里获得了给学生们的建议。在这篇文章里,11为Java开发者将向我们分享他们长期开发经验的成果。
Contents
Joshua Bloch: Write Lots of Code
Tor Norbye: Learn to Use Your Tools
Chet Haase: Don't Put Your Entire Application in One Method
Ben Galbraith: Interact With an Expert
Masood Mortazavi: S ...
- 2010-01-03 13:59
- 浏览 1023
- 评论(0)
Because of the breadth and depth of Dr. Masood Mortazavi's knowledge and interests as evidenced on his popular sun.com blog, On the Margins
,
his Meet the Engineer interview appears in two parts, so stay tuned.
Part 1 explores his thoughts on technology, virtual reality, the nature
of open-source ...
- 2010-01-03 12:46
- 浏览 614
- 评论(0)
1.安装eclipse
2.安装cdt
3.安装MinGW
4.设置环境变量
5.将文件org.eclipse.cdt.core.win32......解压到本文件夹后删除(这个很重要)
- 2009-12-27 15:49
- 浏览 1109
- 评论(0)