Mozilla Thunderbird 相關文章彙整

目前收集到相關 Thunderbird 資訊, 如下 :

Thunderbird 軟體下載 :
http://moztw.org/thunderbird/.


教育部校園自由軟體 - Thunderbird 介紹 (也有其他軟體介紹, 如: OpenOffice) :
http://ossacc.moe.edu.tw/modules/ck2_software/view.php?sw_sn=67.


教育部校園自由軟體 - Thunderbird 線上書籍系統 :
http://ossacc.moe.edu.tw/modules/tadbook2/open_book.php?book_sn=8.


澎湖人影音教學網 - ThunderBird 教學 (也有其他軟體介紹, 如: OpenOffice) :
http://203.68.253.130/%7Ehuang/video/Thunderbird/Thunderbird.html.


ThunderBird 的使用教學 - 聯經數位 (如何匯入其他郵件軟體) (也有其他軟體介紹, 如: OpenOffice) :
http://www.5680.tw/elearning/webapps/thunderbird/.


Thunderbird 的使用教學 - 海芋小站 :
http://www.inote.tw/2007/10/thunderbird.html.


Thunderbird 官網討論區 :
http://forum.moztw.org/viewforum.php?f=9.


Q&A: Outlook 附檔變成 Winmail.dat ? :
http://ithelp.ithome.com.tw/question/10002371.

超強且免費的線上流程圖製作 - Cacoo

最近, 發現一個線上超強且免費的流程圖製作網站 - Cacoo,

支援多種樣版, 多分頁, 完整的物件屬性設定, 留言板, 儲存, 匯出, 分享, 協同作業 ... 等,

若使用 Ubuntu 對於 Dia 不滿意的, 或無 Visio 付費軟體可使用的,

可以使用這個 Cacoo 喔.

網址: http://cacoo.com/.

以下是 Cacoo 提供的 Demo 影片 :


登入之後的主畫面 :


主畫面 - 可建立 Folder, 進行檔案分類 :


主畫面 - 查看檔案模式 :




編輯流程圖的畫面 :


編輯 - 儲存, 匯出, 分享 :


更多的功能, 各位可以自行發掘喔.

Oracle ERP 電子表單 (eForm 無紙化 & 線上簽核)

對於 Oracle ERP 如何實現 eForm 線上簽核無紙化作業,

主要有以下幾個重點事項 :

1) 整體流程介紹

2) Mail 介紹

3) 簽核介紹

4) 使用者管理介面介紹

5) 一般簽核流程的設定

6) 流向內的申請者

7) 申請者與最後簽核者

8) 申請者重複的設定

9) 流程載入 Employee 架構

10) Copy 某個簽核流程的資料

11) 簽核項目的設定

12) Timeout 設定

13) 附檔的設定

14) 會簽的設定

15) Treeview 簽核結構的展示

16) 快速更換使用者

17) 報表 FTP 到 File Server

18) 電子簽章與報表轉 PDF

19) 每階段與結案的處理設定

20) 批次簽核 (整批簽核)

21) 批次列印 (整批列印)

22) Oracle ERP 報表的客制處理

23) Oracle ERP 報表針對廠別 / 事業處 / 帳本導入電子表單

24) 由分到合的簽核流程

25) 電子表單與系統的整合

26) 電子表單與 Web 的整合

27) 電子表單與外部系統的整合

28) 電子表單的效益估算

29) Oracle ERP Standard Flow 的功能擴充

Android 提示文字 Tooltip - Toast

Tooltip 提示文字, 在 Android 中可以利用 Toast 物件來實現,

範例如下 :
 Java 程式碼
public class helloWorld extends Activity {
/** Called when the activity is first created. */
@Override

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView( R.layout.main );

// Tooltip 顯示
Toast.makeText( this
, "Tooltip 提示內容"
, Toast.LENGTH_LONG
).show();

}
}

範例結果 :


高雄二日遊 (2010.04.03 ~ 2010.04.04)


2010.04.03 ~ 2010.04.04 這兩天,

與家人到高雄遊玩二天,

點選圖片可查看詳細內容,

以下, 是我這次到高雄二日遊的圖片 :

第一天行程 : 旗津 / 哨船頭 / 西子灣

旗津
高雄旗津


哨船頭
高雄哨船頭


西子灣
高雄西子灣


住宿 : 東帝士 85 大樓 - 耐渤房務管理中心
高雄東帝士 85 大樓


第二天行程 : 夢時代 / 佛光山

夢時代
高雄夢時代


佛光山
高雄佛光山

Android Intent 更多的用法與介紹

Android Intent 是個非常棒的物件,

它可以處理相當多的事情,

如:

桌面設定 :
http://tomkuo139.blogspot.com/2010/02/android.html.

選擇檔案 :
http://tomkuo139.blogspot.com/2010/02/android-choose-file.html.

開啟檔案 :
http://tomkuo139.blogspot.com/2010/04/android-open-file-with-default.html.

更多的應用, 可以參考這個網址 :
http://blog.chinaunix.net/u/9577/showart_2185991.html.

Google 對於 Intent 的介紹 :
http://developer.android.com/intl/zh-TW/reference/android/content/Intent.html#ACTION_AIRPLANE_MODE_CHANGED.

Android 開啟檔案時, 利用預設程式執行之 (Open File with default application) - Intent.ACTION_VIEW


Android 可以利用 Intent.ACTION_VIEW 來開啟檔案且執行之,

範例, 如下 :
 Java 部分程式碼
Intent intent = new Intent( Intent.ACTION_VIEW );
File f1 = new File( "/" + vDir + "/" + vFile );

// 檔名小寫, 容易判斷副檔名
String vlowerFileName = vFile.toLowerCase();

// 影片
if( vlowerFileName.endsWith("mpg")
|| vlowerFileName.endsWith("mp4")
)
intent.setDataAndType( Uri.fromFile(f1), "video/*" );
// 音樂
else if( vlowerFileName.endsWith("mp3") )
intent.setDataAndType( Uri.fromFile(f1), "audio/*" );
// 影像
else if( vlowerFileName.endsWith("bmp")
|| vlowerFileName.endsWith("gif")
|| vlowerFileName.endsWith("jpg")
|| vlowerFileName.endsWith("png")
)
intent.setDataAndType( Uri.fromFile(f1), "image/*" );
// 文字檔
else if( vlowerFileName.endsWith("txt")
|| vlowerFileName.endsWith("html")
)
intent.setDataAndType( Uri.fromFile(f1), "text/*" );
// Android APK
else if( vlowerFileName.endsWith("apk")
)
intent.setDataAndType( Uri.fromFile(f1), "application/vnd.android.package-archive" );
// 其他
else
intent.setDataAndType( Uri.fromFile(f1), "application/*" );

// 切換到開啟的檔案
startActivity(intent);

範例結果 :








Related Posts Plugin for WordPress, Blogger...