tyson記事本

Google & man(Unix) are your best friends!

Skip to: Content | Sidebar | Footer

Windows Media Player 11 mms 找不到檔案

9 January, 2008 (22:43) | 9.Software, T.Funny | By: tyson

當您按一下 的 mms連結會得到下列錯誤訊息:
連結至接聽 (Listen 串流音訊使用 Microsoft Windows Media Player 11: Windows Media Player 找不到該檔案。)

發生的原因:
Windows Media Player 11 已不再支援 Microsoft Media Server (MMS) 通訊協定。

看到這篇文章, 我臉都綠了.. @_@
M$在搞什麼策略…
解決方法, 目前官方有提供一個………..就是降版本 -> Media Player 10…9…etc

一整個無言

Protected: 近日紀實

9 January, 2008 (01:46) | T.Working | By: tyson

This post is password protected. To view it please enter your password below:


Protected: …

28 December, 2007 (08:51) | T.Working | By: tyson

This post is password protected. To view it please enter your password below:


婚禮/蜜月記實

27 December, 2007 (11:57) | T.Family, T.Life | By: tyson

老婆大人, 已經陸續撰寫上傳中~

http://jarace.tcchen.org

各位可以至我老婆blog觀看  8-)

結婚感言

3 December, 2007 (20:20) | T.Life | By: tyson

謝謝各位長輩,帥哥,美女給我們夫妻倆祝福恭賀…

:-D

婚禮的照片/flash/影片會陸續放到網站上
btw 那位長輩,帥哥,美女..
如果有拍照的, 方便的話, 請順便寄一份給我 ;-)
tysonchen at gmail.com

如果檔案太大.. 可以先知會我一聲, 我可以開FTP讓您上傳 :-D

Tyson & Jarace 謝謝各位~

Oracle: Funtion return cursor values

23 November, 2007 (14:35) | Oracle | By: tyson

SQL> — ref cursor
SQL> create or replace package pkg_types as
2 type refcursor is ref cursor;
3 end;
4 /
Package created.SQL> create or replace function f_return_refcursor
2 return pkg_types.refcursor
3 as
4 refcur pkg_types.refcursor;
5 begin
6 open refcur for select * from emp;
7 return refcur;
8 end;
9 /
Function created.

SQL> var cur refcursor
SQL> exec :cur := f_return_refcursor;

PL/SQL procedure successfully completed.

SQL> print cur