Search results

  1. C

    Calculating cost from 2 tables

    In the control source property of the textbox that will display the total price =DLookup("[UnitPrice]", "ProductList", "[ProductID] = " & me!cboProduct) * me!txtQuantity BTW, direct from Access help on DLookup Function: You can also use the DLookup function in an expression in a calculated...
  2. C

    Automation Error

    In the Macro, within the OpenReport command, is the report you are trying to open listed in the dropdown? Did you do a repair and compact on the new db?
  3. C

    Automation Error

    Are you really in St. Paul? :) Yep, I love livin' and workin' in this "sleepy" little town.
  4. C

    Automation Error

    My suggestion as this point would be to create a new database in Acc97, then import all of the objects from the corrupt database. You need to make sure your relationships are imported also. Then do a repair and compact on the new db. Hope this helps!
  5. C

    linking outlooks address book with MS Access

    http://www.microsoft.com/downloads/release.asp?ReleaseID=12878&area=search&ordinal=1
  6. C

    Quick Question- SendObject

    Create a new module, name it "modSendAttachments" insert the following code Public Sub SendMessage(DisplayMsg As Boolean, strObjectName As String) Dim objOutlook As Outlook.Application Dim objOutlookMsg As Outlook.MailItem Dim objOutlookRecip As Outlook.Recipient...
  7. C

    Listbox selections to textbox

    Try: txtList.value = txtList.Value & ", " & lstOptions.value This will separate the entries with a comma, if you don't want the comma, use txtList.value = txtList.Value & " " & lstOptions.value
  8. C

    Subform does not work inside of tab

    Is your combobox on the master form or subform?
  9. C

    Subform does not work inside of tab

    How does your subform relate to your master form. Like if your master form displays customer information, your subform might display all orders for that customer. What is your relationship?
  10. C

    Subform does not work inside of tab

    Open the subform in design view, then open the datasource query. Delete any criteria referring the Master form. Like maybe you have as a criteria =Forms![MasterForm]![ID]. Do this for all subforms. Then open the master form in design view. Click on each of the subforms and then show the...
  11. C

    Multiuser's environment problems

    Check the other workstations for missing references. Open the module and select Tools then References. Are any of the checked references preceded by MISSING: ?
  12. C

    Listbox selections to textbox

    Post the code you have so far.
  13. C

    Subform does not work inside of tab

    Don't hard code the relationship to the master form in the query for the subform. Create the relationship with the Master/Child properties of the subform.
  14. C

    linking outlooks address book with MS Access

    If you are using Access XP, you can simply link the address book as a table. Choose link table then select Outlook from the "Files of Type" dropdown. I know you can't do this in Access97, but I'm not sure about Access2000.
  15. C

    Quick Question- SendObject

    I've never been able to use SendObject to send more than one attachment. You have two choices. The first choice is to export the report as snapshot and rtf formats to create temporary files. Then create an outlook object that would attach the two files that you just created. Or, you can use...
  16. C

    Help!!

    You can create a command button that will allow the user to select a file name and store the location of the file in a table that associated the file with a patient. Is this what you are looking for?
  17. C

    Using Email with Microsoft Access

    Do you have a field on your form named txtEmailAddress that contains an email address for the recipient?
  18. C

    Automating a query

    I sent you a pm. Doesn't matter, email it to me at cgaborik@christensenfarms.com
  19. C

    docmd sendobject email

    Try placing a breakpoint on the first line of code and step through to get a better idea of when the code stops sending emails. Since you have an On Error Resume Next statement as an error handler (bad idea, in my opinion) you may be skipping records that you think the emails are fine, but maybe...
  20. C

    Tab Controls on a Form

    ;) Brilliant minds think alike!
Back
Top Bottom