Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: btalon
  • Order by date
  1. btalon

    Use query like a stored procedure in Access 97

    I've always used the DoCmd to open the report, but it doesn't really give you any programming flexibility besides the criteria unless you do the coding on the report itself. I haven't been able to find another way to open a report using VBA where I can set the recordsource when it is opened...
  2. btalon

    Use query like a stored procedure in Access 97

    My next goal is to open a report passing the parameters down to the query the report is running off of. I haven't been able to get this to work successfully so far. In the past I have set the recordsource for the report to a recordset in the Report_Open sub, but I had to code the Detail_Print...
  3. btalon

    Use query like a stored procedure in Access 97

    I should mention that I couldn't use the qd.execute. The execute won't work with a select query so I opened a recordset off of the queryDef object. Set db = CurrentDb Set qryDef = db.QueryDefs("qryBookedInvoicedByGraphic") qryDef.Parameters("[@startDate]") = txtStartDate...
  4. btalon

    Use query like a stored procedure in Access 97

    I should mention that I counldn't use the qd.execute. The execute is only allowed with an action query. So I opened a recordset off of the queryDef object: Set db = CurrentDb Set qryDef = db.QueryDefs("qryBookedInvoicedByGraphic") qryDef.Parameters("[@startDate]") = txtStartDate...
  5. btalon

    Use query like a stored procedure in Access 97

    I should mention that I couldn't use the qd.execute. The execute won't work with a select query so I opened a recordset off of the queryDef object. Set db = CurrentDb Set qryDef = db.QueryDefs("qryBookedInvoicedByGraphic") qryDef.Parameters("[@startDate]") = txtStartDate...
  6. btalon

    Use query like a stored procedure in Access 97

    jsteph, that worked beautifully. A star for you. Thanks.
  7. btalon

    Use query like a stored procedure in Access 97

    I have created queries in the past with a form input hardcoded in the query "WHERE....LIKE txtTextbox". That is not what I'm trying to accomplish. I want to call the query in from the VBA code similar to the following: db.execute "queryname", variable1, variable2. I don't want to hardcode the...
  8. btalon

    Use query like a stored procedure in Access 97

    I am wanting to use a query like a stored procedure and pass it variables on the fly using VBA. In the past I have assigned the variable to some sort of input control to get the information, but I don't want to hardcode that object into the query. I wan't to pass it the information when I call...
  9. btalon

    DOS Hangs during FTP mput command

    Still doesn't work. I never get the "200 Port command successful" message. Can anyone tell what the 200 port command is or does exaclty? After the 200 Port command successful there is usually a "150 Opening data connection for 'the filename'" and I don't get that either.
  10. btalon

    DOS Hangs during FTP mput command

    ftp ftp.url.com I enter username I enter password binary I'm sitting in the directory where the file resides that I want to ftp. I then use: mput JM*.us5 Then it asks to confirm the mput and I put "y". Then it hangs there for a little bit, then gets dropped. I've checked the FTP server...
  11. btalon

    DOS Hangs during FTP mput command

    I'm not using a client. I am in DOS executing the commands manually.
  12. btalon

    DOS Hangs during FTP mput command

    I'm having intermittent problems with DOS on XP and the FTP command mput. DOS hangs when executing the mput command until the connection is teminated by the host. I don't see firewall or router issues blocking the request to the FTP server. The actual FTP server never receives the request to...
  13. btalon

    File not saving "because the file is in use or was left open"

    We've had the same problem here. I've posted about this issue on a couple of forums and have had no luck. When the Macs are indexing the directories, it's leaving the resource forks open on the server (using a SMB mount on our 2003 server as opposed to the AFP mount on the NT server we used to...
  14. btalon

    OS X (10.3.9) won't Boot!

    Does it boot into the Unix shell? From there you can copy the files back into the system>library>fonts folder (assuming you know Unix). I had a user do the same thing two days ago, was having problems with extensis and fonts and moved the system fonts to the desktop. I copied the fonts back to...
  15. btalon

    Classic Won't Start in OSX 10.3.9

    It wasn't a permissions issue. I ended up having to turn off the Apple Menu Options Control Panel under the extention manager for classic. It runs fine now.
  16. btalon

    Resource Fork File Issues

    It looks like the mac is indexing the directories and leaving the resource forks open everytime the user goes into a directory and it indexes that directory. The strange thing is that it doesn't happen with all the Macs, all but one or two. All are using the same operating system.
  17. btalon

    Resource Fork File Issues

    We've been running into open file issues with our OSX 10.3x machines. When a user opens a file on the Windows 2003 server, then closes it, the hidden resourse fork (.filename) remains open. When another user opens that same file, the file disappears off of the server (the viewable file to the...
  18. btalon

    Classic Won't Start in OSX 10.3.9

    I cannot get Classic to start on a couple of G5s running OSX 10.3.9. When I setup a new user account with admin rights I can't get Classic to start. I happens on more than one machine. However, on the user accounts that are already setup (prior to updating to 10.3.9), there is no problem...
  19. btalon

    Access Jet 4.0 Error

    I am having problems with Access 2003. It gives me the following dialog box when starting access. Some of the wizards don't work (like importing and linking tables wizard it gives the ActiveX Can't create object Error) and when I tried to download and install Jet 4.0 Service pack 8, I says that...
  20. btalon

    Print Queue Problems

    It's been working fine for more than a year until recently.

Part and Inventory Search

Back
Top