いろいろ試行錯誤

調べものしたときの覚書きや、仕事でコーディングした時のメモ などなど…

2013-01-01から1ヶ月間の記事一覧

SPREAD for ASP.NET で AjaxControlToolkit のバージョン違いでエラー

FarPoint.Web.Spread の Version=5.0.3523.2008 を使って開発しています。 で、下記のようにあるセルの入力にマスクを使おうとしたら、 Dim rgCellType As New FarPoint.Web.Spread.Extender.MaskedEditCellType() rgCellType.Editor.BorderWidth = 0 rgCell…

SPREAD for ASP.NET で キーマップを設定

FarPoint.Web.Spread.FpSpread のキー制御 ○[→]/[Tab]キー:右セルへ移動(最終列まで) ○[←]キー:左セルへ移動(先頭列まで) ○[Ctrl]+[C]キー:アクティブセル(行全体でない)の内容をコピー

ComboBox で suggest (検索候補予測)

ASPX、CSS部分 検索ボタンイメージ 参考)ComboBox Sample

SPREAD for ASP.NET で 選択行を着色

BitNami Stacks 一覧

BitNami が提供するソフトウェアの一覧 https://docs.google.com/spreadsheet/pub?key=0AvT_ZI6SXSADdFRCSU9pRk1LSE1QUmxleWNydkx0SkE&single=true&gid=0&output=html 元データ:BitNami Stacks

テキストファイルから重複行+NGワード削除≪Hashtable編≫

try { StreamReader sr = null; string s; Hashtable ngHash = new Hashtable(); //NGデータのHashtable作成 try { sr = new StreamReader(@"C:\temp\ngdata.txt", Encoding.GetEncoding(932)); while ((s = sr.ReadLine()) != null) { ngHash[s] = true; } …

テキストファイルから重複行削除≪OLEDB編≫

using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.OleDb; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { OleDbConnection con = new OleDbConnection("Pro…