自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (19)
  • 收藏
  • 关注

空空如也

WolCmd.exe 和 WakeOnLanGui.exe

来源: https://www.depicus.com/wake-on-lan/wake-on-lan-cmd https://www.depicus.com/wake-on-lan/wake-on-lan-gui 经测试通过路由设置端口转发可以实现广域网(WAN)唤醒

2023-02-24

ulang-0.2.2.exe

中科院计算所发布国产编程语言“木兰” http://tech.163.com/20/0117/11/F33DKDEC000999LD.html 「木兰」编程语言有什么特色? https://www.zhihu.com/question/366509495/answer/975810766 下载链接 http://www.dongshouke.com/download/ulang-0.2.2.exe

2020-01-17

EVO Collaborator for Outlook 软件下载

EvoCollaboratorOutlook 来源 http://cn.evo-mailserver.com.tw/download.php 直接找台湾去下载吧,不用在这里下载 作用 1. 探测可用的同步URL 2. 把 outlook 本地的日历或联系人同步到如 QQ 或 136 之类的 CalDAV CardDAV服务器上

2019-05-08

ODIR(Outlook Duplicate Items Remover)

用于去除 outlook 中重复的项目,如 邮件 联系人 日历 之类的 免费软件,不过官网 http://www.vaita.com 已变了 好像只能用于 outlook 2007 或 outlook 2003 对于 office 2019 没用 关于 outlook 导出 ics 文件,可以使用 outlook -> 打开日历 -> 主菜单 保存日历 -> 其他选项(M)... 然后选择 日期范围(R) 详细信息(D) 进行保存

2019-05-04

VMware.unlock

+---unlock-all-v101 +---unlock-all-v102 // 已验证支持 VM 8.02 build-591240 \---VMware Unlocker - Mac OS X Guest +---VMware 7.1.x Series \---VMware 8 Series

2012-02-16

windows pipe

下述资源来源于 www.codeproject.com

2010-06-30

Redirecting Standard Output to a CEdit Control

来源: http://www.codeguru.com/Cpp/misc/misc/article.php/c321/ Environment: The demo was built with Microsoft Developer Studio 97 (Visual C++ 5.0) and has been tested with Windows 95, Windows 98 and Windows NT 4.0. Applications sometimes need to create a child process whose output may, by default, be written to a console window. Running a batch file is a good example of this. In many cases the console window goes away as soon as the child process exits. At times it would be useful if there was a way to redirect the output of the child process to a CEdit control. A good example of the desired behavior is the output generated by tools executed from the Tools menu of DevStudio. A tool's output is written to the Output window, and the user can copy and clear text from this window. Moreover, the output from the tool is displayed as it is being written, instead of all at once when the tool exits. It would be nice if Microsoft had provided an example of how to do this, but such is not the case. The only example that I could find in the Online Documentation is the one titled "Creating a Child Process with Redirected Input and Output". This example shows how to create a child process and redirect its standard output to an anonymous pipe. The parent process writes and then reads to the pipe, while the child process reads and then writes to the pipe, and that's it. This example falls short of demonstrating how to use a loop to read data from a pipe whenever data is available, and to exit the loop when the child process has exited. I spent a good amount of time searching newsgroups and web sites for examples but never found any that worked to my liking. Then I came across a post to the microsoft.public.vc.mfc newsgroup, submitted by Dima Shamroni, that provides the essential code. I have used this code as a basis for the following class, CRedirect. Post a comment Email Article Print Article Share Articles Digg del.icio.us Newsvine Facebook Google LinkedIn MySpace Reddit Slashdot StumbleUpon Technorati Twitter Windows Live YahooBuzz FriendFeed The class CRedirect creates a child process and redirects its standard output and standard error to a CEdit control. Both the command line for the process and the CEdit control are specified by the caller. Using the class is simple, as shown in the following: CRedirect Redirect("C:\\Temp\\sample.bat", m_Edit); Redirect.Run(); A fancier way of using this class is to dynamically allocate an object of CRedirect and provide a Stop button that allows you to terminate the child process, as shown in the following (an abbreviated version of what's used in the demo): CRedirectDemoDlg::OnButtonRun() { m_pRedirect = new CRedirect("C:\\Temp\\sample.bat", m_Edit); m_pRedirect->Run(); delete m_pRedirect; m_pRedirect = 0; } CRedirectDemoDlg::OnButtonStop() { if ( m_pRedirect ) { m_pRedirect->Stop(); } The CRedirect::Run() method blocks the caller. However, windows still receive messages because within the CRedirect::Run() method there is a loop that both reads data from a pipe and calls the method listed below to process window messages. CRedirect::PeekAndPump() { MSG Msg; while ( ::PeekMessage(&Msg, NULL, 0, 0, PM_NOREMOVE) ) { (void)AfxGetApp()->PumpMessage(); } }

2010-06-24

LuaPlus VS2008

http://luaplus.org/projects/luaplus/files 只有 VS 2008

2010-06-21

Hex Edit Control

来源: http://www.codeproject.com/KB/edit/hexedit.aspx If you have the need to edit character data in HEX and character modes and there is not enough space on the screen to use a fully featured HEX edit control, then this is for you. This HEX edit control allows the user to edit text in HEX or normal ASCII modes and switch between the two. Current text selection cursor position is preserved when switching between the two modes allowing particular areas of text to be highlighted and viewed in HEX mode. Non-printable characters are displayed as an upside-down question mark by default although this character can be changed by calling the SetBinaryCharacter method. The public methods available on CHexEditCtrl are:-

2010-06-21

luabind (helps you create bindings between C++ and Lua)

来源: http://sourceforge.net/projects/luabind luabind is a library, inspired by and similar to Boost.Python, that helps you create bindings between C++ and Lua. It has the ability to expose functions and classes, written in C++, to Lua.

2010-06-17

Serial library for C++

来源: http://www.codeproject.com/KB/system/serial.aspx Serial communications is needed in several types of applications, but the Win32 API isn't a very easy to use API to implement it. Things get even more complicated when you want to use serial communication in an MFC based program. The classes provided in the library try to make life a little easier. Its documentation is extensive, because I want to give you a good background. Serial communication is hard and good knowledge of its implementation saves you a lot of work, both now and in the future... First I'll briefly discuss why serial communications is hard. After reading that chapter you'll probably be convinced as well that you need a class, which deals with serial communication. The classes provided in the library are not the only classes, which handle the serial communication. Many other programmers wrote their own classes, but I found many of them too inefficient or they weren't robust, scalable or suitable for non-MFC programs. I tried to make these classes as efficient, reliable and robust as possible, without sacrificing ease of use too much. The library has been developed as a public domain library some time ago, but it has been used in several commercial applications. I think most bugs have been solved, but unfortunately I cannot guarantee that there are no bugs left. If you find one (or correct a bug), please inform me so I can update the library.

2010-06-17

The Win32 Foundation Classes (WFC) - Version 45

来源: http://www.codeproject.com/KB/library/wfc.aspx Win32 Foundation Classes (WFC) is a library of C++ classes that extend Microsoft Foundation Classes (MFC) to do NT specific things. Microsoft has chosen to focus their efforts on making MFC do pretty GUI things rather that application development things. MFC views the world through GUI colored glasses. There's no real support for doing any sort of interesting application in MFC. Oh sure, there's database support but that is GUI-slanted (assumes the application will present the database in a GUI).

2010-06-16

Virtual Serial Ports Emulator

官网 : http://www.eterlogic.com/Products.VSPE.html DESCRIPTION: VSPE is intended to help software engineers and developers to create/debug/test applications that use serial ports. It is able to create various virtual devices to transmit/receive data. Unlike regular serial ports, virtual devices have special capabilities: for example, the same device can be opened more than once by different applications, that can be useful in many cases. With VSPE you are able to share physical serial port data for several applications, expose serial port to local network (via TCP protocol), create virtual serial port device pairs and so on Key features: ■Virtual device: connector ■Virtual device: data splitter ■Virtual device: pair ■Mapper device ■User mode device: TcpServer ■User mode device: TcpClient ■User mode device: Serial Redirector ■User mode device: UDP Manager ■User mode device: Bridge ■Python scripting system ■x86 and x86_64 processor architecture support ■VSPE API (C/C++ header and static library) for native language developers ■VSPE API Python bindings for Python developers ■Embedded HTTP server ■Data monitoring

2010-06-16

HW VSP3 - Virtual Serial Port

官网 : http://www.hw-group.com/products/hw_vsp/index_en.html Free, unrestricted Virtual Serial Port driver for any TCP/IP devices Compatible with Windows 2000, XP (Win 98, NT) and Windows Vista Runs as a standalone application, or as a NT service suitable for servers Option to start at Windows startup and minimize to System Tray Single-port (free) and multi-port (commercial) version Supports RFC 2217, allowing to change remote serial port parameters (such as speed, parity, stop bits) over TCP using NVT VSP driver typically operates as a “TCP client”; however, it can also be used as a “TCP server” (useful for GPRS applications) Configuration stored in an INI file Configuration protected with a password Supports UAC (User Account Control – user switching in Windows XP and Vista) This software is FREEWARE, as long as you comply with the license terms and conditions

2010-06-16

串口调试工具(ComTools)

来源: http://www.skycn.com ComTools是功能齐全,操作方便的串口调试工具,是单片机通讯开发的最佳助手!本软件完全免费,无任何功能时间限制。

2010-06-15

CommMonitor串口监控工具 3.13

来源: 华军软件园 (http://www.onlinedown.net) 内包含了二次开发SDK接口 DEMO CommMonitor可侦测、拦截、逆向分析串口通信协议, 是侦测RS232/422/485串行端口的专业工具软件,是软硬件工程师的最佳助手。 CommMonitor 能侦听、拦截、记录、分析串行通信协议, 让您对应用程序操作串行端口的过程和细节,让您及时的模拟被侦听程序或设备的数据、控制流,提高工作效率。 1、新增对虚拟串口的监视,改变了原来CommMonitor3.0不能对虚拟串口的监视; 2、无DLL无驱动,不会对全局进程进行HOOK,只对指定的进程进行HOOK;

2010-06-15

VSPM 虚拟串口 2.82

来源: 天空软件站 (http://www.skycn.com) 官方: 金华科技 (http://www.powerip.net) VSPM 虚拟串口软件可以将TCP/IP、UDP广播映射成本机的虚拟COM 口,应用程序通过访问虚拟串口,就可以完成远程控制、数据传输等功能。 通过扩展DLL,可以实现串口互通、协议分析、数据采集等功能,提供例程代码。 此软件可免费用于商业用途,例如串口服务器、无线DTU产品配套等。 软件QQ群:28173573 Ver2.65(2008-1-17)主要更新: 1.修正Service模式问题 2.增加一些插件 3.文档升级 京金华科技专业研发生产串口服务器、CAN-bus转以太网、开关量及模拟量转以太网产品。 http://www.powerip.net VSPM 虚拟串口软件可以将TCP/IP、UDP映射成本机的虚拟COM口,应用程序通过访问虚拟COM口,就可以完成远程控制、数据传输等功能。 通过扩展插件,可以实现本机串口互通、协议分析、数据采集等功能,提供例程代码。 此软件可免费用于商业用途,例如串口服务器、无线DTU产品配套等。 软件QQ群:28173573

2010-06-15

桌面留言板

网页形式的桌面留言板

2007-10-14

桌面上的留言本

这是一个网页,可以把剪贴板上的文本插入页面,如果把这个网页设为桌面,就可以起到留言的作用。

2007-10-14

空空如也

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

TA关注的人

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