摘要: 1.首先下载Crystal Reports13对于Visual Studio 2015支持的2个文件。 CRforVS_13_0_17 CRforVS_redist_install_64bit_13_0_17 如果你使用的是其它版本的Visual Studio,请查看官方给出的文档,下载相应的版本, 阅读全文
posted @ 2024-03-04 14:19 林新i 阅读(102) 评论(0) 推荐(0) 编辑
摘要: USE [master];GO RESTORE FILELISTONLY FROM DISK = 'E:\SqlServer\最新数据库\GLASS_2024-03-02.bak' --查询bak备份信息 --关闭链接ALTER DATABASE [GLASS] SET OFFLINE WITH R 阅读全文
posted @ 2024-03-02 11:16 林新i 阅读(7) 评论(0) 推荐(0) 编辑
摘要: using DBHelper;using Sunny.UI;using System;using System.Collections.Generic;using System.Data;using System.Data.SqlClient;using System.Windows.Forms;u 阅读全文
posted @ 2024-01-30 08:47 林新i 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、直接点出来,例如 this.BackColor = Color.White; //白色 this.BackColor = Color.Black; //黑色 2、使用16进制格式 this.BackColor = Color.FromName("#FFFFFF"); //白色 this.Back 阅读全文
posted @ 2023-12-19 11:13 林新i 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Win10专业版激活密钥: W269N-WFGWX-YVC9B-4J6C9-T83GX MH37W-N47XK-V7XM9-C7227-GCQG9 2X7P3-NGJTH-Q9TJF-8XDP9-T83GT J2WWN-Q4338-3GFW9-BWQVK-MG9TT NBQWQ-W9PTV-B4YW 阅读全文
posted @ 2023-11-21 11:34 林新i 阅读(1170) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks; namespace MyMES{ publi 阅读全文
posted @ 2023-11-06 14:55 林新i 阅读(12) 评论(0) 推荐(0) 编辑
摘要: //取单元格数据三种方法 this.dataGridView1[e.ColumnIndex, e.RowIndex].Value.ToString();//第一种取法 this.dataGridView1.Rows[e.RowIndex].Cells["你所要取值的列名称"].Value.ToStr 阅读全文
posted @ 2023-11-04 15:58 林新i 阅读(640) 评论(0) 推荐(0) 编辑
摘要: this.pictureBox1.Image.RotateFlip(RotateFlipType.Rotate90FlipNone); this.pictureBox1.Refresh();逆时针旋转图片 this.pictureBox1.Image.RotateFlip(RotateFlipTyp 阅读全文
posted @ 2023-11-01 11:19 林新i 阅读(22) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u 阅读全文
posted @ 2023-09-04 18:31 林新i 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 存储过程 -“为过程或函数指定了过多的参数”的错误 在存储过程的具体执行过程中报错“为过程或函数指定了过多的参数”的错误。 仔细比较程序中的存储过程与数据库中的定义,发现两者并未出现差别。 在解决问题百度的过程中,发现出现这个错误还可能是以下几种情况: 1、存储过程命名以 sp 开头 如果以 sp 阅读全文
posted @ 2023-05-13 13:58 林新i 阅读(95) 评论(0) 推荐(0) 编辑