-
window下字符转换
/*Function utf8转unicodeParameter pUtf16OutBuff 输出转化后的字符串,调用者只要传空指针即可,由函数内部采用new分配内存块Parameter pUtf8Text 要转的utf8字符串*/BOOL Utf8ToUnicode(wchar_t* &pUtf16OutBuff, const char *pUtf8Text);/*Function unicode转utf8Parameter putf8OutBuff 输出转化后的字符串,调用者只要传空指针即可,由函数内部采用new分配内存块Parameter pUtf16Text 要转的unicode字符串*/BOOL UnicodeToUtf8(char* &pUtf8OutBuff, const wchar_t* pUtf16Text);/*Function unicode转ansiParameter pAnsiOutBuf 输出转化后的字符串,调用者只要传空指针即可,由函数内部采用new分配内存块Parameter pUtf16Text 要转的unicode字符串*/BOOL UnicodeToAnsi(char* &pAnsiOutBuf, const wchar_t* pUtf16Text);/*Function ansi转unicodeParameter putf16OutBuff 输出转化后的字符串,调用者只要传空指针即可,由函数内部采用new分配内存块Parameter pAnsiText 要转的ansi字符串*/BOOL AnsiToUnicode(wchar_t* &putf16OutBuff, const char *pAnsiText);/*Function utf8转ansiParame
- 2022-01-25 15:26:39下载
- 积分:1
-
C#编写的文档读写
这是一个用于读取和写入到一个文件中的程序。程序是 C# 语言编写的。
- 2023-02-18 05:35:03下载
- 积分:1
-
贪吃蛇游戏
贪吃蛇游戏是经典手机游戏,既简单又耐玩。通过控制蛇头方向吃蛋,使得蛇变长,从而获得积分。 贪吃蛇钻井测井技术是一种运用旋转导向系统、随钻测井系统等的油气田定向钻井、随钻测井技术,可完成海上“丛式井”和复杂油气层的开采需求,大幅降低油气田开发综合成本。
- 2023-09-06 07:25:02下载
- 积分:1
-
C#
说明: C#使用ICSharpCode.SharpZipLib.dll压缩文件夹和文件(C# uses ICSharpCode.SharpZipLib.dll to compress folders and files)
- 2018-01-15 13:39:19下载
- 积分:1
-
开发指南Delphi通信是高度成功的另一个…
Developer s Guide to Delphi Communications is another addition to the highly successful Delphi series from Wordware. This the only title on the market that provides a comprehensive overview to the communications capability of Delphi relative to the major communications protocols, such as TCP/IP, MAPI, SMTP, and HTTP.
Addison-Wesley Nitty Gritty Programming Series provides the most important facts that you willneed to know to get up and running in new programming topics quickly and when you have becomeproficient you can use it as an on-going reference book for all the fundamentals.
Divided into three sections, this book provides everything you need to know to startprogramming in Delphi 6.-Developer s Guide to Delphi Communications is another addition to the highly successful Delphi series from Wordware. This is the only title on the market that provides a comprehensive overview to the communications capability of Delphi relative to the major communications protocols, such a
- 2022-12-14 20:25:03下载
- 积分:1
-
TCPP30H
信息编译码,用c语言编程的安装程序.rar(Information encoding and decoding, using c language programming of the installation process. Rar)
- 2009-03-11 11:32:57下载
- 积分:1
-
C# WPF 功能打印的示例
C# WPF 功能打印的示例,加载内容后,可在本程序中直接打印出XAML文档。
private void button2_Click(object sender, RoutedEventArgs e)
{//打印文件
PrintDialog MyDialog = new PrintDialog();
if ((MyDialog.ShowDialog() == true))
{
MyDialog.PrintVisual(this.richTextBox1 as Visual, "我的XAML打印文档");
}
}
private void button3_Click(object sender, RoutedEventArgs e)
{//保存文件
string MyFileName = "MyFile.XAML";
TextRange MyTextRange;
System.IO.FileStream MyStream;
MyTextRange = new TextRange(this.richTextBox1.Document.ContentStart, this.richTextBox1.Document.ContentEnd);
MyStream = new System.IO.FileStream(MyFileName, System.IO.FileMode.Create);
MyTextRange.Save(MyStream, DataFormats.XamlPackage);
MyStream.Close();
}
- 2022-01-23 10:57:00下载
- 积分:1
-
FIRA机器人足球赛5v5文件
FIRA机器人足球赛5v5程序的源代码,可编译。
- 2022-01-31 09:41:36下载
- 积分:1
-
时间片算法可以在风险投资下运行
时间片算法 在vc下可以运行-Time Slice algorithm can run under vc
- 2022-03-29 01:48:36下载
- 积分:1
-
图像处理
这个程序主要是应用MATLAB在偏微分方程中对图像进行处理,提高图像的质量,改善其处理图像的品质
- 2023-03-13 13:55:04下载
- 积分:1