上一页 1 2 3 4 5 6 7 ··· 28 下一页
摘要: 试卷内容 1. 计算机基础知识 10% 2. win7操作系统 4% 3. word 2010 4% 4. excel 2010 4% 5. power point 2010 3% 6. visual fox pro 程序设计 29% 7. visual basic 程序设计 29% 9. 计算机网 阅读全文
posted @ 2023-11-13 17:30 lambertlt 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 数组与记录 前面介绍的都是属于基本数据类型(字符串、整形、实型等)的数据,可以通过简单变量名来访问它们的元素。VB除基本数据类型外,还提供了复合型数据类型。复合型数据类型是按照一定规则组成的元素类型的数据。元素类型又称基类型,他可以是简单数据类型,也可以是复合数据类型。对于符合数据类型来说,不能用一 阅读全文
posted @ 2023-11-08 15:36 lambertlt 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 下载地址 阅读全文
posted @ 2023-11-07 16:15 lambertlt 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 1 hello world #include <QtCore/QCoreApplication> // 包含一个应用程序类的头文件 #include <QDebug> //maian程序入口 argc命令行变量的数量 argv命令行变量的数组 int main(int argc, char *arg 阅读全文
posted @ 2023-10-19 00:03 lambertlt 阅读(8) 评论(0) 推荐(0) 编辑
摘要: document.querySelectorAll("a").forEach(e=>{ e.onclick=(()=>false) }) let img = document.createElement('img') let input = document.querySelector('#inpu 阅读全文
posted @ 2023-09-16 09:28 lambertlt 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 往 `.bash_profile` 加入此配置 `echo 'alias python="python3"' >> .bash_profile` 调用 `source ~/.bash_profile` 生效配置 打开 `open .zshrc` 添加 `source ~/.bash_profile` 阅读全文
posted @ 2023-08-09 11:59 lambertlt 阅读(43) 评论(0) 推荐(0) 编辑
摘要: # 启动银河麒麟内的产品 1. 修改服务配置项 ``` 配置服务支持jsp热部署。 修改ApacheJetspeed\conf\web.xml,搜到此行,修改development的值为true。 development true 修改远程调用java代码端口: -Xdebug -Xrunjdwp: 阅读全文
posted @ 2023-07-27 11:01 lambertlt 阅读(56) 评论(0) 推荐(0) 编辑
摘要: ```conf #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx 阅读全文
posted @ 2023-06-15 17:57 lambertlt 阅读(423) 评论(0) 推荐(0) 编辑
摘要: `schtasks /create /tn shut /tr "shutdown -s -f" /sc once /st 18:02 /sd 2023/06/07` 成功: 成功创建计划任务 "shut" `schtasks /delete /tn "shut"` 警告: 确实要删除任务 "shut 阅读全文
posted @ 2023-06-07 16:35 lambertlt 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 修改主类,参照以下格式 `EducationErverApplication.class` ```java @SpringBootApplication // war 包启动类 public class EducationErverApplication extends SpringBootServ 阅读全文
posted @ 2023-06-05 14:01 lambertlt 阅读(19) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 28 下一页