上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: Sub test() 'MsgBox Message = "Please Input:" Title = "InputBox Demo" DefaultValue = 1 ' Set default value. ' Display message, title, and default value 阅读全文
posted @ 2023-12-23 23:09 paoPaoLong_liu 阅读(6) 评论(0) 推荐(0) 编辑
摘要: Sub 多表选择() Dim wks As Worksheet, shtCnt As Integer Dim arr() As Variant, i As Integer shtCnt = ThisWorkbook.Sheets.Count '取得工作表总数' ReDim arr(1 To shtC 阅读全文
posted @ 2023-11-19 18:50 paoPaoLong_liu 阅读(222) 评论(0) 推荐(0) 编辑
摘要: Sub Sheet3_按钮1_Click() choice2 End Sub Sub choice2() ThisWorkbook.Sheets.Select '组合工作表' ActiveSheet.[A1:D10].Select '选择区域' End Sub ThisWorkbook 工作簿 Th 阅读全文
posted @ 2023-11-19 17:53 paoPaoLong_liu 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 获取非当前工作表名称并选择其中B2:B11区域 1 Sub Sheet3_按钮1_Click() 2 Dim sh As Worksheet, n%, i%, arr, s 3 n = ThisWorkbook.Sheets.Count '取得工作表总数' 4 ReDim arr(1 To n) '声明变量' 5 For Each sh In T 阅读全文
posted @ 2023-11-19 17:45 paoPaoLong_liu 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 请同学们按照要求输入文字! 阅读全文
posted @ 2023-09-12 15:08 paoPaoLong_liu 阅读(3) 评论(2) 推荐(0) 编辑
摘要: 一个简单的应用MVC思想的php程序 <?php //controller.php 控制器程序 require_once("model.class.php"); $type = isset($_GET['type'])?$_GET['type']:3; $modelObj = new DateTime2(); switch($type) 阅读全文
posted @ 2023-05-22 16:11 paoPaoLong_liu 阅读(5) 评论(0) 推荐(0) 编辑
摘要: <{section name=i loop=$arr start=5 step=2 max=6}> <{$arr[i]}>, <{/section}> 阅读全文
posted @ 2023-05-04 22:25 paoPaoLong_liu 阅读(6) 评论(0) 推荐(0) 编辑
摘要: <h2>当兵年龄判断</h2> <{if $smarty.get.age ge 18 and $smarty.get.age le 23}> <font color="blue">你符合当兵的年龄要求!</font> <{else}> <font color="red">年龄不合要求</font> 阅读全文
posted @ 2023-05-04 22:16 paoPaoLong_liu 阅读(3) 评论(0) 推荐(0) 编辑
摘要: MVC原理简介 阅读全文
posted @ 2023-05-03 23:12 paoPaoLong_liu 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ......<table border="1"> <{section name=i loop=$arrs}> <tr> <{section name=j loop=$arrs[i]}> <td><{$arrs[i][j]}></td> <{/section}> </tr> <{/section}> 阅读全文
posted @ 2023-05-03 21:46 paoPaoLong_liu 阅读(11) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页