文艺八宝粥

文章
4
资源
0
加入时间
4年2月6天

(vb)机房收费系统之——调用excel 表格(引用)

在机房收费系统中,将vb中的数据导出到excel表格真的很重要,在这里遇到了各种各样的问题,下来和我一起来解决它吧!!一、前期准备工作在解决问题之前,我先声明一下,我的是office 2013,有些版本不一样,只会有一点点差别,只需要模仿就好!1、点击工程——引用,去找到microsoft excel 15.0 object library,打上勾就好!2、如果此时你的引用里没有microsoft

system和popen的用法

1.system#include <stdlib.h>int system(const char *command);system() executes a command specified in command by calling /bin/sh -c command, and returns after the command has been completed. ...