發布個小軟體給大夥玩玩

來源:互聯網
上載者:User
雖然 VB
已死。。但用來寫寫案頭小軟體還是挺不錯的。不過我算是還給了老師。。忘的差不多了。。~~~~~~~~~~

                  
很早以前用VB寫的。。。也就幾行代碼。。。。沒有一點技術含量
                  下載 無需
安裝。。直接運行即可。。
   :      
       


http://www.blogjava.net/Files/wujun/mysoft.rar

關鍵代碼:
連結資料庫:

Public Function contoserver()Function contoserver() As Boolean '串連資料庫函數
On Error GoTo Conerror
    con.CursorLocation = adUseClient
    con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & App.Path & "\db.mdb;"
 & "Persist Security Info=False"
    'con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Password=wujunainiyiwn;Data Source=E:\資料\vars.mdb;Persist Security Info=True"
    con.CommandTimeout = 20
    con.Open
    contoserver = True
    Exit Function
Conerror:
   MsgBox "問題,!", vbExclamation + vbOKOnly, "嚴重問題"
    contoserver = False
End Function

Public Function closecon()Function closecon() As Boolean '關閉串連的函數
On Error Resume Next
    If (Not con Is Nothing) Then con.Close
    Set con = Nothing
End Function

Public Function runSQL()Function runSQL(ByVal strsql As String) As Boolean '執行查詢語句的函數
On Error GoTo runerror
    Set rst = Nothing
    Set rst = New ADODB.Recordset
    rst.Open strsql, con, adOpenDynamic, adLockOptimistic, -1
    runSQL = True
    Exit Function
runerror:
   MsgBox "運行這句出錯了", vbExclamation + vbOKOnly, "提示"
'   MsgBox "錯誤編號:" & Err.Number & vbCrLf _
    & "錯誤描述:" & Err.Description, vbCritical + vbOKOnly, "串連錯誤"
    runSQL = False
End Function

小技巧:

VB 引入超連結按鈕
        1.定義

Private Declare Function ShellExecute()Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA"
 (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal
lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long

   2.使用
 

 ShellExecute Me.hWnd, "open", "http://www.blogjava.net/wujun", vbNullString, vbNullString, vbNormalFocus

textBox
只能輸入數字:

Private Sub Text2_KeyPress()Sub Text2_KeyPress(KeyAscii As Integer)
  Dim a As Boolean
a = Chr(KeyAscii) Like "[0-9]" Or KeyAscii = 8
If a = False Then
    KeyAscii = 0
    MsgBox "這裡輸入的可是要數位哦!", vbInformation + vbOKOnly, "提示"
End If
End Sub

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.