create table #tb1
(
C_ID int,
C_NumNo int
)
insert into #tb1
select 1,20
union all
select 3,-3
union all
select 2,-8
u . . . 本文を読む
using System.Runtime.InteropServices;
2 // 型定義
3 public const int LF_FACESIZE = 32;
4 [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
5 public struct LOGFONT
6 {
7 . . . 本文を読む
using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Text;
public class myTextBox : System.Windows.Forms.TextBox
{
public delegate void ImeCompositionEvent . . . 本文を読む
// ------- 一例 -------
private void button1_Click(object sender, EventArgs e)
{
for (int i = 0; i <5; i++) . . . 本文を読む
[C#]
System.Diagnostics.ProcessStartInfo psi =
new System.Diagnostics.ProcessStartInfo();
//ComSpecのパスを取得する
psi.FileName = System.Environment.GetEnvironmentVariable("ComSpec");
//出力を読み取れるようにする
p . . . 本文を読む
download:
http://sourceforge.net/project/showfiles.php?group_id=10749
DOC:
http://www.atmarkit.co.jp/fdotnet/tools/nunit2/nunit2_01.html . . . 本文を読む