-1
votes
1answer
44 views

Error with con.open() with MS Access DB

When reaching con.open(), I am getting an error. Imports System.Data.OleDb Public Class Form1 Dim con As OleDbConnection Dim strCon As String = "Provider=Microsoft.ACE.OLEDB.12.0;" & _ "Data ...
0
votes
0answers
61 views

How can I execute Queries in Access from Visual Studio

I'm having trouble passing VB Variables into Visual Studio Queries and Access Queries. The basic program keeps a database of NBA Players, the problem occurs within the Change Team function. I want to ...
0
votes
1answer
113 views

Can I display search results of a MS Access 2010 database into a combo box (Vb 2008)

I need to have my program be able to search each column on a database until it finds matches, then output those matches into a combo box. I have currently programmed a way of it searching one column ...
0
votes
1answer
225 views

Using an update statement for Access database (VB 2008)

I'm trying to create an update statement for my program that will update a database using SQL based on the data the user inputs, unfortunately I have the problem that I can only update one column at a ...
0
votes
1answer
69 views

[VB.Net]SQL Parameters Sending Name Instead of Values

I am trying to figure out how to use command parameters to pass values through an SQL statement since concatenation was not working at all but I am running into a weird problem and I cannot find any ...
0
votes
1answer
259 views

MS Access 2010 Form with check box per record

I'm trying to create a form that allows my audit team to help identify transactions that need further investigation. I would like to know if the following is possible and if so what would be the best ...
0
votes
1answer
147 views

Oledbconnection execute commad query error vb.net

Im using VS2012 wpf application vb.net MSAccess2010, Im tring to excute query via oledbconnection and its return error but when i excute same query via MSAceess2010 it return table without any ...
0
votes
0answers
124 views

How to insert into a multi valued field?

Well I am using Ole.DB in vb.net to get data from an ms-access 2012 database. it has a multivalue field and whenether I try to get data from it it looks like: value1;value2;value3 etc.. So when I ...
1
vote
1answer
560 views

VB.Net: MS Access database engine could not find the object

I have a module in that imports Excel files into a MS Access database table. I get: MS Access database engine could not find the object 'REPORTCONFIG'. The Table REPORTCONFIG does exist and it is ...
1
vote
1answer
641 views

importing data from excel to access using ms access forms

I have one excel file which contains data,I have to import the data in excel file using the ms access form UI.I need to create form which takes input as excel file and inserts the records in the MS ...
0
votes
1answer
123 views

Sender and event arguements in MS Access 2010

Is it possible to have an event sender/args sent to a forms On Load event in MS Access 2010. Similar to vb.NET. Something similar to the following: Private Sub Form_Load(ByVal sender As Object, ByVal ...
0
votes
0answers
469 views

Using MS access Database as data source with DataGridView Cannot Seem to Update or Refresh DataGridView using conventional methods

I have searched thoroughly for an answer to my question concerning a direct way to update a dataviewgrid with the call of a subroutine. but i had to luck, so im going to post the question here, with a ...
0
votes
1answer
211 views

Time column average in access database

I have an access database one table has time column that shows the total time from (endtime - starttime) I need to have that column averaged (hh:mm) ss not needed. I need to store this average into ...
0
votes
1answer
249 views

Sorting Ms Access tables records and VB.net

i've implemented a system on vb.net 2010 having its database on Ms Access 2010 (.accdb). i have to read records from the tables to a combo box by binding its datasource to the tables directly. the ...
0
votes
1answer
701 views

How to create a .net chart object with a series based on a data subset?

I'm working in VS2010 on a visual basic application. It takes in serial port data, writes it to an access database, and then graphs the data. The data only comes in once every minute, so it's not ...
0
votes
1answer
1k views

Records added to ms access database with vb 2010 not saving

I'm working on a simple data logging program, and I have little to no database experience. I wrote a little VB forms app to log the data to ms access and then graph the data, but I'm having trouble ...
0
votes
1answer
1k views

How to populate a vb 2010 listbox with a Access.mdb file

Here's my code, all it does is display the numbers 1 - 10. I want it to display the numbers from the column Sales, from the table Songs Imports System.Data.OleDb Public Class Form1 Dim con As ...
0
votes
2answers
343 views

Update column in Access using query in VB.Net

I need to update a column by adding a value in Access: update table1 set column1 = column1+value In the above, if column1 is null, then the table is not updated. I need a function like in SQL ...
-3
votes
3answers
14k views

Vb.net Connection String for Ms Access Database

What is the connection string for connecting MS Access 2010 (.accdb) database in VB.net.