Skip to main content

Posts

Showing posts from January, 2008

C# Form 裡面使用 Timer

/* 之前使用 System.Timers; 但是在關掉視窗的時候好像怪怪的,不知到還需要都做什麼動作才可以。改用 System.Windows.Forms.Timer 就好多了,果然是為了 Form customized 的 Timer ... */ using System.Windows.Forms;   // 宣告 Timer System.Windows.Forms.Timer aTimer;   // new 給他一個實體 aTimer = new System.Windows.Forms.Timer();   // 在接收 event 的 List 上加入你的函式 aTimer.Tick += new EventHandler(TimerEventProcessor);   // 設定 Timer 觸發的間隔 aTimer.Interval = 5 * 1000;  // 5 秒  = 5000 毫秒   // 開始計時 aTimer.Start();  // 停掉 Timer 請用 Stop()   // 你的函式,把你在 Timer 每次發生Event 的時候想做的事寫在裡面 private void TimerEventProcessor(object myObject, EventArgs myEventArgs){     // do what you want when time out     // 想做的事 }

Useful Linux Tools

beep-media-player :跟 xmms, winamp很像的音樂播放軟體 kompare : 圖形介面的 diff,可比較檔案 jdk,,jre : java vlc :好用的多媒體播放器,吃很多格式 audacity : 有點像 windows 下的 goldwave  ,聲音檔案的處理軟體 gvim :vim 的 GUI 版,文字編輯器 chewing(scim-chewing)  : 新酷音輸入法 d4x : download manager ,有點像 flashget dftp: ftp client,ftp 檔案傳輸,像 filezilla kalarm: scheduler with alarm pop-up : 鬧鐘,定時提醒 unrar:  解 rar 壓縮檔

Linux Command

cat your_file_path : print (read) file (顯示,閱讀文字檔案) pppoeconf : configure ADSL connection (設定 ADSL 連線) updatedb: build the index of whole system (建立索引) locate keyword: locate the index builded by updatedb (搜尋檔案) ps2pdf: convert ps to pdf (把 ps 轉換成 pdf 檔案) sudo apt-get update: update the source list sudo apt-get install wanted_package: install the package (安裝軟體) sudo apt-get upgrade: upgrade the system apt-cache showpkg: show basic information of the package, like version, dependency...