If you want to keep it simple, just try to open the table recordset:
'Check if an ODBC connected table is reachable
Function IsODBCConnected(TableName As String) As Boolean
If Not TableExists(TableName, True) Then Exit Function
Dim rst As DAO.Recordset
On Error Resume...
Looking at the database you posted several posts earlier: if you select the query 'ZooMobile Cost Query' and then via the Database Tools click 'Object Dependencies' you will see that the forms you mention depend on this query. Open the query in SQL mode and you will see that the first lines...
The other way is simply using less joins, so Access can handle it better. Many values are now stored directly in the main table instead of a look up table, implying increased redundancy.
This also often occurs when the form is still trying to order or filter the dataset on that specific removed field. Remove these references in the properties of the form.
For your first problem, the following query works (unfortunately you do not have too many examples in your database, so it's hard to check the correctness). I'm pretty sure there might be a better solution.
SELECT D.PROVIDER_ID
FROM (
SELECT C.PROVIDER_ID, C.PATIENT_ID
FROM (...
Hi all,
I'm having some serious performance issues with my query. All tables are setup with unique indexes. The main table has ~500k rows and most LUTs have <300 rows (except for tblDataConnected, which has ~250k lines). I'm using Access 2010 with an ACCDB database on XP. Not all columns...
OK, so you are using a text box to display the data. We are talking about the same thing here. Hence, my code above still works.
Replace 'TextBox' with 'BuyOrSell' and see if you can get it working.
Personally I wouldn't split the table since that is not necessary. You will need a reference in each table to be able to connect the corresponding rows from both tables. The above-proposed setup with the ID references provides excellent ways of managing your data and has little redundancy. Most...
Yes, I understand, but this still doesn't tell me how you display the value, or in what type of control the value is displayed.
If you open the properties window of the control it is displayed in, Access will mention the type of control in the first line.
Yes, you are exactly right! I will elaborate a bit, so you can decide for yourself in the future:
If specific data in a specific field is very likely to be present in multiple rows, then it is repeatable. Then you can consider to create a look-up table with unique IDs for use as a reference in...