![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
When I am programming, I want to view recordsets that I've created on the fly. I open them with something like: set tTable = CurrentDb.OpenRecordSet("select fRecNo,fDesc from tDrivers") If I executed this line, and interupted the program, what is the fastest way to view the resulting recordset to make sure things look all right? |
#3
| |||
| |||
|
|
When I am programming, I want to view recordsets that I've created on the fly. I open them with something like: set tTable = CurrentDb.OpenRecordSet("select fRecNo,fDesc from tDrivers") If I executed this line, and interupted the program, what is the fastest way to view the resulting recordset to make sure things look all right? |
#4
| |||
| |||
|
|
David wrote: When I am programming, I want to view recordsets that I've created on the fly. I open them with something like: set tTable = CurrentDb.OpenRecordSet("select fRecNo,fDesc from tDrivers") If I executed this line, and interupted the program, what is the fastest way to view the resulting recordset to make sure things look all right? Define the sql with a string variable and do a debug.print on the string before executing the above. Cut the statement from the debug window, paste into an SQL view of a query and voila! Sounds involved, but I do this all the time and it works fine. |
#5
| |||
| |||
|
|
When I am programming, I want to view recordsets that I've created on the fly. I open them with something like: set tTable = CurrentDb.OpenRecordSet("select fRecNo,fDesc from tDrivers") If I executed this line, and interupted the program, what is the fastest way to view the resulting recordset to make sure things look all right? David |
#6
| |||
| |||
|
#7
| |||
| |||
|
|
Aha, you too ;-) |
![]() |
| Thread Tools | |
| Display Modes | |
| |