上一页 1 ··· 30 31 32 33 34
  2009年4月21日
摘要: using System;using System.Text;using System.Security.Cryptography;using System.IO;public class Encrypt{ //默认密钥向量 private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF ... 阅读全文
posted @ 2009-04-21 20:40 WPF之家 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 首先我们创建一个名为GetAllCustomers()的方法,代码如下:[SqlProcedure]public static void GetAllCustomers(){SqlConnection cnn = new SqlConnection("context connection=true");cnn.Open();SqlCommand cmd = new Sql... 阅读全文
posted @ 2009-04-21 20:37 WPF之家 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 比较简单的做法,增加一个子节点提示.然后开线程请求真实的子节点,完毕后替换提示节点。 代码如下using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System... 阅读全文
posted @ 2009-04-21 20:25 WPF之家 阅读(623) 评论(0) 推荐(0) 编辑
摘要: Windows 系统调用.COM.微软语言引擎简单应用(C#) 本文主要讲述,如何调用微软的语言引擎...应用场景 如看图识字软件等等....(我可不是作语言软件的、这个子是做着玩的)涉及技术 动态调用Com对象(全反射、没有引用com ocx) 取得系统存在的各种语言引擎 使用引擎进行朗读 使用引擎进行保存声音程序图列: 主要功能描述 实列变量等,构造函授等 ... 阅读全文
posted @ 2009-04-21 20:21 WPF之家 阅读(1050) 评论(0) 推荐(1) 编辑
摘要: B2B的集成用Web service集成应用程序,可以使你公司内部的商务处理更加自动化。但当交易跨越了你的供应商和客户,突破了公司的界线时又会怎么样呢?跨公司的商务交易集成通常叫做B2B集成。Web service是B2B集成成功的关键。通过Web service,你的公司可以把关键的商务应用暴露给指定的供应商和客户。例如,把你的电子下单系统和电子发票系统暴露出来,你的客户就可以以电子的方式向你发... 阅读全文
posted @ 2009-04-21 20:19 WPF之家 阅读(223) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Windows.Forms;namespace educationWindows.commonCode{ public class treeMethod { /// /// 从数据库查询添加新的... 阅读全文
posted @ 2009-04-21 20:17 WPF之家 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 开始还想去看那个递归的算法呢 基本没看懂...不知道怎么结束递归的...自己想也没想通.. 然后看看实际问题..反正我们是个小树,只有右孩子 于是就用非递归了... 经过这次折腾后 对SqlDataAdapter和SqlCommand有了更深的了解 先说下TreeView绑定的数据库的结构 ZD_权限(权限名,权限编号,上级权限,权限URL) 权限分配(用户名,权限编号) ... 阅读全文
posted @ 2009-04-21 20:11 WPF之家 阅读(220) 评论(0) 推荐(0) 编辑
摘要: protected void ASPxGridView1_Init(object sender, EventArgs e) { GridViewDataHyperLinkColumn colLink = new GridViewDataHyperLinkColumn(); colLink.Caption = " "; colL... 阅读全文
posted @ 2009-04-21 20:04 WPF之家 阅读(219) 评论(0) 推荐(0) 编辑
摘要: /// /// 树行绑定 /// /// /// protected void treeviewProductDataBind() { //根节点 DataTable dtCategories = objDs.GetData(); int categoriesLen = dtCategor... 阅读全文
posted @ 2009-04-21 19:59 WPF之家 阅读(146) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34