BANKHOE : 您好 ( 越南)
APA KABAR :您好 ( 印尼)
MI GA LABAR :您好 ( 緬甸)
>即時新聞-熱門
2009年4月25日星期六
2009年4月24日星期五
第二天 妹咕會偷哭 - 請大家留言祝福
昨天阿咪唸妹咕
妹咕就偷哭
我看了真是心.....
所以我就唸自己
陪妹咕算一算時間太少
請大家要給妹咕回應喔
今天我會請妹咕上本BLOG
讓她了解許多大哥哥和大姐姐 有來此BLOG回應
祝福她
阿爸先回應
妹咕加油
2009年4月23日星期四
EXCEL -VBA 自動加總
這是解決學生要自動加總的VBA程式
Sub 自動加總()
Dim r1, r2, c1, c2, s
s = 0
Dim r1, r2, c1, c2, s
s = 0
r1 = ActiveCell.Row
c1 = ActiveCell.Column
While (ActiveCell(r1, c1).Value <> Empty)
c1 = ActiveCell.Column
While (ActiveCell(r1, c1).Value <> Empty)
While (ActiveCell(r1, c1).Value <> Empty)
s = s + ActiveCell(r1, c1).Value
r1 = r1 + 1
Wend
ActiveCell(r1, c1).Value = s
r1 = ActiveCell.Row
c1 = c1 + 1
s = 0
Wend
r1 = ActiveCell.Row
c1 = ActiveCell.Column
While (ActiveCell(r1, c1).Value <> Empty)
While (ActiveCell(r1, c1).Value <> Empty)
s = s + ActiveCell(r1, c1).Value
c1 = c1 + 1
Wend
ActiveCell(r1, c1).Value = s
c1 = ActiveCell.Row
r1 = r1 + 1
s = 0
Wend
End Sub
妹咕真的氣人 - 生病
晚間下課約10:30到家
妹咕說 : 阿爸我不行了
我和阿咪(內人)一同快速送往新店急診
因為妹咕笑吼
這個會因天氣驟變而發作 , 這已是我BLOG
常見的文章了
只是昨天她一直到早上7:00才穩定回家休息
我今天一天都沒啥休息 , 又去上課了
課堂中學生們給了許多祝福
謝謝大家
2009年4月21日星期二
讓BLOG有聲有色
最近玩blog發現自己又進步了
因學生的提問讓自己又向前一步
以下是可以去提升自己log的音樂喔
大家有blog的朋友可以試喔
http://popo516.myweb.hinet.net/lost_heart/b/musicplayer/mini.htm
但是要先將音樂檔案上傳喔
以下是不用上傳音樂的做法
要先申請會員 步驟簡單
http://www.kkbox.com.tw/manual3/mybox/bgm.html
2009年4月19日星期日
2009年4月17日星期五
今天算了一下 - 謝謝大家
158246 /18/30 294 人次點閱率
本站建站至今平均每日有294的點閱率
294/10 = 30人
大約一人點閱10次 , 也有30 人
謝謝大家 , 如果在電腦技術須要合作 , 請多多指教
妹咕老師在此謝謝大家
2009年4月14日星期二
2009年4月12日星期日
2009年4月8日星期三
EXCEL VBA 互換超連結
請看下列程式碼 , 可以將A1儲存格的連結 換到A2儲存格
Sub 交換律()
Range("A1").Select
Selection.Cut Destination:=Range("A3")
Range("A2:A3").Select
Selection.Cut Destination:=Range("A1:A2")
Range("A1").Select
End Sub
方法利用A3儲存格進行搬移而已
也可以用下列程式
Sub 交換律()
Dim myhyps As Hyperlinks
Dim myhyp As Hyperlink
myx1 = Range("a1").Value
myx2 = Range("a2").Value
Set myhyps = Range("a1").Hyperlinks
Set myhyp = myhyps(1)
x1 = myhyp.Address
Set myhyps = Range("a2").Hyperlinks
Set myhyp = myhyps(1)
x2 = myhyp.Address
With Worksheets(1)
.Hyperlinks.Add Anchor:=.Range("a1"), _
Address:=x2, _
TextToDisplay:=myx2
.Hyperlinks.Add Anchor:=.Range("a2"), _
Address:=x1, _
TextToDisplay:=myx1
End With
End Sub
订阅:
博文 (Atom)










13130