摘要:
自动换行 dataGridView1.DefaultCellStyle.WrapMode = DataGridViewTriState.True; 因为内容高度造成内容看不全的情况,可以设置: dataGridView1.AutoResizeColumns(); dataGridView1.Auto 阅读全文
摘要:
UPDATE DEMO_T1 t1 SET (字段一,字段二,...) = (select 字段一,字段二,... from DEMO_T2 T2 where T2.FNAME = T1.FNAME) WHERE EXISTS(SELECT 1 FROM DEMO_T2 T2 WHERE T2.FN 阅读全文
摘要:
Text = Assembly.GetExecutingAssembly().GetName().Name + "【V" + Application.ProductVersion.ToString() + "】"; 阅读全文
摘要:
HttpUtility 类包含用于 HTML 编码字符串的编码和解码实用工具方法。 string res = WebUtility.HtmlDecode(string); string res = WebUtility.HtmlEncode(string); 阅读全文
摘要:
要在webservice的web.config文件中的 <system.web> 节点下加入: < webServices > < protocols > < add name = " HttpPost " /> < add name = " HttpGet " /> </ protocols > 阅读全文
摘要:
Oracle 字符串转表 阅读全文
摘要:
zltools.f_list2str(cast(collect(成本价) as t_strlist)) 阅读全文
摘要:
例子,对C盘根目录的RestSharp.dll进行签名,签名后文件为 RestSharp1.dll 第一步:用管理员 打开VS 开发人员命令提示 第二步:创建一个新的随机密钥对:sn -k RestSharp.snk 第三步:将DLL文件解开 ildasm C:\RestSharp.dll /out 阅读全文
摘要:
Select Column_Value As ID From Table(Strsplit('132827,132826')) 阅读全文
摘要:
private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.RowIndex >= 0 && e.ColumnIndex >= 0 && e.Value.ToS 阅读全文