|
-
Aug 26th, 2005, 02:38 AM
#1
Thread Starter
Fanatic Member
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
-
Aug 26th, 2005, 02:42 AM
#2
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.
-
Aug 26th, 2005, 02:45 AM
#3
Thread Starter
Fanatic Member
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
-
Aug 26th, 2005, 02:49 AM
#4
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.
-
Aug 26th, 2005, 03:05 AM
#5
Fanatic Member
Re: Is there a free Frontend for MSAccess databases?
You can create a database in code:
VB Code:
Sub CreateDatabase()
'Select Microsoft DAO 3.6 Object Library in Project References
Dim ws As Workspace
Dim DB As Database
Set ws = DBEngine.Workspaces(0) 'set the DB engine workspace
Set DB = ws.CreateDatabase(App.Path & "\MyDatabase.mdb", dbLangGeneral)
DB.Close
ws.Close
Set ws = Nothing
Set DB = Nothing
End Sub
Brian
(Fighting with the RightToLeft bugs in VS 2005)
-
Aug 26th, 2005, 03:09 AM
#6
Fanatic Member
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:
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);"
DB.Execute "ALTER TABLE [Results] ADD COLUMN [Missed] INTEGER;"
DB.Execute "ALTER TABLE [Results] ADD COLUMN [Spoiled] INTEGER;"
DB.Execute "ALTER TABLE [Results] ADD COLUMN [Percentage] DOUBLE;"
DB.Execute "ALTER TABLE [Results] ADD COLUMN [Pass percentage] DOUBLE;"
DB.Execute "ALTER TABLE [Results] ADD COLUMN [Passed] YESNO;"
DB.Execute "CREATE INDEX [Exam code] ON [Results] ([Exam code]);"
DB.Execute "CREATE INDEX [Examinee number] ON [Results] ([Examinee number]);"
DB.Execute "CREATE UNIQUE INDEX [Exam Examinee] ON [Results] ([Exam code],[Examinee number]);"
Brian
(Fighting with the RightToLeft bugs in VS 2005)
-
Aug 26th, 2005, 06:10 AM
#7
Re: Is there a free Frontend for MSAccess databases?
 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.
-
Aug 26th, 2005, 10:50 AM
#8
Fanatic Member
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)
-
Aug 27th, 2005, 06:02 AM
#9
Re: Is there a free Frontend for MSAccess databases?
Why not just open the MDB in MS-Access? (If that's what you have)
-
Sep 12th, 2005, 11:01 PM
#10
Thread Starter
Fanatic Member
Re: Is there a free Frontend for MSAccess databases?
 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!
-
Sep 12th, 2005, 11:12 PM
#11
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.
-
Sep 12th, 2005, 11:26 PM
#12
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 Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API 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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|