10 2024 档案

摘要: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 阅读(98) 评论(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 阅读(154) 评论(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 阅读(35) 评论(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 阅读(41) 评论(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 阅读(46) 评论(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 阅读(96) 评论(0) 推荐(0)