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

拡張子の関連付けでファイルを開く関数

VBA

http://www.penhagi.net/access/tips/63_api.htm

データベースの最適化

VBA

Public Function DBOptimize() 'データベースの最適化ショートカット。 SendKeys "%T*D*C" End Function

ファイル/フォルダ選択ダイアログ、ファイルサーチの例

VBA

ファイル選択ダイアログ Private Sub ctlBtn_Click() Dim fd As FileDialog Set fd = Application.FileDialog(msoFileDialogFilePicker) With fd .Title = "ファイル選択" .AllowMultiSelect = False .Filters.Clear .Filters.Add "エクセルファイル", "*.xl…

定型文 Ver.0.02 -- 複数行対応の定型文挿入 Xe罫線32 // 時系列の時間を初期化(XX:XX)する // 時系列をコピーして使うときに、古い時間のまま使ってしまうのを防ぎます replaceall "^.[0-9]*:[0-9]*[ ]" , "XX:XX " , regular, nocasesense; if( ! result )…

EGO-WRAPPIN’

merry merryアーティスト: EGO-WRAPPIN’出版社/メーカー: トイズファクトリー発売日: 2004/09/08メディア: CD購入: 1人 クリック: 15回この商品を含むブログ (113件) を見る

AbsoluteBSD

Absolute BSD FreeBSD システム管理とチューニング FreeBSD4.x/5.x対応 Mycom UNIX books作者: Michael Lucas,佐藤広生出版社/メーカー: 毎日コミュニケーションズ発売日: 2004/09メディア: 単行本購入: 1人 クリック: 58回この商品を含むブログ (16件) を見…

Firefox prefs.js

# Mozilla User Preferences /* Do not edit this file. * * If you make changes to this file while the browser is running, * the changes will be overwritten when the browser exits. * * To make a manual change to preferences, you can visit the…

Firefox user.js

user_pref("browser.cache.memory.capacity", 65536); user_pref("browser.cache.disk_cache_ssl", true); user_pref("browser.xul.error_pages.enabled", true); user_pref("content.interrupt.parsing", true); user_pref("content.max.tokenizing.time", …

Firefox userContent.css

/* Change cursor for links that open in new window */ :link[target="_blank"], :visited[target="_blank"], :link[target="_new"], :visited[target="_new"] { cursor: crosshair; } /* frames resiz OK */ user_pref("layout.frames.force_resizability…

Firefox userChrome.css

/* Place the sidebar on the right edge of the window */ window > hbox { direction:rtl; } window > hbox > * { direction:ltr; } /* Make the Search box flex wider */ #search-container { -moz-box-flex: 200 !important; } #searchbar { -moz-box-f…

Firefox 拡張

名称説明 Autohide全画面表示 Tabbrowser Extentionsタブ Toolbar Enhancementsツールバーを縦にも配置できる Compact Menuメニューをひとつのボタンにまとめる ChromEditChromを編集 translation翻訳

Accessテーブル関連

VBA

'------------------------------------------------------------------------' ' ' "_インポート エラー*"テーブルを全て削除 ' '------------------------------------------------------------------------' Public Function DeleteInportErrTbl() Dim ob…