放了一些相片上去。

不過有點事,晚一點再將剩下的相片放上去。

大家有空可以回味一下當年的蠢樣! 


Joel 發表在 痞客邦 留言(0) 人氣()

 

我的天阿!   又要被送回馬祖了............

我不不不不不不不不不不不不不不要阿(╯︿╰)

誰能救我......我要回火星.....在地球當兵太危險了.........

 


Joel 發表在 痞客邦 留言(0) 人氣()

 

 

哀    我不要當兵啦,我想回家過節  

奉上自製的卡片,祝賀大家聖誕快樂

http://home.pchome.com.tw/world/scv007/Xmas.html

 

 

Joel 發表在 痞客邦 留言(0) 人氣()


Joel 發表在 痞客邦 留言(2) 人氣()

踢除~

mstsc /console /v:IP

登入~

Joel 發表在 痞客邦 留言(0) 人氣()

以下MSSQL時間格式轉換為文字的常用參數,因為每次都記不起來乾脆就寫在這邊提供大家參考.

select convert(varchar(20),getdate(),StyleID)

Joel 發表在 痞客邦 留言(0) 人氣()

數字轉成字母(Excel):
Function ConvertToLetter(iCol As Integer) As String
   Dim iAlpha As Integer
   Dim iRemainder As Integer
   iAlpha = Int(iCol / 27)
   iRemainder = iCol - (iAlpha * 26)
   If iAlpha > 0 Then
      ConvertToLetter = Chr(iAlpha + 64)
   End If
   If iRemainder > 0 Then
      ConvertToLetter = ConvertToLetter & Chr(iRemainder + 64)
   End If
End Function

Joel 發表在 痞客邦 留言(0) 人氣()