上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: 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 阅读(39) 评论(0) 推荐(0)
摘要: page.html <!--这个是分页展示下面的页码--> {%macro my_paginate(pagination,url)%} <nav> <ul class="pagination"> {%if pagination.has_prev%} <li class="page-item acti 阅读全文
posted @ 2024-10-10 16:20 tec2019 阅读(44) 评论(0) 推荐(0)
摘要: database.py from flask_sqlalchemy import SQLAlchemy db = SQLAlchemy() config.py import os from database import db from flask import Flask basedir=os.p 阅读全文
posted @ 2024-10-09 13:06 tec2019 阅读(94) 评论(0) 推荐(0)
摘要: SELECT DISTINCT 成绩表.分数 FROM 成绩表 WITH OWNERACCESS OPTION; 阅读全文
posted @ 2024-05-31 15:45 tec2019 阅读(22) 评论(0) 推荐(0)
摘要: 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 @ 2024-02-23 15:48 tec2019 阅读(34) 评论(0) 推荐(0)
摘要: 虽然IE已经过时,微软已经不再支持IE,已经全面切换到了Edge,尽管edge人有ie兼容模式但是一些老的web应用仍然状况频出,但是IE 已经不能直接打开了。 于是只能周曲线了,可以通过powershell脚本来运行IE,具体如下。 $Url = "https://127.0.0.1/defaul 阅读全文
posted @ 2024-02-23 15:04 tec2019 阅读(128) 评论(0) 推荐(0)
摘要: uname = "$env:USERPROFILE" $uname=$uname.Substring($uname.length -8) $checkpath = test-path \\xx.xx.xxx.xxx\xx\xx\*.lnk if($checkpath -eq "True"){ cop 阅读全文
posted @ 2024-02-23 14:13 tec2019 阅读(39) 评论(0) 推荐(0)
摘要: 应用工具引用:Microsoft Outlook 16.0 Object Library ‘根据outlook版本选择 或 Set Mail = CreateObject("Outlook.Application") Sub SendEmail() Dim Mail As Outlook.Appli 阅读全文
posted @ 2023-10-10 11:10 tec2019 阅读(331) 评论(0) 推荐(0)
摘要: Sub createFolder() Dim wks As Worksheet On Error Resume Next Set wks = ThisWorkbook.Worksheets(1) basepath = ThisWorkbook.Path & "\" Max = wks.Range(" 阅读全文
posted @ 2023-09-11 16:08 tec2019 阅读(152) 评论(0) 推荐(0)
摘要: Private Sub CommandButton2_Click() Dim c For Each c In UserForm2.Controls If TypeName(c) = "TextBox" Then c.Text = "" Next End Sub 资料来源https://zhidao. 阅读全文
posted @ 2023-08-18 14:41 tec2019 阅读(186) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 12 下一页