Adobe Photoshop CS2 for PC Logo

Related Topics:

Anonymous Posted on Sep 19, 2007

Linking vb to access

I want to know the steps in linking visual basic to database...pls and how to browse the ado..because there's no ado in my pc

  • samruddhi Dec 14, 2007

    I want ot create a s/w project of student database.

    I am using vb as front end and ms access as backend.

    How to establish link between vb and access?

×

2 Answers

A

Anonymous

I need to run a graph to display two parameters from my access dbase in graphical representation am new in this please help.

Anonymous

Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Guru:

An expert who has written 7 tips or uploaded 3 video tips

Mentor:

An expert who has written 3 tips or uploaded 2 video tips.

  • Expert 58 Answers
  • Posted on Dec 20, 2007
Anonymous
Expert
Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Guru:

An expert who has written 7 tips or uploaded 3 video tips

Mentor:

An expert who has written 3 tips or uploaded 2 video tips.

Joined: Jun 11, 2007
Answers
58
Questions
3
Helped
174775
Points
176

You post it in the wrong product, you should have posted it in Access or Office. But I will try to answer anyways...

In tools look for references and then look for MS ADO Data Control 6.0 or Microsoft ADO... Just select it and press ok then you will have a new control object name "ADO data control". See the explanation about the ado data control which is very easy to use...

Here is also a great tutorial for the ADO Data Control:
http://www.devarticles.com/c/a/Visual-Basic/Implementing-An-ADO-Data-Control-With-VB6/

You can also use VBA in Access, you have exactly the same functions there as well.

Ad

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

1helpful
2answers

I dont know the disadvantages of visual basic.

visual basic, is only a basic programming language, most programs will run on Java script, microsoft is visual basic though, but it uses a lot more complex scripts then, if you like the programing language, go for it, but i did not like it.
Also
VB is undoubtedly the simplest and easiest platform to build major Windows applications. The problem is that like other Microsoft products they change faster than I change my socks.You will certainly need more than just VB. Get into server and client side scripting and the use of VB Net.
0helpful
1answer
4helpful
2answers

Free visual basic source code salary database sample

you solution is her



Building Websites with VB.NET and DotNetNuke 4/by Daniel N. Egan (Author), Steve Valenzuela (Author), Michael Washington (Author)
Description
DotNetNuke is an open-source Content Management System and web application framework. DotNetNuke has taken the Microsoft world by storm and now at version 4, its community has grown to over 200,000 users. This book covers virtually everything you need to know to get your DotNetNuke website up and running. Concisely written and with clear explanations, this book is covers installation, administration, deployment, site creation and all of the basic built in DotNetNuke modules. For developers, chapters on the core architecture, skinning and custom modules, including coverage of the DAL+, give you the skills to customize and extend your site. The book starts off by giving you a deep understanding of working with basic DotNetNuke sites, guiding you through the features and giving you the confidence to create and manage your site. After that, you will journey to the heart of DotNetNuke, and learn about its core architecture. Always concise, relevant and practical, you will find out what makes DotNetNuke tick, and from there, you will be ready to customize DotNetNuke. Developers will enjoy the detailed walkthrough of creating a new custom modules. Special emphasis is given to the DAL+, an extended feature set of the DotNetNuke Data Access Layer (DAL). You will see how to create custom modules with the DAL+, and invigorate your module development. Web designers will enjoy the material on skinning, helping them to create a new look for their site. You will learn about creating new skins, and packaging them up for easy deployment. You will master all of this as you leap into the development of a DotNetNuke 4 site. This book will give you the skills to create and manage DotNetNuke websites as quickly as possible. You will:
* Install and configure DotNetNuke
* Master the standard modules
* Understand the core architecture of DotNetNuke
* Explore the inner workings of DotNetNuke modules
* Extend DotNetNuke using the DAL and DAL+ to create powerful custom modules
* Create your own skin using a HTML Editor
* Find out about where and how to host and deploy your site
You can use this book to help you set up and administer a DotNetNuke portal, even if you have a limited knowledge of ASP.NET. You will learn how to setup and administer an example site, stepping through all the tasks to ease your learning. If you are a developer, this book will help you extend the DotNetNuke portal by first helping you understand how the core framework works and then show you how to create custom modules and skins. A rudimentary knowledge of VB.NET programming is assumed, but the emphasis is not on becoming a better VB.NET programmer but on taming DotNetNuke. This book has been written for both the beginner wanting to set up a website and also ASP.NET developers with a grasp of VB.NET who want a deeper understanding of how to work with DotNetNuke. To work with the DotNetNuke code, you will need access to Visual Web Developer Express or Visual Studio .NET 2005. No prior knowledge of DotNetNuke is assumed.

download link:
http://w14.easy-share.com/1701584071.html
or:
http://dep
0helpful
1answer

Retrieving acess data which is password protected thru VB

You will need to use a connection string. But - before you can configure the string correctly, I'd need to know how the data is stored (Access, SQL, ODBC, etc). You can find examples online. Just know that you are looking for "Connection String." Here's two examples:
1. For MS Access (Jet files):
' Set up the connection string.
m_strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & strDestDBPath & ";" & _
"Jet OLEDB:Engine Type=5" ' NOTE: Use Type=5 for Jet 4.x.

2. For SQL database:
g_strADOConn = "Provider=SQLOLEDB;" & _
"Data Source=SERVER_NAME;" & _
"Initial Catalog=DATABASE_NAME;" & _
"User ID=mssql_userid;" & _
"Password=mssql_password;"
0helpful
1answer
0helpful
1answer

How to access data from ms access with buffer in class code with vb application

Use ADO and create a connection string for a Jet file (version matters here when creating the string). Then use ADO commands and return recordsets to buffer your data.
0helpful
1answer

What is the compatible database for visual basic 6.0?

Microsoft Access uses the Jet Engine. In VB 6, you can create a data connection using ODBC or OLE DB. Here is an example of OLE DB:

"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\YourAccessDB.mdb;User Id=;Password=;" Good luck
0helpful
1answer

How can i download visual basic 6 soft ware freely

Dear friend take a look to these links, I hope they help you:
http://www.youtube.com/watch?v=y4F_rPu0ddU
(Through this video you'll learn how to download VB 6.0 free)
http://www.developers.net/tsearch?searchkeys=visual+basic+6+free+download

-------------------
You can aslo download Express version of VB via this link:
http://en.kioskea.net/telecharger/telecharger-104-visual-basic-express-edition


Good luck
0helpful
1answer

Database connectivity

Hello,
Please follow the link below to help with connecting to a database and displaying data using visual basic.
http://www.freevbcode.com/ShowCode.Asp?ID=1257

Please let me know if you have any questions.
Thank You, Raph30
Not finding what you are looking for?

103 views

Ask a Question

Usually answered in minutes!

Top Adobe Computers & Internet Experts

k24674

Level 3 Expert

8093 Answers

ZJ Limited
ZJ Limited

Level 3 Expert

17989 Answers

ExpressFiX
ExpressFiX

Level 2 Expert

691 Answers

Are you an Adobe Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...