Search results

  1. W

    Excell spreadsheet

    as an access rookie i learn new things then master them. i have an excell spreadsheet from the previous system we used and i need to duplicate this spreadsheet and all its headings, cells and formulas into a form in the access database, Where and how do i do this...? or do i just import the...
  2. W

    Invalid Use Of Property

    GoodMorning All My code below is supposed to send automatic emails but it generates the following error "Invalid Use Of Property" when i compile it, how do i get rid of this error...? Private Sub Form_Timer() If TimeValue(Now) > CDate("07:00") Then DoCmd.SendObject Me.TimerInterval = 0...
  3. W

    Automatic Email

    Hi Ladies and Gentleman, my intentions is to send an automatic email every morning at 10 to the suppliers who has outstanding deliveries. Private Sub Form_Timer() SetWarnings = True If TimeValue(Now) > CDate("10:00") Then Me.TimerInterval = 0 DoCmd.SendObject acSendForm, "WaldinPODetails"...
  4. W

    DoCmd.SendObject

    Greetingz To What OnFunction do i apply the SendObject or do i create an unbound field on the form and apply it to that field...?
  5. W

    Automatic Emails

    GoodMorning/Afternoon I have a function on my Db that sends emails however i want to automate the entire process. So what do i need to do to get the email to send at 10:00 every morning automatically (what is the code to achieve this).
  6. W

    saving data if it doesnt exist in the table

    hi Guys I have a subform called QuotationParts and a field called products which is a combobox and gets its data from a table called Parts. e.g: if i scroll down the combobox looking for a part called slamtray but it exists under the name cradle i wont find it. is there a way that i can save...
  7. W

    Dcount

    im not sure if this is how Dcount works but i would like if "Field" could display how many times "Form" appears under the same TrackID. "Form" is the additional form, so when a Quotation is done there can be several additional forms completed for the same job, it will be helpful to have a...
  8. W

    Difficulty With New Table

    Good Morning I have a huge problem adding fields From a table called "QuotationAdditionalDetails" to a FORM which is based on a table called "Quotation". Everytime i add the FIELDS from "QuotationAdditionalDetails" to the Form, it changes my Query, which changes my system.:eek: what can i...
  9. W

    Validation Rule

    Greetings to Everybody i have 3 fields who's Data Type is set to number and they are actually text fields, now to change the data types i need to delete its existing relationships, ive come too far is there perhaps a expression that i could enter as a validation rule to allow these fields to...
  10. W

    Data format

    Good Morning All I added a new page to a form but in all the lookup fields it only displays numeral charachters, how do i change the data format of this page to text like the rest of the form.
  11. W

    Command Button Macro

    using WHERE= id like my command button to open a form called "QuotationAdditionalsDetails" using the field "AdditionalsDetailsID (Primary Key) in the table "QuotationAdditionalsDetails" please assist me in this
  12. W

    The Search Key Was Not Found!!!

    When opening a Report i get an error that says the search key was not found, after clicking ok it opens the Report normally, but i could do without the error. how do i get rid of this problem.
  13. W

    Tab has no restrictions

    when i toggle through my fields using tab, once it gets to the last field it doesnt stop or begin from the top, it creates a new record, how do i restrict it to stay on the current record.
  14. W

    Autonumber not counting

    GoodMorning My AutoNumber Field Remains Empty is there something i Missed?
  15. W

    Adding a Tab Form

    hi all, how do i change a form into a TAB form, and make it appear in my main table as a Tab
  16. W

    Creating a new Main Table

    Good Day My Main Table in my Database is "Quotation", what do i need to do in order to create a new Main Table called "Quotation Tracker" and "Quotation" would now be under "Quotation Tracker"
  17. W

    Dcount

    please advise me how to go about using Dcount, the web is very confusing ive spent 1full day trying to make it work but to no success, and time is against me Combo553 is the column that should display the Dcount Values. RegistrationNumber would display the main quotation. the form name is...
  18. W

    Clipboard Messages

    Good Morning all how do i turn clipboard messages off, or choose not to save data on to the clipboard without the pop-up box.
  19. W

    ComboBox!!!

    Great Morning Experts. In my form I have a ComboBox Field. The Row Source Currently Tells the ComboBox to display all the current entries in the database, however, i only want records related to the entry im in to be displayed in the combobox. So using code, how do i tell the ComboBox to...
  20. W

    GoToRecord onClick

    DoCmd.GoToRecord , , acGoTo = [TrackID] i have a hypelinked ComboBox Field and when i select the TrackID (Contents in field) i would like the form that belongs to the TrackID to open, my code returns an error that says "you cannot go to the specified record" and sometimes opens forms with a...
Back
Top Bottom