Results 1 to 12 of 12

Thread: Is there a free Frontend for MSAccess databases?

  1. #1

    Thread Starter
    Fanatic Member sridharavijay's Avatar
    Join Date
    Sep 2002
    Location
    http://www.vijaysridhara.in
    Posts
    589

    Is there a free Frontend for MSAccess databases?

    Hi,
    Is there a free front end GUI for MS Access databases. I've seen "Access Frontend" which is a shareware.
    Thanks
    Vijay S

  2. #2
    Frenzied Member pnish's Avatar
    Join Date
    Aug 2002
    Location
    Tassie, Oz
    Posts
    1,918

    Re: Is there a free Frontend for MSAccess databases?

    VB6 comes with a free front end to Access called Visual Data Manager (visdata.exe). I don't know whether you're allowed to re-distribute it though.
    Pete

    No trees were harmed in the making of this post, however a large number of electrons were greatly inconvenienced.

  3. #3

    Thread Starter
    Fanatic Member sridharavijay's Avatar
    Join Date
    Sep 2002
    Location
    http://www.vijaysridhara.in
    Posts
    589

    Re: Is there a free Frontend for MSAccess databases?

    I'm looking for something which allows me to create Databases, tables etc. in Access format. and I need this on .Net so not sure if visual datamanager is available in it.
    Thanks
    Vijay S

  4. #4
    Frenzied Member pnish's Avatar
    Join Date
    Aug 2002
    Location
    Tassie, Oz
    Posts
    1,918

    Re: Is there a free Frontend for MSAccess databases?

    VisData allows you to do all that. I don't know whether it comes with .Net though.
    Pete

    No trees were harmed in the making of this post, however a large number of electrons were greatly inconvenienced.

  5. #5
    Fanatic Member BrianHawley's Avatar
    Join Date
    Aug 2001
    Location
    Saudi Arabia
    Posts
    796

    Re: Is there a free Frontend for MSAccess databases?

    You can create a database in code:

    VB Code:
    1. Sub CreateDatabase()
    2.  
    3.   'Select Microsoft DAO 3.6 Object Library in Project References
    4.  
    5.   Dim ws As Workspace
    6.   Dim DB As Database
    7.  
    8.   Set ws = DBEngine.Workspaces(0) 'set the DB engine workspace
    9.   Set DB = ws.CreateDatabase(App.Path & "\MyDatabase.mdb", dbLangGeneral)
    10.   DB.Close
    11.   ws.Close
    12.   Set ws = Nothing
    13.   Set DB = Nothing
    14.  
    15. End Sub
    Brian
    (Fighting with the RightToLeft bugs in VS 2005)

  6. #6
    Fanatic Member BrianHawley's Avatar
    Join Date
    Aug 2001
    Location
    Saudi Arabia
    Posts
    796

    Re: Is there a free Frontend for MSAccess databases?

    And you can create, delete and manipulate tables:

    (Open the DB first of course)

    VB Code:
    1. DB.Execute "CREATE TABLE [Results] ([Exam code] TEXT(50),[Examinee number] TEXT(50),[Key code] TEXT(50),[Answers] TEXT(255),[Results] TEXT(255), [Right] INTEGER, [Wrong] INTEGER, [Missed] INTEGER);"
    2.   DB.Execute "ALTER TABLE [Results] ADD COLUMN [Missed] INTEGER;"
    3.   DB.Execute "ALTER TABLE [Results] ADD COLUMN [Spoiled] INTEGER;"
    4.   DB.Execute "ALTER TABLE [Results] ADD COLUMN [Percentage] DOUBLE;"
    5.   DB.Execute "ALTER TABLE [Results] ADD COLUMN [Pass percentage] DOUBLE;"
    6.   DB.Execute "ALTER TABLE [Results] ADD COLUMN [Passed] YESNO;"
    7.   DB.Execute "CREATE INDEX [Exam code] ON [Results] ([Exam code]);"
    8.   DB.Execute "CREATE INDEX [Examinee number] ON [Results] ([Examinee number]);"
    9.   DB.Execute "CREATE UNIQUE INDEX [Exam Examinee] ON [Results] ([Exam code],[Examinee number]);"
    Brian
    (Fighting with the RightToLeft bugs in VS 2005)

  7. #7
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Is there a free Frontend for MSAccess databases?

    Quote Originally Posted by sridharavijay
    I'm looking for something which allows me to create Databases, tables etc. in Access format. and I need this on .Net so not sure if visual datamanager is available in it.
    Thanks
    Vijay S
    Moved from ClassicVB.

  8. #8
    Fanatic Member BrianHawley's Avatar
    Join Date
    Aug 2001
    Location
    Saudi Arabia
    Posts
    796

    Re: Is there a free Frontend for MSAccess databases?

    Not sure why this thread was moved to .Net, but my code suggestions were VB6 since that was the original forum of posting.
    Brian
    (Fighting with the RightToLeft bugs in VS 2005)

  9. #9
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Is there a free Frontend for MSAccess databases?

    Why not just open the MDB in MS-Access? (If that's what you have)

  10. #10

    Thread Starter
    Fanatic Member sridharavijay's Avatar
    Join Date
    Sep 2002
    Location
    http://www.vijaysridhara.in
    Posts
    589

    Re: Is there a free Frontend for MSAccess databases?

    Quote Originally Posted by mendhak
    Why not just open the MDB in MS-Access? (If that's what you have)
    Hey! I don't have Licensed version for M S Access!

  11. #11
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Is there a free Frontend for MSAccess databases?

    Frankly, this isn't a VB6 or VB.NET question. If it was, the question would be how can I create a front-end for MS Access. In VB.NET, you can use ADOX to create the Access DB and then ADO.NET to execute commands to create the tables, etc.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  12. #12
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Is there a free Frontend for MSAccess databases?

    Moved to Office Development.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width