摘要: using System;using System.Collections.Generic;using System.Configuration;using System.Data;using System.Data.SqlClient;using System.Linq;using System. 阅读全文
posted @ 2020-12-13 23:42 za88403620 阅读(77) 评论(0) 推荐(0)
摘要: static void Main() { DevExpress.Skins.SkinManager.EnableFormSkins(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(f 阅读全文
posted @ 2020-12-13 16:46 za88403620 阅读(285) 评论(0) 推荐(0)
摘要: public partial class MaterialsForm : Form { DataTable dtMaterial = new DataTable(); DataTable dtMaterialBill = new DataTable(); public MaterialsForm() 阅读全文
posted @ 2020-12-13 10:17 za88403620 阅读(75) 评论(0) 推荐(0)
摘要: public class TreeListUtil { private static Image[] imgs = null; private static int pos = 0; /// 为树控件设置数据源 /// </summary> /// <param name="treeList">树控 阅读全文
posted @ 2020-12-13 10:14 za88403620 阅读(223) 评论(0) 推荐(0)
摘要: 1、设置所有窗体样式 ///主程序 static void Main() { DevExpress.Skins.SkinManager.EnableFormSkins(); Application.EnableVisualStyles(); Application.SetCompatibleText 阅读全文
posted @ 2020-12-13 10:09 za88403620 阅读(264) 评论(0) 推荐(0)
摘要: Sqlserver 游标简单示例 --创建一个游标declare my_cursor cursor for --my_cursor为游标的名称,随便起select id,name from my_user --这是游标my_cursor的值,这里随便发挥看业务场景--打开游标open my_curs 阅读全文
posted @ 2020-10-10 11:31 za88403620 阅读(325) 评论(0) 推荐(0)