' 将一个正数除以 y 返回一个整数或分数 Function RFs(ByVal x As Integer) As String Then RFs = Exit Function End If Dim div_result, div_remain, y, i As Integer y = div_result = x \ y div_remain = x Mod y Then RFs = x / y Exit Function Else Dim z As Integer If div_remai…
VBA调用InternetExplorer操作IE浏览器,自动弹出文件选择对话框时,VBA会处于阻塞状态,你必须手工关闭文件选择对话框,VBA才能继续向后运行. 例如下面网址,就有一个文件浏览按钮: http://www.zytxs.com/web1/upload.aspx 我做了一个exe文件,可以在另一个进程中来处理文件对话框. Sub Test() Dim File As MSHTML.HTMLInputFileElement Dim WSH As Object Set File = IE…
目录 环境说明逻辑结构效果说明及截图①.安装SecureCRT②. 自动巡检脚本③. 数据检索并FTP传送④. 安装Excel 2013⑤. 安装Serv-U⑥. 自动生成图表并邮件发送 环境说明 系统: Windows Server 2003, Windows Server 2008 Windows Server 2003上目录结构: Windows Server 2008 上的目录结构: 系统说明: 可在一台机器上进行[Windows Server 2008支持Excel 2013], 本文…
import java.util.Scanner; public class Suan { public static void main(String[] args) { int []b;//设置数组来存放随机产生数 b=new int [4]; Scanner in=new Scanner(System.in); System.out.println("请选择你想练习的题型:"); System.out.println(" 1.分数的加减乘数法练习!"); Sy…
想利用VBA自动创建/发送OUTLOOK邮件,可以借助MailItem的Body属性或HTMLBody属性,代码模板如下: Dim objOutlook As Outlook.Application '需要引用Microsoft Outlook 16.0 Object Library对象模型 Dim objMail As MailItem Set objOutlook = New Outlook.Application Set objMail = objOutlook.CreateItem(ol…