?? module1.bas
字號:
Attribute VB_Name = "Module1"
'email: takisfmf@yahoo.gr
'for more source code visit
'http://www.geocities.com/takisfmf/index.html
Global A_PolynomialOrder, B_PolynomialOrder As Integer
Public Function GetValue(StringValue)
Position = InStr(1, StringValue, ",")
If Position <> 0 Then
GetValue = Val(Left(StringValue, Position - 1) + "." + Right(StringValue, Len(StringValue) - Position))
Else
GetValue = Val(StringValue)
End If
End Function
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -