Search results

  1. T

    Using merge to printer

    Are you able to use a "mail merge wizard" under "tools"
  2. T

    Echo On: "NO"

    Thank You It works fine!
  3. T

    Echo On: "NO"

    Where and how do I write in this code that is a command button to open up a form to set the Echo off. I know how to do it in a marco but not how to write it in VB code. Below is the VB code for my "open form" button... Private Sub LookUpOpenFormButton_Click() On Error GoTo...
  4. T

    Printing reports

    if no one responds... attach a copy of your dbase and I'll adjust your print button to select the specified record you want to print.
  5. T

    Printing reports

    Printing Report On my form I attached the macro to a command button named Print Report. But basically the macro should reference the report you want to print. [ID]=[Forms]![frm: Respondents]![ID] the ID (identifier from the report) = the [form]! (name of form you place the macro on) [frm...
  6. T

    Printing reports

    Creating Macro to View specific form record This is how I do it
  7. T

    link table to excel

    There may be more than one way to do this The way I link an Access Table to an Excel worksheet is to... 1) Open Excel file 2) Under Menu option Data select Import External Data 3) The import external data dialogue box appears 4) click on the properties first 5) On the external data range...
  8. T

    Merging Excel file into multiple tables?

    sorry it took so long my pics were to big. After you append the information you can use and "update query" to attach the appropriate primary key instead of appending the primary key.
  9. T

    Merging Excel file into multiple tables?

    Matching Fields In the query design for "Append Table" you do not have to match the names to each other. You are able to select which column to append the information. I will send you an example. You can use an ID number as the primary key or you can use the person's name instead.
  10. T

    Need some help with Graphs on Report..

    Report Graphs Can you send sample data in an excel graph that represents how you would like it to look in Access.
  11. T

    Merging Excel file into multiple tables?

    Merging Excel In the interest of saving time you should "import" your excel file to Access and then "append" the appropriate fields, in a query, to each of your tables you have predefined in Access. You will still need to identify your primary key you want to use to link your tables together.
  12. T

    Query uses ALike instead of Like?

    what if... you just typed...*work* does access change from "like" to "alike"
  13. T

    Query uses ALike instead of Like?

    Like "*work*"... the sting has to have an astrick before and after the word.
  14. T

    Convert report to tif

    I understand I also use .tiff files to copy my reports to powerpoint as pictures. The only way I found to create a .tiff file is to convert the access report to a .pdf file. Adobe Acrobat has trials you can download from their site for free. Once you create a .pdf in Adobe Acrobat you can save...
  15. T

    scroll down mouse how do i stop it?

    Stopping the Mouse Wheel from Scrolling Search the forum for Jet46 "Another Mouse Wheel Option" he has a simple code you can copy and paste into your database that will stop the scrolling. I've used it and highly recommend it.
  16. T

    Convert report to tif

    .tif files I usually create pdf files out of my report. If you have Adobe Acrobat installed on your computer you can print the report to Adobe Acrobat which coverts the report to a pdf file and then in Acrobat save the file as a .tif file.
  17. T

    Add values from a form

    Jet46 Mouse Wheel Disabler I used the code that Jet46 wrote for disabling the mouse wheel which works pretty well: Private Enum wsTrigger MyWheel = 1 NotTheWheel = 2 End Enum Private mWheel As Boolean Private ValidationTrigger As wsTrigger Private Function WheelSpin() As Integer WheelSpin =...
  18. T

    Update Table with Option Group Label

    Thanks I'll search the site for this topic. I can't believe such a small instrument can cause a boat load of issues.
  19. T

    Add values from a form

    Using bound fields How do you keep the mouse wheel button from scrolling to the next record if you use bounded fields vs. unbound fields.
  20. T

    Update Table with Option Group Label

    Unbound fields I used unbound fields in my form to keep users from using their mouse scroll button when moving up and down form. I set a control button marked "Submit Form" to update the underlined table with the form answers. Once updated the table reads the numbers. I need to know the best...
Top Bottom