Search results

  1. B

    Web.config help!

    well, I am lost. I am using Visual Web Developer 2005 Express. I would think that it would support this. Maybe I am missing a step with in the authoring program.....
  2. B

    Web.config help!

    Thanks but now I get the following error: Line 27 no names spaces aload.. Line 25: <compilation debug="false" strict="false" explicit="true" /> Line 26: <pages> Line 27: <namespaces> Line 28: <clear /> Line 29: <add namespace="System" />
  3. B

    Web.config help!

    Hi All, I am learning ASP.NET so bare with me. I am using Visual Web Developer 2005 express to create a simple dropdownlist that gets its info from an MS Access table my server. It runs fine local, but not when I uploaded it my site. Exactly what do I need to add to the web.config file? Error...
  4. B

    wondering if it can be done

    You can put all the email addresses in a String. This is based on a table called "names", if the field admin is -1 then they get compiled in a string and emailed. Dim EmailItem As Object Dim fullname As String Dim EMailComment Dim rst As DAO.Recordset Dim rrst As DAO.Recordset Dim...
  5. B

    Entering multiple data in a form

    Change your form to "continious".
  6. B

    wondering if it can be done

    yes. Use a Query You can search a table based on criteria. Use a check box. If the value of the check box =-1 then they get an Email, if its 0, they dont
  7. B

    access to outlook

    This is what I use to add a reminder. Its similiar if you want to add a task: I think you need to change Dim objappt as objOutlook.CreateItem(olAppointmentItem) Set objAppt = objOutlook.CreateItem(olAppointmentItem) to Dim objappt as objOutlook.CreateItem(olTaskItem) Set objAppt =...
  8. B

    load Form music play

    Ghudson has a nice post on how to do this. Do a search of "play wav file"
  9. B

    Acrobat PDFs appear to be 'stuck' in an OLE field

    Is it possible for you to post the db so we can look at it?
  10. B

    Using calendar once to update all records

    update to the control
  11. B

    Using calendar once to update all records

    You can run an Update qry.
  12. B

    Link to pdf file within access

    Here is another way to open the file and control the PDF Private Sub Command5_Click() Dim AcroApp As CAcroApp Dim AVDoc As CAcroAVDoc Dim PDDoc As CAcroPDDoc Dim mypath As String Dim mystring As String Dim pg As Integer 'you'll need to change this to an...
  13. B

    Search forms

    try here: http://www.access-programmers.co.uk/forums/showthread.php?t=100246
  14. B

    Help tracking vacation, sick hours

    In MS Access Help, do a search for Sick time. MS has a great template which tracks employee.
  15. B

    email snapshot of a form

    its possible. Do a search for Outlook Automation.
  16. B

    Sell a MS Access Database

    Thanks. I wasnt sure. So I only need the Developers Licence if I plan to sell to someone who doesnt have Access install? Thanks again
  17. B

    Add Photo In Contact List

    This should get you started: http://www.access-programmers.co.uk/forums/showthread.php?p=499968#post499968
  18. B

    Sell a MS Access Database

    Hi all, Numerious people are interested my a database I created. Can I sell the .MDE or MDB file with out an Access 2003 Developer license? Assuming they have MS Access installed? Thanks
  19. B

    how to open a tabel from Form

    Sometimes tables needed to be updated. For example if you have a combo box thats is linked to a table, the user may want to add or modify.
  20. B

    how to open a tabel from Form

    add a button with this VBA code: docmd.opentable ("nameoftable")
Top Bottom