上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: using System; using System.Collections.Generic; using System.Data; using System.Data.OleDb; using System.IO; using System.Linq; using System.Web; usin 阅读全文
posted @ 2019-12-07 22:45 零一の世界 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 一、基础 1、说明:创建数据库 CREATE DATABASE database-name 2、说明:删除数据库 drop database 数据库名 3、说明:备份sql server 创建 备份数据的 device USE master EXEC sp_addumpdevice 'disk',  阅读全文
posted @ 2019-12-07 22:43 零一の世界 阅读(37) 评论(0) 推荐(0) 编辑
摘要: //主窗体 public partial class Form1: Form { public delegate void RefreshList(); //添加方法 private void btn_Add_Click(object sender, EventArgs e) { FormAdd a 阅读全文
posted @ 2019-12-07 22:42 零一の世界 阅读(32) 评论(0) 推荐(0) 编辑
摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %> <!DOCTYPE html> <html xmlns="http:/ 阅读全文
posted @ 2019-12-07 22:40 零一の世界 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 在异常设置中,在“Managed Debugging Assistants”栏下,将LoaderLock 前的勾去掉。 重新运行即可。 阅读全文
posted @ 2019-12-07 22:39 零一の世界 阅读(40) 评论(0) 推荐(0) 编辑
摘要: SQL SERVER逆向工程将数据库导入PowerDesigner PD是一款不错的数据库设计工具,我们在项目开发的时候直接采用正向工程,将PD设计的数据库直接导入SQLServer中即可创建数据库及表结构,随着项目的开发,我们对表结构及表数量等进行了更改,为了保证数据库与PD图的一致性,这里我们采 阅读全文
posted @ 2019-12-07 22:38 零一の世界 阅读(49) 评论(0) 推荐(0) 编辑
摘要: .NET导出Excel遇到的80070005错误的解决方法: 检索 COM 类工厂中 CLSID 为 {00024500-0000-0000-C000-000000000046}的组件时失败,原因是出现以下错误: 80070005基本上.net导出exc... 阅读全文
posted @ 2019-12-07 22:35 零一の世界 阅读(53) 评论(0) 推荐(0) 编辑
摘要: MIME类型对应表: 常用MIME类型: 扩展名 MIME类型 .iso ISO File .rar application/x-rar-compressed .zip application/zip 其它Mime类型: 文件后缀 MIME类型 .3gp video/3gpp .aab applic 阅读全文
posted @ 2019-12-07 22:34 零一の世界 阅读(96) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2019-12-07 22:32 零一の世界 阅读(38) 评论(0) 推荐(0) 编辑
摘要: //获取当前进程的完整路径,包含文件名(进程名)。 string str = this.GetType().Assembly.Location; result: X:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名) //获取新的 Process 组件并将其与当前活动的进程 阅读全文
posted @ 2019-12-07 22:32 零一の世界 阅读(15) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页