自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

ksrsoft的专栏

C++Builder Delphi

  • 博客(35)
  • 资源 (23)
  • 收藏
  • 关注

原创 伟大的ghost 伟大的Symantec

ghost给安装系统带来的革命性的变革ghost

2014-05-31 07:57:36 709

原创 TNativeXml 新版本 读取

xml = new TNativeXml(this); xml->ExternalEncoding = seUTF8; xml->XmlFormat = xfReadable; xml->LoadFromFile("test.XML");

2014-05-29 16:02:04 1171

转载 IE 11 安装失败

http://support.microsoft.com/kb/2872074

2014-05-28 14:44:38 1153

原创 古董内存条

我家有台电脑,大概是2002年左右配的,

2014-05-26 16:54:33 766

转载 Delphi中停靠技术的实现[转]

先让我们来复习一下VCL的结构,在TWinControl类中有一个DockSite属性(boolean),他的作用是是否允许别的控件停靠在他的上面,在TControl类中有一个DragKind属性,如果要这个控件能停靠在别的控件上,就把DragKind属性设成dkDock。就这么简单,只要设置一下属性,一个支持停靠的程式就完成了。        当然,上面说的只是最最基本的步骤

2014-05-22 17:21:02 976

原创 XMLDocument 最简单的读取xml例子

XMLDocument1->LoadFromFile("aaa.xml");XMLDocument1->Active = true;Caption = XMLDocument1->DocumentElement->ChildNodes->FindNode("")->ChildNodes->FindNode("sn1")->Text;

2014-05-21 12:03:47 1190

原创 ReadProcessMemory 输入进程ID 输入读取地址

procedure TForm6.Button1Click(Sender: TObject);var Ghwnd: HWND; ProcID: Cardinal; Process: THandle; lpBaseAddress: Pointer; nSize: SIZE_T; lpNumberOfBytesRead: SIZE_T;// lpBuffer: arra

2014-05-20 19:08:53 2775

原创 自定义调试查看器分析 StringList(三)

系统自带的D:\Program Files (x86)\Embarcadero\Studio\14.0\source\Visualizers

2014-05-20 14:51:23 719

原创 自定义调试查看器分析 StdStringVisualizer(二)

StdStringVisualizerTypes: array[0..3] of string = ( 'std::basic_string, std::allocator >', 'std::basic_string, std::allocator >', 'std::string', 'std::wstring' );

2014-05-15 23:57:29 758

原创 自定义调试查看器分析 DateTimeVisualizer(一)

TDateTime& __fastcall operator =(const TDateTime& rhs)    {Val = rhs.Val;  return *this;}

2014-05-15 19:00:44 880

转载 腾讯财付通充值 数字证书控件未能正常工作

Tenpay Certificate Service

2014-05-15 15:36:31 4487

原创 控件指针 与数字

 Edit1->Text = (int)(void*)cds1; DataSource1->DataSet = (TDataSet*)(void*) Edit1->Text.ToInt();

2014-05-14 13:17:15 882

转载 TStopwatch 高精度秒表 计时器

delphi  TStopwatch 高精度秒表 计时器

2014-05-13 18:44:48 2160

原创 Debugger DataSet 调试时查看DataSet

http://edn.embarcadero.com/article/40268Delphi 2010 Feature Highlight - Debugger Visualizers

2014-05-13 15:37:09 3299

原创 无意中发现 c++builder 代码提示慢的秘密

在cpp文件中包含有vcl头文件,如果文件中不用#include #pragma hdrstop

2014-05-12 09:48:09 3781 1

原创 TCpie from TGraphicControl

h file#ifndef UnitPieH#define UnitPieH#include #include #include #include #include #include //---------------------------------------------------------------------------class TCpie :public

2014-05-12 00:02:35 747

原创 TFrame

TFrame 框架减少界面重画,代码重写,是非常好用的框架oop

2014-05-09 23:21:25 1166

原创 xe5中 TRect 类增强

TRect = record private function GetWidth: Integer; procedure SetWidth(const Value: Integer); function GetHeight: Integer; procedure SetHeight(const Value: Integer); function GetS

2014-05-09 22:20:03 1453

原创 __delphirtti System::Typinfo::GetEnumName

__fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner){    PTypeInfo info;    info = __delphirtti(TWindowState);    Caption = AnsiString(info->Name);    String kindName;    kindNa

2014-05-09 22:11:14 799

原创 xe5 新的任务栏提示 气泡提示 TrayIcon

__fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner){    TrayIcon1->ShowBalloonHint();    TrayIcon1->Animate = true;    TrayIcon1->BalloonFlags = bfInfo;    TrayIcon1->BalloonHint = "

2014-05-09 21:57:18 1848

原创 智能指针

#include //For STL auto_ptr class __fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner){ int Index; std::auto_ptrTStringList> MyList(new TStringList()); MyList->Add(L"Animalsૐ૧

2014-05-09 21:27:56 502

转载 TStringsEncoding TEncoding

TStringsEncoding (Delphi)Language:DelphiVersions:XEDescriptionThis example requires a TMemo control, two buttons and two textfields on the form. It demonstrates the new TStrings.En

2014-05-09 21:10:59 1429

原创 XE5 xml

TXMLDocument *XMLDocument1; _di_IXMLNode xdeRoot; _di_IXMLNode xdeChild;

2014-05-09 17:33:33 998

原创 dxgrid cxGrid使用

cxGrid1DBTableView1->DataController->Groups->FullExpand();cxGrid1DBTableView1->DataController->IsEOF() cxGrid1DBTableView1->Controller->FocusedRow->IsLastcxGrid1->FocusedField->FullNam

2014-05-09 15:10:46 951

转载 RAD XE6 new code example

xe6 newhttp://docwiki.embarcadero.com/CodeExamples/XE6/en/Category:XE6http://docwiki.embarcadero.com/CodeExamples/XE6/en/Main_Page

2014-05-08 21:55:32 933

原创 空字符串 EmptyStr

xe new feater    String sa;    if (sa == EmptyStr)        ShowMessage("empt");

2014-05-08 19:20:05 1771

原创 cxGrid 分组 展开 加号

1.、先放一个cxGrid,设置好View,设置View.DataController连接的DataSource2.激活DataSource连接的DataSet,双击cxGrid,点击Retrieve Fields,取得所有的Column3.设置View的OptionsView.Footer=True,OptionsView.GroupFooters=True,这是为了把分组小计和总计面板

2014-05-08 10:34:23 4398

转载 TDockTabSet 实现停靠

http://edn.embarcadero.com/article/33446

2014-05-07 21:50:27 2119

原创 TButtonGroup

http://docwiki.embarcadero.com/CodeExamples/XE2/en/VCLButtons%28Delphi%29TButtonGroup

2014-05-07 21:48:13 1160

原创 TCategoryButtons

http://www.functionx.com/delphi/controls/categorybuttons.htmhttp://blog.csdn.net/akof1314/article/details/6948797

2014-05-07 21:41:08 1320

转载 TGridPanel TFlowPanel

http://edn.embarcadero.com/article/33421

2014-05-07 21:16:48 3214

原创 安装包制作工具

InstallAware Developer

2014-05-07 20:43:39 689

原创 TButtonedEdit

设置ButtonedEdit的Images属性,可实现三态按钮效果,不过不是...

2014-05-07 20:33:59 941

原创 TGridPanel

TGridPanel

2014-05-07 19:51:49 1402

原创 dxDBGrid 何去何从 升级

https://www.devexpress.com/Support/Center/Question/Details/Q449255Delphi 5 to XE3TdxGrid is an old component. Now TcxGrid is used instead of TdxDBGrid. Please refer to the "TcxGrid Object"

2014-05-07 16:46:19 1198

PBCOMRT115.DLL

PBCOMRT115.DLL 找了一上午才找到

2021-01-11

力特 USB转串口驱动 型号 ZE551A

力特 USB转串口驱动 型号 ZE551A,支持win10很棒,直接安装使用。

2018-05-06

PL-2303 Vista Driver Installer

PL-2303 Vista Driver Installer,解决win7操作系统的 代码10错误

2018-05-01

最新封装delphi DataSetToJSON单元函数 Tokyo 10.2.2

最新封装delphi DataSetToJSON单元函数 Tokyo 10.2.2.

2018-04-03

DLL 函数查看器KT版

查看DLL导出函数,可搜索,可排序。自己用到才编写的,方便大家使用。

2017-04-02

delphi 文件浏览器

delphi 文件浏览器

2016-11-21

dfm viewer delphi for Berlin

delphi dfm viewer for xe8 berlin,2016

2016-09-05

64位System.Data.SQLite.dll

64位System.Data.SQLite.dll

2016-06-12

DesignIntf.dcu

c++Builder 6.0 DesignIntf.dcu designeditors.dcu Proxies.dcu

2016-05-26

c# AES加密

经过测试与java、网页工具、delphi加密结果相同!

2016-02-19

delphi IOS lifecycle 生命周期 后台

delphi IOS lifecycle 生命周期 后台 http://blogs.embarcadero.com/pawelglowacki/2013/09/30/40067

2016-01-08

delphi IOS 音乐播放器

delphi 音乐播放器, IOS锁屏后可以继续播放!

2015-12-26

Delphi 蓝牙 HeartRateMonitor

Delphi 蓝牙 HeartRateMonitor

2015-12-11

Delphi 蓝牙 ExploreDevicesLE

Delphi 蓝牙 ExploreDevicesLE

2015-12-11

Delphi 蓝牙 ClBluetooth

Delphi 蓝牙 ClBluetooth

2015-12-11

Delphi 蓝牙 BLEScanner

Delphi 蓝牙 BLEScanner

2015-12-11

侧边栏菜单

侧边栏菜单 TCategoryButtons+TSplitView

2015-11-26

libmySQL.dll

mysql clientt dll libmySQL.dll

2015-08-10

delphi encrypt

delphi encrypt 3des aes base64 md5 des rsa sha only for delphi7

2015-07-29

Microsoft OLE DB Provider for Visual FoxPro 9.0

Microsoft OLE DB Provider for Visual FoxPro 9.0

2015-07-14

BDE win7 64

BDE win7 64 bde setup ok

2015-07-11

俄罗斯方块 描准线

俄罗斯方块 描准线,得分算法修改了,一次消的多,得分就高

2013-07-31

XE4 俄罗斯方块游戏

修改的XE4 c++builder的Samples俄罗斯方块游戏

2013-07-30

空空如也

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

TA关注的人

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