月別アーカイブ: 2015年10月

.NET フォームの初期表示位置を設定、変更する

// フォームの Location プロパティによって決定されます (初期値)
cForm1.StartPosition = FormStartPosition.Manual;

// 画面の中央に表示されます
cForm1.StartPosition = FormStartPosition.CenterScreen;

// Windows の規定位置に表示されます
cForm1.StartPosition = FormStartPosition.WindowsDefaultLocation;

// Windows の規定位置に表示され、サイズも規定のサイズに変更されます
cForm1.StartPosition = FormStartPosition.WindowsDefaultBounds;

// 親フォームの中央に表示されます
cForm1.StartPosition = FormStartPosition.CenterParent;

文字列に改行、タブ文字などの定数を挿入する

VB.NET

Dim s As String

‘キャリッジリターン文字とラインフィード文字
s = vbCrLf
s = ControlChars.CrLf

‘キャリッジリターン文字
s = vbCr
s = ControlChars.Cr

‘ラインフィード文字
s = vbLf
s = ControlChars.Lf

‘改行文字(WindowsではvbCrLfと同じ)
s = vbNewLine
s = ControlChars.NewLine

‘値0を持つ文字
s = vbNullChar
s = ControlChars.NullChar

‘タブ文字
s = vbTab
s = ControlChars.Tab

‘バックスペース文字
s = vbBack
s = ControlChars.Back

C#の場合


C#

string s;

//キャリッジリターン文字とラインフィード文字
s = “\r\n”;

//キャリッジリターン文字
s = “\r”;
//ラインフィード文字
s = “\n”;

//値0を持つ文字
s = “\0”;

//タブ文字
s = “\t”;

//バックスペース文字
s = “\b”;

データベース接続での、接続プールとその接続文字列

Max Pool Size 100 プール内の最大接続数。
Min Pool Size 1 プール内の最小接続数。

static void Main()
{
OracleConnection con = new OracleConnection();
//Open a connection using ConnectionString attributes
//related to connection pooling.
con.ConnectionString =
“User Id=scott;Password=tiger;Data Source=oracle;” +
“Min Pool Size=10;Connection Lifetime=120;Connection Timeout=60;” +
“Incr Pool Size=5; Decr Pool Size=2”;
con.Open();
Console.WriteLine(“Connection pool successfully created”);
// Close and Dispose OracleConnection object
con.Close();
con.Dispose();
Console.WriteLine(“Connection is placed back into the pool.”);
}