1 2 3 4 5 ··· 12 下一页
摘要: function mainMenu { $mainMenu = 'X' while($mainMenu -ne ''){ Clear-Host Write-Host "`n`t`t My Script`n" Write-Host -ForegroundColor Cyan "Main Menu" W 阅读全文
posted @ 2025-08-06 15:38 tec2019 阅读(8) 评论(0) 推荐(0)
摘要: $Url = "https://www.bing.com" $IE = New-Object -com internetexplorer.application; $IE.visible = $true; $IE.navigate($url) 阅读全文
posted @ 2025-08-06 15:16 tec2019 阅读(8) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2025-07-30 11:09 tec2019 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2025-07-30 10:22 tec2019 阅读(0) 评论(0) 推荐(0)
摘要: Step 1 官网下载sqlite3.dll与宏文件放到同一个目录。 Step 2 新建一个xlsm的宏文件,通过API的方式调用dll 文件。 ' 需要先声明API函数 Private Declare Function sqlite3_open Lib "sqlite3.dll" (ByVal f 阅读全文
posted @ 2025-04-08 13:34 tec2019 阅读(269) 评论(0) 推荐(0)
摘要: #格式化时间 def datetimeformat(value,fmt="%Y-%m-%d %H:%M"): return strftime(fmt) app =Flask(__name__) app.jinja_env.filters['datetimeformat'] = datetimefor 阅读全文
posted @ 2024-11-07 20:08 tec2019 阅读(25) 评论(0) 推荐(0)
摘要: Option Explicit Private Declare Sub MoveMemory Lib "kernel32" Alias "RtlMoveMemory" _ (Destination As Long, Source As Long, ByVal Length As Long) Priv 阅读全文
posted @ 2024-10-24 11:00 tec2019 阅读(82) 评论(0) 推荐(0)
摘要: Declare PtrSafe Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _ (ByVal hwnd As Long, ByVal lpszOp As String, _ ByVal lpszFile As Strin 阅读全文
posted @ 2024-10-23 09:29 tec2019 阅读(134) 评论(0) 推荐(0)
摘要: Sub createFolder() Dim wks As Worksheet On Error Resume Next Set wks = ThisWorkbook.Worksheets(1) basepath = ThisWorkbook.Path & "\" Max = wks.Range(" 阅读全文
posted @ 2024-10-23 09:12 tec2019 阅读(29) 评论(0) 推荐(0)
摘要: app.py @app.route('/register', methods=['GET', 'POST']) def register(): if request.method == 'POST': username = request.form['username'] password = re 阅读全文
posted @ 2024-10-18 10:44 tec2019 阅读(34) 评论(0) 推荐(0)
1 2 3 4 5 ··· 12 下一页