| Thread | Last Post | Replies |
|
| Default Value In Access | 01 Jul 2005 00:46 GMT | 1 |
I need to update all the default values of the fields in Access. I don't know what fields have default value. So, I open all the tables and look throught all the fields. Would you guys point me to a better way to do this please?
|
| Problems updating Fox Tables from vb | 30 Jun 2005 21:22 GMT | 1 |
The error I'm getting is : Multiple-Step operation generated errors. Check each Status value. Throughout this whole process I get the same error everytime I tryto update the record set.
|
| Opening an Access 2000 database | 30 Jun 2005 20:59 GMT | 5 |
I am trying to open an Access 2000 database. The book I am reading says to go into the Components dialog box and select the Microsoft Active Data Control 6.0. I go into the components dialog box but the Microsoft Active Data Control 6.0 is not there. I do find an entry for ...
|
| Currency Formats Not Coming Thru | 30 Jun 2005 14:49 GMT | 2 |
I have an Access DB and one of the columns is set to a Currency type. I get the records into a variant array via... If myConnection.State = adStateOpen Then myRecordset.Open "SELECT * FROM " & sTable, myConnection,
|
| "String data, right truncation" | 30 Jun 2005 09:54 GMT | 2 |
I get the following error message when i try to open a ADODB Connection from a Visual Basic 6 application. Error: "String data, right truncation" Actually, this application works with no problem at all of the customers
|
| SIMPLE VB to SQL question I am sure | 30 Jun 2005 01:43 GMT | 1 |
I am trying to create a simple utility in VB that sits and watches for a text file in a specific location, once it sees that file (I can handle up to here) It needs to import the text file and write it to a SQL table. Sort of lost on where to start.
|
| Dim db As Database doesn't work | 29 Jun 2005 20:11 GMT | 6 |
I am now working in Access 2002 and am trying to define a recordset in my current database. In Acc 2000 I used to be able to define an object as type "database", but Access 2002 does not recognize the type. Do I have something turned off or is there a new way to open a ...
|
| Creating a new Access database file | 29 Jun 2005 16:15 GMT | 1 |
I'm using VB6 and Access 2002. I've been unsuccessful in creatinf a new Access database from code. Can someone point the way for me? Thanks alot in advance. J
|
| check if object is set | 29 Jun 2005 16:14 GMT | 1 |
Is there something more elegant than the following line to check (in vba) whether and object is set? Dim frm as form If Not frm Is Nothing Then
|
| Creating a new Access database file | 29 Jun 2005 16:09 GMT | 1 |
I'm using VB6 and Access 2002. I've been unsuccessful in creatinf a new Access database from code. Can someone point the way for me? Thanks alot in advance. J
|
| Error attempt to change the same data at the same time | 29 Jun 2005 15:58 GMT | 12 |
In my VB6 application (use ADO 2.8), I get the error "-2147217887 : The Microsoft Jet database engine stopped the process because you and another user are attempting to change the same data at the same time" in rs.Update when trying to update a value of an Access query.
|
| Insert into problem - Access / VB .NET | 29 Jun 2005 03:24 GMT | 6 |
I have an 'Append Query in Access which just inserts into all 4 fields (simple insert) I have created a OLEDBConnection and a OLEDBCommand. The OLEDBConnection connects fine to the db
|
| Add relationship in access | 28 Jun 2005 18:45 GMT | 1 |
I use VB6 and Access 2002. How do I use the SQL alter table statement to: create a one-to-many relationship, enforce referential integrity,
|
| Updating a hierarchical recordset | 28 Jun 2005 15:26 GMT | 3 |
I have a hierarchical, static, disconnected ADO recordset. I attempt to update one of the fields in it: -------------------------------------------------------------- with oRS
|
| Query works in Access but not in VB | 28 Jun 2005 15:26 GMT | 1 |
The following query returns the all designs with the word Christmas in it when executed in Access but returns no records when executed in VB 6.0 Select * from PI where DesignName Like '*Christmas*' Could someone help point me in the right direction please.
|