Colorful Life2010

Range对象基本操作应用示例
Weather:晴转阴,南风3-4级转北风3-4级,(1~8)℃

Range对象可能是VBA代码中最常用的对象,Range对象可以是某一单元格、某一单元格区域、某一行、某一列、或者是多个连续或非连续的区域组成的区域。下面介绍Range对象的一些属性和方法。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

[示例05-01] 赋值给某单元格
[示例05-01-01]
Sub test1()
Worksheets("Sheet1").Range("A5").Value = 22
MsgBox "工作表Sheet1内单元格A5中的值为" _
& Worksheets("Sheet1").Range("A5").Value...
Excel Application对象及其常用方法基本操作应用示例
Weather:晴转阴,南风3-4级转北风3-4级,(1~8)℃

Application对象代表整个Microsoft Excel应用程序,带有175个属性和52个方法,可以设置整个应用程序的环境或配置应用程序。

 示例01-01:体验开/关屏幕更新(ScreenUpdating属性)
Sub 关闭屏幕更新()
   MsgBox "顺序切换工作表Sheet1→Sheet2→Sheet3→Sheet2,先开启屏幕更新,然后关闭屏幕更新"
   Worksheets(1).Select
   MsgBox "目前屏幕中显示工作表Sheet1"
   Application.ScreenUpdating = True

jQuery部分序列化表单
Weather:晴转阴,南风3-4级转北风3-4级,(1~8)℃

在jQuery google(english)上看到的问题,整理了一下,想给回复,结果没回复成功,就回来写了。

有如下HTML代码,现在只想将row1那一行的表单元素进行serialize(),而其它的不想用。

 




  
  
  

 

 
FCKeditor 2.6 Beta发布
Weather:晴,西北风5-6级转西风4-5级,(-3~4)℃

2008.2.21发布的2.5.1版,同时放消息说正在紧密打造FCKeditor3(代号:V3)版,结果四天之后,竟然又发布了2.6beta版,这不能不让全世界的FCK fans们大faint一块。

FCKeditor 2.5.1版发布
Weather:阴,西南风4-5级转北风5-6级,(-4~0)℃

New Features and Improvements:

  • FCKeditor.Net 2.5 compatibility.
  • JavaScript integration file:
    • The new "FCKeditor.ReplaceAllTextareas" function is being introduced, making it possible to replace many (or unknown) <textarea> elements in a single call. The replacement can be also filtered by CSS class name, or by a custom function evaluator.
    • It is now possible to set the default BasePath for all editor instances by setting FCKeditor.BasePath. This is extremely useful when working with the ReplaceAllTextareas function.