I'm not sure if I was precise enought in my question so I'll explain the situation.
I got 2 tables in which I need to do an left outer join to get the data even where there's no match. I did a query which is working fine except for one…
I have an Access 2000 Database created over a decade ago. The original creators are long gone. It's stored in a shared folder on a file server on the local network. The file was over 250MB in size, and is accessed by anywhere from a dozen to two…
I have a form with a list box in it. The list box displays the results of a SELECT query and I want the user to be able to push a button to delete the item that is selected in the list box. Here is the query I want to run when the user clicks the…
I have to insert data from ms access to sql server. My logic is:
Get list of names in ms access.
Disable foreign key and triggers before insertion.
Read each table.
Change RowState of each row by SetAdded() method.
Finally insert it using command…
I'm using MS Access 2003 to open a MS Access 2000 .mdb that links to a SQL Server 2005 Standard back-end (I've tested and replicated my issue using both MSSQL and local Jet tables so it would be counter-productive to tag this question with SQL…
I am using vba code in onchange event of a combo field. the code is as below
Dim db As Database
Dim rs As DAO.Recordset
Dim qrystr As String
Dim cond As String
Dim qrystr_CID As String
'cond = [Forms]![PharmDrug].[Commercial drugs…
I have a "Search" form in my database that takes in a string, explodes it into an array and builds an SQL string based on a selected join type ("Or", "And", or "Exact Phrase" radio buttons). My code works perfectly 95% of the time, but every once…
I have developed an network application that is in use in my company for last few years.
At start it was managing information about users, rights etc.
Over the time it grew with other functionality. It grew to the point that I have tables with,…
I am new to MS Access. I have a subform on which I need a checkbox on each row displayed in the subform. My subform is in a datasheet view.
There are a number of posts on the web that talk about this but none provide a clear answer.
Can anyone help…
Due to a merger, we have inherited a couple of legacy apps which run on Access 2.0. Ideally we would like to re-write them as intranet web apps but due to other priorities this is not going to happen anytime soon.
Our main concern is to get the…
I am developing a database application by using MS Access 2000, and it will be access some web services. However, the data is returned in xml format. is there any way that I can import the xml data into a table in MS Access 2000?
Blast from the past... Got tasked to mange an aging Access 2000 adp used to manage data residing on SQL 2005 server. On one of the dataforms, whenever I try to make a change to a field and save the change back to the database, it times out after…
My Access 2000 application is generating a PDF from a snapshot of a report using ReportToPDF.
After I have the PDF file generated, I am converting it to binary and saving to MS SQL Server. I'm looking for a way to encrypt it before I save it to the…
I have a Delphi 2007 app that interacts with an Access 2000 database. I have made changes to the database structure (addition of fields) and need to make them visible in the Delphi application but that is proving difficult. I made a minimal Delphi…
So I am having a very weird issue, At first my code to insert items into my access database stopped working, it is a simple code like this:
using (OleDbConnection myCon = new OleDbConnection())
{
OleDbCommand cmd = new…