Search results

  1. motleyjew

    trigger when calculated field changes

    Yeah, I know its not preffered but it is what was requested of me to do. I didn't think there was a way to do it the way access is now. Its good to see that this may be possible in 2010. I need to do some research on the new features. I wasn't aware there was documentation available yet. Thanks...
  2. motleyjew

    trigger when calculated field changes

    I have a continuous form that has a unit field and a price field. There is another field that calculates the unit quantity times the unit cost.. Is there a way to check the value of a calculated field before a you enter a record and then check to see if that value changed before the record is...
  3. motleyjew

    Access2003 and Windows Scheduler (Scheduled Tasks)

    I usually run my access automation from VB Scripts and I have the scheduler activate the script instead of the database. Here is the code that I am using in case you would like to try this method instead. You can put the code in a notepad document and change the extension to .vbs . Gregg...
  4. motleyjew

    Access the program opens slowly

    Is your database on a network and is it spilt?
  5. motleyjew

    hyperlink to database on desktop in email

    Paul, Yes I can! This is a great solution. Thank you for solving my problem. I do have a email table that has the username in there so I can have it entered in this way. Thank you again for your help. Let me also let you know that your previous posts have helped me greatly in the past. I will...
  6. motleyjew

    hyperlink to database on desktop in email

    I have an access 2003 database that has a approve/reject email procedure. If someone approves a job, they click the approve button and an email in outlook will pop up with a set message. I would like to know if it is possible to put a link in the email that will send the person to the copy of...
  7. motleyjew

    Screen Scraping to Access

    I use the scripting edition of Imacros. The free version will not give you everything that is needed. http://www.iopus.com/ Gregg
  8. motleyjew

    Combo Box Content not displaying in A2003

    The link below fixed this same type of isse for me. Hope it helps Gregg http://support.microsoft.com/kb/945674/
  9. motleyjew

    Solved Problem with List Box

    I'm not familiar with the .display command. I rarely use listboxes. I just remember the last time I used one, it was based off of a combo box. After i ran the code on the after update on the combo box, I used the requery command at the end and the proper items appeared on the listbox. Sorry I...
  10. motleyjew

    Solved Problem with List Box

    Quick guess. I think you just need to requery your listbox upon entry. me.listbox.requery Gregg
  11. motleyjew

    How to Retrieve the Path for Linked OLE Objects

    I am trying to get the file path from a linked ole object in my database. I am using code microsofts website. Here is the link to the article. I have listed the code below. http://support.microsoft.com/kb/199066 I am able to get the code to work, however I am having a problem when a folder or...
  12. motleyjew

    Question Embed documents

    I'd be interested in seeing some of these functions if you have the time. Thanks Gregg
  13. motleyjew

    Pivot Graphs in Access 2003

    You need to specify in the code what how you want to open it. Try this: DoCmd.OpenForm "GUGraphFilter1", acFormPivotChart Gregg
  14. motleyjew

    Switchboard

    It looks like you sent the wrong file. You most likely tried to send a shortcut rather than the actual database. Gregg
  15. motleyjew

    Running a query with related tables and a null value

    Try this out. I took out the notetable join in Query2 to show all those records that you need. I then made Query3 which is using joining query 2 and your notetable query but showing all records that were in query 2. Gregg
  16. motleyjew

    Internet Forms

    I cuurently use a program by a company called iopus called Imacros to send data from my access database to a website and vice versa. In order to use it with a database you would need the scripting edition. Here is the website for the product. They have some examples tutorials on the site as...
  17. motleyjew

    Same ID field

    No problem. Good luck.
  18. motleyjew

    Same ID field

    Sorry about that. I forgot to add the dame code in the criteria in the record source. Try this one.
  19. motleyjew

    using option box to replace boolean textbox

    If you choose the Option group, not the option button, there is a wizard that will walk you through setting this up. Hope this helps. Gregg
  20. motleyjew

    Same ID field

    Try this out. I took out the autonumber and made the default value of the lead ID whatever is being shown in the Lead Information form.
Back
Top Bottom