Search results

  1. Q

    requery stored procedure in Access form ?

    We create a recordset that the form uses for its data. When we select other records on a different form it does not refresh. How can we requery the stored procedure in Access? .Requery does not work on SQL stored procedures... Thanks
  2. Q

    requery stored procedure in Access form ?

    We create a recordset that the form uses for its data. When we select other records on a different form it does not refresh. How can we requery the stored procedure in Access? .Requery does not work on SQL stored procedures... Thanks
  3. Q

    data view form sorting

    anyone...anyone :) ?
  4. Q

    data view form sorting

    I have a form which displays data in some form of table (not a datasheet). When you double click a row it takes you to another form so it's activated somehow - what is that? Anyway, this data can be sorted by clicking on the top row of any column and selecting ascend, etc. The only problem is...
  5. Q

    dlookup

    So, better to create a SQL query than scan an entire table with DLookup ? Ideally, if you could bring all data back in 1 recordset then that would be even more efficient ?
  6. Q

    dlookup

    Do the Access functions dlookup, etc. cause performance issues when using remote SQL servers where the data is held?
  7. Q

    How do you convert an mdb file to ADP?

    it can but the efficiency is not very good. with an adp, everything is passed to the back end to process rather than the client
  8. Q

    How do you convert an mdb file to ADP?

    How do you convert an mdb file to ADP?
  9. Q

    Will ADP work in office 2003?

    If I design an .ADP project in 2007, will users be able to use this if they only have Office 2003? ...or is there a way of making an exe file with Access projects?
  10. Q

    cannot compile into MDE

    that worked http://www.thescripts.com/forum/thread194636.html What are the advantages to compiling on performance?
  11. Q

    cannot compile into MDE

    no, doesn't seem to. I decompiled by renaming then converted to 2002-2003 (from 2000). Then repaired. Then tried to make mde but same error. ?
  12. Q

    cannot compile into MDE

    I get the following error when trying to compile code int an MDE: This error is usually associated with compiling a large database into an MDE file. Due to the method used to compile the database, a considerable number of TableID references are created for each table. The Microsoft Jet...
  13. Q

    JET transfers entire table?

    I read somewhere that the main difference between JET AND SQL server is that a query rn through JET transfers the whole table across the network to the client machine and then processes it. Whereas, SQL server just transfers the particular record, say if you use a stored procedure. Is this...
  14. Q

    change ODBC DSN to DSN-less

    Our access app currently connects using ODBC DSN settings on linked tables. How do I change this it DSN-less without changing all the code. Is there a way I can put it in a startup module?
  15. Q

    pass through query with parameter

    I have a pass through query but the stored procedure on SQL server requires a parameter. How do I pass the parameter in the following code? At the moment the pass through query just says: EXEC Sproc @Name Dim i As Integer Dim iNumCols As Integer Dim rs As Recordset...
  16. Q

    checkboxes not bound to table

    They are columns in a table. We have a status field but because Access has to bind checkboxes to the data we are having to add a Yes/No field for each of the individual statuses to allow the user to select which ones they want to update. I don't just see why we can't update the original status...
  17. Q

    checkboxes not bound to table

    We have a form where we want users to select invoice numbers. Based on their choice we update a table based on those invoice numbers. The problem is that to have checkboxes on a continuous form it has to be linked to a bit field in the table. We can't keep adding different bit fields as it is...
  18. Q

    reg file for dsn

    I use a reg file to set up odbc dsn. Is there anyway to change this to NT auth as it seems to default to SQL server authentication: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\ODBC\ODBC.INI\CCApp] "Driver"="C:\\WINDOWS\\system32\\sqlsrv32.dll" "Description"="Name"...
  19. Q

    can't get data into recordset

    I'm trying to get the data from a pass through query into a recordset to then put it into Excel. It seems to fail on the querydefs part. I know this code has worked before but the connection is now through ODBC on this database and it seems to be throwing everything? Option Compare Database...
  20. Q

    only get top 3 from the join

    No, sorry. That selects the top 3 records of the whole lot. I want every record in the Invoices table but only the top 3 records for every record in the InvoiceNotes table
Back
Top Bottom