目前分類:程式設計 (3)
- Dec 31 Sun 2000 21:24
踢除他人的遠端登入&強制登入的語法
- Dec 31 Sun 2000 19:34
MSSQL - DateTime 相關的Format參數
以下MSSQL時間格式轉換為文字的常用參數,因為每次都記不起來乾脆就寫在這邊提供大家參考.
select convert(varchar(20),getdate(),StyleID)
- Dec 31 Sun 2000 10:22
數字轉成字母(Excel)
數字轉成字母(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