strings-a$AU_TOP/forms/US/GLXFCRVL.fmb|grep'$Header'比如strings -a /u02/CRP2/apps/apps_st/appl/ap/12.0.0/patch/115/sql/apcnfrmb.pls |grep '$Header'strin...
分类:
数据库 时间:
2014-11-04 19:16:46
阅读次数:
176
这个问题虽然不是很严重,但却困扰本人许久。曾经多方询问朋友、查阅资料均无法达到效果。今日偶然查到一些东西,经实测的却可行,也算了却了一桩心愿。不再废话直接贴DEMO代码 1 unit Unit2; 2 3 interface 4 5 uses 6 Vcl.Dialogs, Vcl.Forms...
分类:
其他好文 时间:
2014-11-04 14:57:33
阅读次数:
188
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Interop;
using Microsoft.Office.Interop.Excel;
using System.Windows.Forms;
using Excel = Mi...
C#在DCP中运行的方法:1、转到相应的目录cd d:\12、输入csc /target:exe 2.cs或者csc /t:exe 2.cs或者csc 2.cs在里边引用外部程序集的方法:csc /r:System.Windows.Forms.dll 2.cs引用多个外部程序集则: csc /r:S...
using System;using System.Collections.Generic;using System.Drawing;using System.Drawing.Drawing2D;using System.Linq;using System.Windows.Forms;namespa...
分类:
其他好文 时间:
2014-10-31 06:21:10
阅读次数:
259
xaml.cs文件:using System;using System.Timers;using System.Windows;using System.Windows.Forms;namespace ControlUsed{ public partial class MainWind...
Windows Forms是由Win32 API封装的开发组件,最初是为了替代mfc,但却没有体现与Model View Controller架构对应的特色,进而在.net framework 3.0中推出了wpf,富控件数据显示方面,利用模板功能轻松实现。在winform下要想自定义一些用户控件,...
using System; using System.Collections.Generic; using System.Windows.Forms; using System.IO; namespace GobalException { static class Program { /// ...
clojure的let参数分解,文档描述的很清楚。比如它举的例子 (let?[[a?b?c?&?d?:as?e]?[1?2?3?4?5?6?7]]
??[a?b?c?d?e])
?
->[1?2?3?(4?5?6?7)?[1?2?3?4?5?6?7]] 这个let,使用其...
分类:
其他好文 时间:
2014-10-25 16:01:44
阅读次数:
183
实现方法分为两大类:窗体事件和控件事件,下面就一一展示: 一、FormClosing事件(又分以下几种方法) a.Private Sub frmPractise_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.F...
分类:
Web程序 时间:
2014-10-24 18:40:28
阅读次数:
202