Search results

  1. freakazeud

    Opening a password protected word document

    Hi, check this sample code: Option Explicit Public Sub ProcessFile() Dim strFileName As String Dim strFilePath As String Dim oDoc As Document ' Set Directory for file strFilePath = "C:\Test\" ' Get Name of .doc File from Directory strFileName = Dir$(strFilePath &...
  2. freakazeud

    Show who has a record locked??

    Hi, check this discussion: isLocked and check: orders sample db quote: There are also several useful functions located in the UtilityFunctions module, such as the IsLocked function which determines whether the current record is locked. end quote! HTH Good luck
  3. freakazeud

    Problems transferring a database from acsess2000 to access2003

    Hi, have you checked all your references (vba editor--tools--references)? Are any marked missing? Did you check the DAO object library and the word object library? HTH Good luck
  4. freakazeud

    SendObject Macro - automation

    Hi, you could create another macro which calls your macro and then call that macro with the windows scheduler or you can call your original macro directly with the windows scheduler: http://support.microsoft.com/?kbid=230575 This way you can basically automate the whole process without needing...
  5. freakazeud

    Having a list of record names displayed and opening the full record via click

    Hi, sorry for the late response. Have been quite busy latly :) Anyway, glad you got it sorted out. Good luck on future projects!
  6. freakazeud

    Having a list of record names displayed and opening the full record via click

    Hi, you didn't establish a link between main form and subform! Open the subforms property window and check in the data tab. You will find child and master link! You have to establish both. Since bus_Id is your id field which both contain that's your child and master link. I created it for you...
  7. freakazeud

    Having a list of record names displayed and opening the full record via click

    Hi, you would just need to parse the arguments given from the listbox to the open event of the form. Depending on what your values are chose on from below: If Number: DoCmd.OpenForm "YourForm", , ,"[YourID] = " & Me.YourListbox If the ID is Text: DoCmd.OpenForm "YourForm", , ,"[YourID]...
  8. freakazeud

    Having a list of record names displayed and opening the full record via click

    Hi, I looked at your db. I don't really know if that is your actual db or not, but your table structure is not correct. Your data is normalized. But then again you have hardly any structure or data, so I just fixed it so it works on the form, but you might want to read up on normalization if...
  9. freakazeud

    Having a list of record names displayed and opening the full record via click

    Hi, your attachment comes up blank. There is nothing in the zip file...at least not for me? Maybe you need to rezip and repost and make sure the file contains data. Thanks!
  10. freakazeud

    Date query

    Hi, so you mean the ones which do NOT have a value in the date field? Use Is Null in the criteria of the query date field! HTH Good luck
  11. freakazeud

    Sending email from a database

    You're welcome :)
  12. freakazeud

    Count currentusers ?

    Hi, check this thread HTH Good luck
  13. freakazeud

    Send pic emails?

    You're welcome. Glad I could assist. Good luck on future projects!
  14. freakazeud

    Sending email from a database

    You're welcome. Glad I could assist. Good luck on future projects!
  15. freakazeud

    Sending email from a database

    Yes it might be! I would recommend using a specified method to send e-mails through Notes as Sendobject didn't even support earlier notes versions. Check this: http://www.granite.ab.ca/access/email/lotusnotes.htm and these limitations of sendobject...
  16. freakazeud

    Signature Pictures...

    You're welcome. Glad I could assist. Good luck on future projects!
  17. freakazeud

    Send pic emails?

    Hi, the sample just shows to you how to create a simple HTML e-mail so that you can format it or do whatever you want to which other methods (e.g. SendObject) don't, as they only allow plain text. So you will have to use the code in the sample and your scenario to populate the body and the...
  18. freakazeud

    Preventing anyone from changing data

    Hi, maybe you can clarify a little more! Why do you want to do this? Do you want to do certain maintainance things at that time and keep users out? Maybe you can explain what it is you are trying to achieve. HTH Good luck
  19. freakazeud

    Signature Pictures...

    Hi, you should actually NOT store these pictures in your db. It causes bloatation and should be avoided. Store the path of where the pics are stored instead and then use these on runtime to display your images. Check this for more: http://www.databasedev.co.uk/bound_image_report.html HTH Good luck
  20. freakazeud

    Sending email from a database

    Hi, what method are you using to send the e-mail? Maybe you can post some code sample! If SendObject then pay attention to the end boolean syntax (false, true). The default is True, which launches the application. A False setting inhibits the client. HTH Good luck
Back
Top Bottom