
.NET
chenaaron
a simple programmer
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
VB.NET Connect Oracle
Prerequisites: Install oracle9/10g Client. configure the TNSNAME.ora Connect oracle database case by OracleConnection: Private Sub BtnOracle_Click(ByVal sender As System.Object, ByVal e As System.E...2007-08-16 22:05:59 · 237 阅读 · 0 评论 -
vb.net
[code="java"]Private Sub TextBox1_KeyPress(Byval sender As System.Object, Byval e As System.Windows.Forms.KeyPressEventArgs)Handles textBox1.KeyPress If Char.IsNumber(e.KeyChar) O...原创 2008-07-21 10:42:06 · 151 阅读 · 0 评论 -
VB.NET Operate Excel
Private Sub DataTransferExcel(ByVal tempDataTable As DataTable, ByVal strSaveFilePath As String) Dim xlApp As Excel.Application D...2007-11-20 20:25:18 · 152 阅读 · 0 评论 -
VS2008 Windows service
Study the VS2008 recently, find that it's easy to create the windows service by vs2008, and list the steps as below. 1.create a console project, and change the program.cs file to below also need add...原创 2009-03-18 19:22:10 · 154 阅读 · 0 评论 -
VB.NET(2003) SQL Parameter
Private Function QueryOrder(ByVal strOrder As String, ByVal oleCon As OleDb.OleDbConnection) As Boolean Dim ds As DataSet Dim dataCount As Integer Dim da As OleDb.OleDbData...原创 2008-10-22 21:32:29 · 556 阅读 · 0 评论 -
.NET MDI(only one form)
1.Show method. int index = Opened(this, "FrmMytest"); if (index == -1) { FrmMytest frmMytest = new FrmMytest(); frmMytest.MdiParent = this; ...2008-12-15 11:14:42 · 150 阅读 · 0 评论 -
Receiving Program
1.Receive batch from WIP to inventory. 2.Synch inventory data amongst different system,such as Oracle MFG,Reflection and MES. 3.Web version, simple functions.2009-06-18 21:44:56 · 126 阅读 · 0 评论 -
Jenkins-CI
Jenkins for java and .net CI.原创 2012-06-30 08:26:11 · 182 阅读 · 0 评论 -
RESTful
要使API易用、易于接受和足够灵活,应该遵循以下原则: An API is a user interface for a developer - so put some effort into making it pleasant Use RESTful URLs and actions Use SSL everywhere, no exceptions An API is only ...原创 2013-10-28 22:28:54 · 247 阅读 · 0 评论