Search results

  1. B

    Could Not Find Installable ISAM

    Okay, thanks Bob, that is a good start I'll check out the website.
  2. B

    Could Not Find Installable ISAM

    Hey Bob, I do have access but everyone else out in the field has that server mapped to a different Drive Letter so I figured the easiest way was to just have them set the connection on their end. Maybe I am going about this all wrong is there an easier way?
  3. B

    Could Not Find Installable ISAM

    I have an Access 2003 Front End that I am going to email out to 50 people and I want them to be able to push a button that will set the connection to the linked tables on the Back End. Below is the code I have but everytime I execute it I get "Could Not Find Installable ISAM" Dim tbl As...
  4. B

    Trying to Pass Combo Box Value to DLookup

    BobLarson, thanks for the tip, I usually don't put spaces in names and certainly won't after this.......
  5. B

    Trying to Pass Combo Box Value to DLookup

    JDraw, thanks for the help, I took your advice and I also added brackets around [Report Name] and that worked. Thanks again..
  6. B

    Trying to Pass Combo Box Value to DLookup

    All, I am trying to pass the value of a combo box to a DLookup function to grab the Report Description field from a table. I keep gettting and error saying there is a missing operator in query expression (Report Description) txtRpt_ReportDescription = DLookup("Report Description"...
  7. B

    Need CrossTab Style Report

    Ok, I figured it out... If I add In(1,2,3,4,5,6,7,8,9,10,11,12) after the Pivot Function it Works!
  8. B

    Need CrossTab Style Report

    I have a Cross Tab Query that will Trend Calls by Month. I would like to be able to create a Report where the Months will Trend out as Columns. The report will need to be able to grow (Pick up New Months as the Data is entered) because I only have Jan - Feb data. Is this possible? I don't want...
  9. B

    Store Value of Text Box on Form after Form is Closed

    Thanks DCrake that worked!
  10. B

    Store Value of Text Box on Form after Form is Closed

    I have a Login form and I would like to store the login in a variable for use on another form how would I go about doing this?
  11. B

    Use Dlookup to Validate User

    Rural Guy thank you very much that worked like a charm!
  12. B

    Use Dlookup to Validate User

    I am trying to use the code below to validate a User when they log into the database but I am getting RunTime Error 2001. Private Sub ButtonLogin_Click() Dim strUserName As String Dim strPassword As String Dim strUserNamePassword As String 'Combine User Name and Password entered into...
  13. B

    Refresh ODBC Connection to SQL Server

    I have a Database I created on Sql Server and I have created a User Login: FinancialAnalytics with Password: Finance. I want to be able to link Access to this Database and distribute to 10 or 15 people. I want everyone to use the same Login and Password mentioned above to access the data...
  14. B

    Getting RunTime Error 2001

    Thanks VbaInet that worked perfectly...
  15. B

    Import Fixed Text File into existing table

    Option 3 seems like the easiest way "Import using TransferText into a Staging table then compare rows somehow? I am leaning towards this option." Import using TransferText into a staging table and use an update query to update the Main table based on some parameter. DoCmd.TransferText...
  16. B

    Getting RunTime Error 2001

    I am trying to execute the code below and I keep getting a RunTime Error 2001 'You canceled previous operation' When click debug it highlights the row: strLogin = Nz(DLookup("[QA LOGIN]", "Tbl_QA_Representatives", "[QA LOGIN]= " & Forms![FRM_LOGIN]![Login_txt_Id]), 0) I have attached a...
  17. B

    Loop thru table Column

    I have an access table that has one column named "Name". I have a login form that requires you to enter your name. I would like to take the value of the Name text box on the Login form and search for that name in the table if it exists I want login to procede and open a given form if login name...
  18. B

    How do You set up a DSN Less Connection

    I have a Access Database with 2 linked tables that are linked to SQL Server. At some point I want to be able to distribute this database to a couple other locations without having to create an odbc on the users end. How can I setup up a DSN Less connection that will connect the 2 tables to SQL...
  19. B

    Connecting to SQL Server 2008 using Access 2003

    I have SQL Server 2008 Express and I have Access 2003, I want to use SQL Server as the back end and Access as the front end. I will need to distribute the Access front end to several people across the country but the SQL Server will reside with me. What is the easiest way to connect to the SQL...
  20. B

    Trying to Load Excel Data into Website

    I have an excel worksheet with a list of invoices and I am trying to write a macro that will load an Invoice into a text box on a website then click the Insert Button to move the invoice over to a list box....Seems pretty simple... My code runs but now invoices get entered.. essentially nothing...
Back
Top Bottom