Allen's blog

Just do it
posts - 3, comments - 1, trackbacks - 0, articles - 4
  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理

2008年4月29日

1、确保在c:\windows\system\comdlg32.ocx 文件存在
2、运行 regsvr32 c:\windows\system\comdlg32.ocx

posted @ 2008-04-29 22:19 allenlf 阅读(152) 评论(0) 编辑

2008年4月28日

<marquee   scrolldelay="50"   scrollamount="1"   id="scrollarea"   direction="up"   onMouseOver="scrollarea.stop()"   onMouseOut="scrollarea.start()">  
  。。。。  
  。。。。  
  </marquee>

 

<marquee   scrolldelay="50"   scrollamount="1"   id="scrollarea"   direction="up"   onMouseOver="scrollarea.stop()"   onMouseOut="scrollarea.start()"   width="117"   height="66">  
  。。。。    
  。。。。  
  </marquee>  
   
  定义它的大小就可以了,没定义就默认为整行了.

posted @ 2008-04-28 13:45 allenlf 阅读(207) 评论(0) 编辑

CREATE USER WW_zjhl  PROFILE "DEFAULT"
    IDENTIFIED BY "yygl" DEFAULT TABLESPACE "TS_WW"
    ACCOUNT UNLOCK;
GRANT "CONNECT" TO WW_zjhl;
GRANT "EXP_FULL_DATABASE" TO WW_zjhl;
GRANT "IMP_FULL_DATABASE" TO WW_zjhl;
GRANT "RESOURCE" TO WW_zjhl;

posted @ 2008-04-28 13:41 allenlf 阅读(219) 评论(0) 编辑