|
Type keyword or phrase to search:
My Articles...
Resources
I have other resource websites and social networking sites for you to browse...
Blog, articles, video tutorials
Access Database
Tutorial Blog
Contact me on Twitter
@benbeitler
|
How does one select multiple rows in an access table with VBA?
Unfortunately it seems MS Access is not an easy as Excel when it comes to macro programming. For the life of me, I cannnot figure out how to do something as simple as selecting multiple cells so I can copy them. For example, I would like to select the first 50,000 or select rows rows 50,000 100,000Does this use Runcommand acCmdSelectRecord? PLEASE GOD HELP MEClarification, I' am attempting to select rows of records,. that's all, prefaraby by record
How to combine 2 access tables into 1 single table?
The problem I have is I need to sort the data in the database. There are over 100,000 raw data and I cannot export it to the excel due to its limitation. What I did was break the data into smaller excel spreadsheet with the same column heading except for its detail. eg. premium tables, commission tables. I exported these tables to access and I would like to know how to combine these 2 tables into 1 tables so that I could sort it out the way I like.
How to design an ms-access table for biological reactor of a wastewater treatment plant.?
the rows consist of terms like feed, permeate, reject, etc,. and the columns consist of five numbers 1 to 5. I want a single table for a whole month. Hope you understand. the data should be entered on a daily basis.
Import access table to another access database through vb.net?
Dim con As New OleDbConnection " Provider Microsoft.Jet.OLEDB.4.0 Data Source " & Application.StartupPath & " fwdata.mdb Jet OLEDB Database Password vbc100" con.Open Dim cmd As New System.Data.OleDb.OleDbCommand " select into MSAccess DATABASE " & Application.StartupPath & " fwdata1.mdb Jet OLEDB Database Password vbc100 . data entry from data entry" , con cmd.ExecuteNonQuery con.Close note 1.i want to copy my fwdata.mdb's table data entry which is in application startuppath.2.i want to copy this table data entry to my export.mdb's table exportdata entry which is in application startuppath exportfolderplease give me code for this I have written above code but it doesnot work
I can't change the data type of a large access table.?
I am working with large access tables between 600,000 and over a million records. I need to change the data type in one of the fields. When I go to change the data type I get an error message saying " Microsoft Access can't change the data type There isn't enough disk space or memory" I have no issues changing the data type on smaller tables. Any ideas on how to either fix this or make it easier? Thanks
How do I make a column in an access table a function?
I want to make one of my columns a function. I would like to take column 1 2 column 2. How would I do this?
Export vb.net datagrid into ms access table?
I have draged text boxes and a datagrid to form .I can insert text box inputs into the datagrid.How do I export datagrid in access table? i am using visual studo 2010 and ms access 2007.I will appriciate if someone assist me or point me to the right direction
Does anybody know how to add an access table to a powerpoint slide?
Type mismatch error in access table?
I created and access database with a front end and a backend contianing the tables. in the back end when I open the table and try to sort some columns will sort some will not sort. and when i try to run a simple query based on that table I get a " Type Mismatch in expression" I have check all my data types in all the tables and they match. If anyone can suggest and area to look at the help would be apprciated.
Help how do you merge two access tables into 1?
hey so i was wondering how do yo u merge 2 Access tables together so they are 1 beside the other, well like merge them into 1 table?it would be a huge help right now cheers x
Two table formats in one access table?
Hello,I wanted to see if it would be possible to have two table formats merged into one access table. I currently have two table formats that I want to merge and export into excel for reporting purposes instead of copying and pasting. The first table has 4 columns and 4 rows and the second table has 6 columns and rows ranging from 1 to 10 rows .Currently, both tables are separate and have different formats but I'm looking for a way where I can use SQL or any other method to grab information from both tables and load them into this table.
Can i convert data in access table to oracle 9i directly?
can i convert data in access table to oracle 9i directly?
C# Updating / Adding information into an Access Table?
Hi, I've been baffled over the last few hours researching and trying to export some information into a access database.Here is my current script which will add update a row in a table, it currently throws an exception " SYNTAX Error in UPDATE Statement" . private void posttodb string field, int id, string value try Update code string update " UPDATE Customers SET " field " WHERE PersonId ?" string cnnString " Provider Microsoft.Jet.OLEDB.4.0 Data Source Customers.mdb " using var cnn new OleDbConnection cnnString cnn.Open using var cmd new OleDbCommand update, cnn Add the parameters cmd.CommandType CommandType.Text cmd.Parameters.AddWithValue field, value cmd.Parameters.AddWithValue " PersonId" , id Execute the command cmd.ExecuteNonQuery < < Error occurs on this line... catch The script above is called as follows int record id 0 foreach string filename in accounts record id 1 string title Extract filename, 1 string forename Extract filename, 2 string surname Extract filename, 3 posttodb " Title" , record id, title posttodb " Forename" , record id, forename posttodb " Surname" , record id, surname Can anyone explain, why I get this syntax error and show me a corrected version of the code.Thank you.
Transfer Excel spreadsheet into existing Access table via VBA?
I have an access database and I want to be able to transfer data from a previously set up spreadsheet via a command button in access. The Access table name is Transfer of DataThe Excel spreadsheet name is Data ImportThis is the code I am using, but it keeps returning run time errors. Can anyone help me with this?DoCmd.TransferSpreadsheet acImport, , " Transfer of Data" , " Data Import" Thanks

|
Books
The following books are my personal recommendations for all levels of Access database users and developers.
Enjoy!
Access 2007
- Dummies
This is a great book for beginners. It takes you through from the very beginning without too much jargon 'computer' talk and adds a little humour to your learning.
This is one of my favourites and is a starter recommendation for my students.

Access 2010 Bible
Get the Access 2010 information you need to succeed with this comprehensive reference. If this is your first encounter with Access, you'll appreciate the thorough attention to database fundamentals and terminology.
You’ll want to keep this soup-to-nuts Access reference close at hand!

Access 2007 VBA
This book provides you with the tools and techniques you’ll need in order to build more sophisticated solutions. After walking through the features of Access 2007 VBA, you’ll learn all about object–oriented programming and ADO. Two comprehensive case studies presents you with the hands–on experience in building real–world solutions using the concepts covered in the book.
It's the one I use as a reference for VBA students!
|