| Thread | Last Post | Replies |
|
| Set field in table with only one record | 22 Jan 2004 19:31 GMT | 2 |
I have a table with only one record that I use to store some settings. What is the easiest way in VB to set the value of one of the fields. For some reason, the line of code that is there is: tbl.fld = newvalue
|
| SQL command ROUND unknown | 22 Jan 2004 19:16 GMT | 4 |
does someone know why the SQL command ROUND is unknown on my Windows XP Home system using ADO 2.7 ? Executing the SQL command in Access everything works fine. On my Win2k PC
|
| Can you call VB from SQL? | 22 Jan 2004 18:10 GMT | 4 |
Is there a way to call a VB program from a SQL stored procedure? Thanks. Michael
|
| How to connect to current Access db using ADO? | 22 Jan 2004 17:14 GMT | 2 |
I am new to ADO, sorry for the lame question. How do I open a recordset in a current Access database? In DAO I used: Set db=CurrentDb() How can I do the same thing with ADO?
|
| How to connect to existing Excel file? | 22 Jan 2004 17:11 GMT | 1 |
I tried to use this code to connect to an existing Excel file from Access database: Dim TargetFile as Object Set TargetFile=GetObject("MyFile.xls")
|
| ADO and SELECTing dates | 22 Jan 2004 16:49 GMT | 1 |
Can anyone help I am trying to perform a select query from within VB connecting to a SQL Server 2000 database. I am trying to select and in the where clause i want to search for a date.
|
| Delete last x records from RS | 22 Jan 2004 16:37 GMT | 4 |
The program I wrote is supposed to keep track of X recent phone calls. Every morning the program communicates with a device and collects the calls log of last night. Is there a quick way to keep only the last X and delete all the previous
|
| Updating a boolean value in an Access DB | 22 Jan 2004 16:30 GMT | 2 |
I'm having problems updating a boolean value in an Access database. The value is defined as a Yes/No type that I've always assumed could be treated as a simple boolean. To update the value, I retrieve the data from the specified table into a DataTable from a OleDbDataAdapter. I ...
|
| Method ~ of object ~ failed | 22 Jan 2004 12:58 GMT | 2 |
I wrote an application in VB6 SP5 that connects to an Access 97 database. I am using ADO 2.7 SP1. The program has been running fine for over a year. It was installed on a Windows XP computer and now the application cannot connect to the database anymore. I read that this means ...
|
| Time out expiry while deleting huge data | 22 Jan 2004 08:03 GMT | 2 |
I am getting the Time out expired error in VB in the following scenario 1. Table named "EntityMaster" which has around 15 fields and around 150.000 records. DELETE FROM EntityMaster WHERE DataSource = 'R'
|
| DAO 3.6 distribution on WinXP | 22 Jan 2004 05:13 GMT | 1 |
I read in MSDN (here: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmdac/html/mda c25.asp) that WinXP installs MDAC 2.7, and have also read that as of v2.5 of MDAC the Jet DAO dlls are not included. So how are Jet 4/DAO 3.60-based solutions supposed to be ...
|
| Setting the timeout for retries when writing to access | 22 Jan 2004 03:53 GMT | 1 |
We are currently writing to an Access database using DAO. What we need to know is if there is any way to set the timeout time to write to the database through code in milliseconds. for instance, right now the timeout is set at 1 second. We need to set the timeout at 100 ...
|
| AutoTpe with keypress | 22 Jan 2004 02:36 GMT | 2 |
Is it possible to use the keypress to autoinser/autotype a character into a string following a specified format(eg 22-4444-7777)? example-- After entering two characters (12) into a txtBox which is a datafield for my ado database eg
|
| 2nd question about Access 97 vs. 2000 | 22 Jan 2004 01:12 GMT | 3 |
Are there any distinct advantages to running a vb application with Access 2000 tables rather than Access 97 format? Performance, integrity issues, etc? I currently have a application with Access 97 format and am considering
|
| ADO recordset with state of 0 | 21 Jan 2004 19:11 GMT | 4 |
Can you think of any reason why a recordset gained fro set rs = cndb.execute("sp_mysp1" might not work. It doesn't raise an error, but after the call to execute, gains a state of zero, and not 1 - and hence all subsequent operations seem to generate 'operation not allowed when the ...
|