C 代码打开记事本自动录入文本
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
相信你和我一样也喜欢随时鼓捣些有趣的代码,不然你也不会找到这个文档,这些代码经过编译连接之后会形成一个可以自动打开记事本并向记事本中录入相关文字,在这中间嵌入的是VBS代码,我个人对BVS代码是有某种特殊感情的,特别喜欢这个代码。
不多说,先看代码:
//outfile.cpp--writing to a file
#include
#include
int main(){
using namespace std;
char automobile[]={"on error resume next\nset WshShell= WScript.CreateObject(\"WScript.Shell\")\nWshShell.Run\"notepad.exe\"\nWScript.Sleep 2000\nWshShell.SendKeys\"hello world!\"\n"};
ofstream outFile;//create object for output
outFile.open("carinfo.vbs");//associate with a file
cout.precision(2);
cout.setf(ios_base::showpoint);
outFile< outFile.precision(2); outFile.setf(ios_base::showpoint); outFile< outFile.close();//done with file system("carinfo.vbs"); return0; }