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 SkipVought 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: *

  1. Stickarm

    Max File Length on Import Specs

    Is there a maximum file length on importing an external file into access, I am having trouble defining fields after 500 charachters, is this a limit in access?
  2. Stickarm

    Default Mail Merge to Word 97

    Try checking the references in the database, You may have to change the reference to word to the older version. I can't try this because my PC is not set up the same as yours. Hope it helps Phil
  3. Stickarm

    My frontend continues to grow even after compacting

    Another thing to keep an eye on is any "Make Table" queries that you may be using, especially as the source for reports. Each time this process is run it expands the size of the database. Even though in many of these processes, "temp" tables are deleted, the database still...
  4. Stickarm

    sendobject problem after installing Office 2000 SP3

    TBrowne, Our Agency ran into the same issue a while back, we came up with some code that kind of fools outlook but is not reliable. What we ended up doing was designating a specific PC and user ID to run the process. We did not install the security patch on that machine, we also set it up to...
  5. Stickarm

    I have an Access 97 Database (FE) t

    Bastien, I've checked the references and there are no conflicts, I tried using different DAO references but none work. Phil
  6. Stickarm

    I have an Access 97 Database (FE) t

    I have an Access 97 Database (FE) that has a 97 (BE) on a server. In the database there is a procedure that tra sfers the results of a query to a text file (in a designated folder on the server) for a mail merge. DoCmd.TransferText acExportMerge, , "qryACK&quot...
  7. Stickarm

    Access 2000 MDE from Office XP?

    I just got a new computer that came loaded w/ Office XP. Our Department is running Office 2000 and 97. I have created a database in Access 2000 format, but am unable to create a 2000 MDE file. Is there any way to do this without converting to Access 2002 first. If not is my only option to...
  8. Stickarm

    Access 2000 front end for SQL 7.0

    There are some good tools at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql7/html/access2sql.asp to help convert Queries to SQL Server. Hope this helps. Phil
  9. Stickarm

    how to automatically import data?

    You could add the access db as a scheduled task, and create an autoexec macro to lauch code to do the import of the data and then close the db.
  10. Stickarm

    simple stored proc undate problem

    Try using the update this way UPDATE tbl_Customers set CustomerTitle = @CustomerTitle ,CustomerFirstName = @CustomerFirstName , etc.... WHERE CustomerID = @CustomerID Phil
  11. Stickarm

    Date field question...

    On the double click event of the Datefield.txt just CalControlName.visible = true Then input this code on the form where the cal.control and the date field are. This will populate the Datefield.txt with the CalControlName value when you double click on a date on the calender control. Give it...
  12. Stickarm

    Date field question...

    Cal Controls can be found under More Controls on the Toolbox Toolbar
  13. Stickarm

    Date field question...

    Yes, you can by using the Active X Calendar Controls. What I've done in the past is have a Text Box which will hold the date field. And on the form have a calendar control (an actual calendar) that is not visible. I make the user double click in the text box,and on that event I make the...
  14. Stickarm

    KEYWORD SEARCHING

    Try this... CSearch = CSearch + "AimDescription like """ & _ ("*" & mmAimDescription& "*") & """"
  15. Stickarm

    KEYWORD SEARCHING

    What does the SQL Script behind the query look like? That should help you write the VB Code.
  16. Stickarm

    Query Select Field as String

    "[ItemType" & [forms]![formname]![numberfield] & "]" would this work?
  17. Stickarm

    Prompt user to pick from list when running a report

    You can create a form with a combobox or listbox that has the values for them to select from, then pass the value from that field into the query criteria. Phil
  18. Stickarm

    Upsizing Access 97 to SQL 2000

    What does the overflow message refer to? Phil
  19. Stickarm

    Form appearing blank when no records to be displayed

    I'd suggest on the afterUpdate event for the year field if you put some code to open a recordset that contains members for the selected year and check the number of records, and if = 0 then display a message box indicating no records for the particular year and exit. Hope this helps. Phil
  20. Stickarm

    data pass thru

    IS your combo box named WorkerName and is your text box named WorkerID? If so, when you click on afterupdate event select the (...) at the end of the line, then select "code builder", then under "Private Sub WorkerName_AfterUpdate()" input the text: WorkerID=...

Part and Inventory Search

Back
Top