Click here to Skip to main content
15,891,513 members
Articles / Desktop Programming / Windows Forms

MS Access Databases Queries Editor

Rate me:
Please Sign up or sign in to vote.
4.91/5 (23 votes)
26 Jul 2009GPL38 min read 152.6K   9.5K   116  
A very productive, easy to use tool to edit your Sql Queries against MS Access Databases
Imports System.IO
Public Class AboutBox

    Private Sub AboutBox1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

        Dim AppInf = My.Application.Info
        Dim ApplicationTitle = If(AppInf.Title <> "", _
                                  AppInf.Title, _
                                  Path.GetFileNameWithoutExtension(AppInf.AssemblyName))

        Me.Text = String.Format("About {0}", ApplicationTitle)


        Me.txt_Version.Text = AppInf.Version.ToString
        Me.txt_Description.Text = AppInf.Description

    End Sub

    Private Sub OKButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_OK.Click
        Me.Close()
    End Sub


End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
Syrian Arab Republic Syrian Arab Republic
The more I learn the more I see my ignorance.

Comments and Discussions