Recent content by Estuardo

  1. E

    Sending OLE Object Through Email

    Hi, Usually you send attachments in one of two ways: 1. Via Outlook 2. Via SMTP For more examples you may want to search the forums with these keywords "Attachment", "CDO", "SMTP", "Outlook". About the embedded Excel Object... I don't think you can do that with the most recent Office version. A...
  2. E

    display more than one images in a form through a subform

    G'd evening, It is not a good idea to have a form and sub form based on the same table. What you may want to do is add a new table to store the album name and any other information. the Second table will store the images. Then you can easily link your tables. With the tables linked you can set...
  3. E

    Sortable Lists in a form

    G'd evening, First off, you need to normalize your tables, respect (any) naming convention for your objects. Once you finish fixing these issues you can start working on your GUI. As far as your db is, even if you get to solve the problem at hand, it will give you more work than it deserves. I...
  4. E

    controltip text too slow to appear

    G'd evening, Is not just a pain but also way too limited. If you want to try something different you may want to try mine. see under the free section. EDIT: Link fixed :) Shame on me :o Thanks a lot Galaxiom
  5. E

    DoCmd.CopyObject problem

    Have you tried Application.CurrentProject.Path
  6. E

    BackUp and restore table

    G'd evening, I really can't help you with macros, but i guess would be easier to use the Windows backup tool or use vba for total flexibility. something like this: Private Sub ExporTables() Dim tbl As TableDef For Each tbl In CurrentDb.TableDefs If (tbl.Connect) <> "" Then If (tbl.Name) <>...
  7. E

    Using Smart Tags with VBA

    G'd evening, Is not clear to me what are you're after. I don't see the need to loop through all form's controls when afterupdate/dirty/change and several others may work for you. In a normal context you will need an event for each one of the controls that belong to the UnitGroup. What you...
  8. E

    Help with export filtered records to a table from subform

    G'd evening, Do you get any rows by running your SELECT query from the query editor with the same parameters you have in your form? SELECT tblPacsfreeform.ID, tblPacsfreeform.[Request ID]...
  9. E

    SQL Error 13

    G'd evening, You also may want to add spaces to your concatenated string like this SQLobsoleteperc = "SELECT tblDateObs.DateObs, tblStatisticRef.RefPercObsolete " & _ "FROM tblDateObs LEFT JOIN tblStatisticRef ON tblDateObs.DateID = tblStatisticRef.DateID " & _ "GROUP BY...
  10. E

    Enumerating all Forms/Modules/Classes etc in an Access Database

    G'd morning! In addition to what Michael suggested, i guess you may want to take a look at my "MS Access Automation" document. G'd luck
  11. E

    Add single Outlook contact to Access form

    G'd Morning, You can get all contacts from Outlook in several ways: 1. Manually export all your contacts from Outlook 2. Link your Address Book to Access 3. Automate from VBA. Manually export: This is ok if you don't want to keep your Address book in Sync with Access Link Outlook Address book...
  12. E

    Use a command button to open a onenote notebook

    remove the reference to Microsoft XML, 6.0 and add a reference to Microsoft XML, 4.0, that should solve the problem. Regardless of the windows version, if the referenced libraries exist they should work. I'd just tested the code and it's working. If you still have problems, debug your code line...
  13. E

    Adding to a form

    G'd morning, Answering your questions in the same order: 1. No 2. Yes 3. Yes In a little more detail: 1. You don't need another database. Even if you already have one with all the information related to their experience, you can link that table to your db. The difference is that you will need...
  14. E

    Database help!

    I just made a few changes on your tables and added a couple of forms. I guess that if you build an easy GUI your user will appreciate it. Like i said before one form for all is not a good idea. Back to your tables. I've found a couple of columns in several tables related to "last contact". That...
  15. E

    Question Problems Importing text file

    I tried your file and the vba code and worked for me. the only significant difference is that i replace the acImportDelim with acImportFixed. so i ended up with this: Dim strFile As String strFile = "c:ToAccess.txt" DoCmd.TransferText acImportFixed, "NotepadCustomSpecs", "tblText"...
Top Bottom