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

□ マニュアル作成用 HTML

ここから↓

■Script.aculo.us

Script.aculo.usを使おう! http://codezine.jp/article/detail/3495

■SQL 2005 Server スタンドアロン の名前変更をするには?

http://msdn.microsoft.com/ja-jp/library/ms143799(SQL.90).aspxsp_dropserver GO sp_addserver , local GO

■EXCEL で自動的にオブジェクトをコネクトするサンプル

http://okwave.jp/qa4251853.html Option ExplicitSub prep() 'テストシート作成 With Sheets.Add .Rectangles.Add(100, 100, 100, 10).OnAction = "try" .Rectangles.Add(300, 100, 100, 10).OnAction = "try" End With End SubSub try() Static x As Strin…

エクセルショートカット

http://www2.odn.ne.jp/excel/xlshortcut.html数式は Ctrl+Shift+@

WSH readings

http://scripting.cocolog-nifty.com/blog/2009/03/wshwsh-b195.html■VB中学校 なかなか http://homepage1.nifty.com/rucio/main/main.htm

■VMware Player & Ubuntu 8.04 Japanese

VMware Player情でUbuntuを動作させ、 閉じるときのSuspendモードが効かないとメッセージがでるが これは、VMwareの設定で回避できる。端末を起動し、sudo toolboxScriptsの部分のScript Event(4つくらいあるが) それぞれ、Use Scriptのチェックをはずし、…

■Becky! でフォルダをクリッカブルにする

Becky!ver2では、URLやメールアドレスはクリッカブル機能がついて いるがフォルダは直接できない。file://は使えるので例1: file://c:\program files →これはスペースがあるためNG c:\programがクリッカブルになる 例2: file://\\hostname\日本語 →マル…

■一発でApache+PHP+MySQLインストール

http://gigazine.net/index.php?/news/comments/20080324_vertrigoserv/ダウンロードはここ↓ http://vertrigo.sourceforge.net/

■EXCEL表の縦列を3列づつ色わけする

Sub tate_iro() SelCol = Selection.Column For Col = 1 To 7 '7セット分 '選択セル列+2列を選択する Range(Columns(SelCol), Columns(SelCol + 2)).Select If Col Mod 2 = 1 Then With Selection.Interior .ColorIndex = 34 '薄い水色 .Pattern = xlSolid…

■正規表現 emeditor (挑戦中)

HTML内のxxx@cc.co.jpの、メールアドレス部分だけを抜く(?※肯定後読みタグのみ抜く (]*>)

SQL Server 2005 Express Edition にAccessからアクセス

MS SQL 2005 Expressをインストール手順 1.Windows installer 3.1をインストール 2..NET 2のインストール 3.SQL Server 2005 Express Editionを通常のままインストール 4.SQL Server 2005 Management Studioをインストール(データ管理するため)Acce…

■PHPでDB接続 DSN編

PHP PHP TEST '); if ($dbh == null){ print('接続に失敗しました。'); }else{ print('接続に成功しました。'); } $dbh->query('SET NAMES sjis'); $sql = 'select id, name from shouhin'; $stmt = $dbh->query($sql); while($result = $stmt->fetch(PDO::F…

■MySQL charset cp932

MySQL コマンドプロンプトではしご高など表示 C:\>mysql -u tkc -p Enter password: *** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 51 Server version: 5.0.51a-community-nt MySQL Community Edition (GPL)Ty…