随笔分类 -  C++ Builder 常见操作总结

摘要:菜单component->Install Packets按Add按钮,选择delphi目录里的bin目录下的dclsockets70.bpl(delphi2010是dclsockets140.bpl),然后TClientSocket和TServerSocket控件就会出现在Internet页上了 阅读全文
posted @ 2016-01-14 16:45 一样菜 阅读(509) 评论(0) 推荐(0) 编辑
摘要:加上头文件#include#include Image1->Picture->LoadFromFile("001.gif");((TGIFImage*) Image1->Picture->Graphic)->Animate = true;//开始播放((TGIFImage*) Image1->Pic... 阅读全文
posted @ 2016-01-14 15:35 一样菜 阅读(489) 评论(0) 推荐(0) 编辑
摘要:多线程编程是提高系统资源利用率的一种常见方式。它占用的资源更小,启动更快,还可以实现在后台运行一些需时较长的操作。[喝小酒的网摘]http://blog.hehehehehe.cn/a/8498.htm一、初识TThread对象VCL提供了用于多线程编程的TThread类,在这个类中封装了Windo... 阅读全文
posted @ 2016-01-11 14:19 一样菜 阅读(2404) 评论(0) 推荐(0) 编辑
摘要://opencv读取图片 cv::Mat image; //const char *fileName = "HeadImage-UI/Photo-001.bmp"; const char *fileName = "HeadImage-UI/53d253192be47412.... 阅读全文
posted @ 2016-01-07 15:28 一样菜 阅读(950) 评论(0) 推荐(0) 编辑
摘要:__fastcall TForm6::TForm6(TComponent* Owner) : TForm(Owner){#if 1 //for debug AllocConsole(); AttachConsole( GetCurrentProcessId() )... 阅读全文
posted @ 2016-01-07 11:59 一样菜 阅读(1129) 评论(0) 推荐(0) 编辑
摘要:使用双缓冲Form->DoubleBuffered = true;Panel->DoubleBuffered = true; 阅读全文
posted @ 2016-01-06 13:43 一样菜 阅读(424) 评论(0) 推荐(0) 编辑
摘要:在空的Form里加个Button,写入void __fastcall TForm1::Button1Click(TObject *Sender){ for (long k=0; kLeft = 10; label->Top = k*30; label->Parent... 阅读全文
posted @ 2016-01-06 12:53 一样菜 阅读(642) 评论(0) 推荐(0) 编辑
摘要:有两种方法,一是把该对象的Transparent 的属性设为true,图片的白色代表即为父界面的颜色而是在头文件加上#include Image1->Picture->LoadFromFile("BigFile001.png");即可 阅读全文
posted @ 2016-01-01 21:01 一样菜 阅读(1152) 评论(0) 推荐(0) 编辑
摘要:Project --> Option --> Packages -->Runtime Packages --> Link with runtime packages 属性改为falseProject --> Option --> C++Linker --> Link with Dynamic RTL... 阅读全文
posted @ 2015-12-30 19:05 一样菜 阅读(758) 评论(0) 推荐(0) 编辑
摘要:TTabControl包含一列字符串标签的tabs每个标签控制一个对象首先创建一个TForm;接下来添加TTabControl组件和一个文件对话框TOpenDialog(用于添加文件),然后在TTabControl里面添加TMemo(多行文本编辑框),最后在Form上添加一个Button,在Butt... 阅读全文
posted @ 2015-12-26 22:49 一样菜 阅读(491) 评论(0) 推荐(0) 编辑
摘要:ShowMessage一个简单的消息提示:例如:ShowMessage("xxxx");MessageDlg(constAnsiString Msg, TMsgDlgType DlgType, TMsgDlgButtons Buttons,int HelpCtx);Msg: 显示消息的内容DlgTy... 阅读全文
posted @ 2015-12-26 22:06 一样菜 阅读(4556) 评论(0) 推荐(0) 编辑
摘要:TPageControl的功能是创建多个Dialog页,而这些重叠的每一个页Dialog就是通过TTabSheet对象实现的 阅读全文
posted @ 2015-12-26 21:43 一样菜 阅读(293) 评论(0) 推荐(0) 编辑
摘要:__fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner){ //加载图标到Imagelist Graphics::TBitmap *bmpPicture = NULL; bmpPicture = new Graph... 阅读全文
posted @ 2015-12-23 23:02 一样菜 阅读(1125) 评论(0) 推荐(0) 编辑
摘要:1.TOpenDialog:Title属性:用于获取或设置对话框标题,如果么偶有给该属性赋值,则系统将使用默认值标题:“打开” 。InitialDir属性:用于获取或设置文件对话框显示的初始目录。如果没有设置或设置的目录不存在,该属性值为当前工作目录。Files属性:用于获取或设置当前文件名筛选器字 阅读全文
posted @ 2015-12-21 22:53 一样菜 阅读(2457) 评论(0) 推荐(0) 编辑
摘要:1、界面窗口如何不显示标题栏? 在Form属性栏里面把BorderStyle的值设为None2.wchar_twchar_t是C/C++的字符类型,是一种扩展的存储方式,wchar_t类型主要用在国际化程序的实现中定义方式:wchar_t *str = "Hello World!!";3.C++如... 阅读全文
posted @ 2015-12-05 00:53 一样菜 阅读(564) 评论(0) 推荐(0) 编辑