Search results

  1. B

    Search within a form

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

    record set to change field

    Thanks, thats what I needed to do. It was so easy it slipped past me. Thanks
  3. B

    record set to change field

    Hi all, I am trying to update a field based on another field through a record set. In this code I want to update SYS if Element_label is like 3 (the field has values 3.1, 3.3.1 etc...). Am I going about this the right way? Dim rst As DAO.Recordset Set rst =...
  4. B

    record set to change field

    Hi all, I am trying to update a field based on another field through a record set. In this code I want to update SYS if Element_label is like 3 (the field has values 3.1, 3.3.1 etc...). Am I going about this the right way? Dim rst As DAO.Recordset Set rst =...
  5. B

    Adding Images into Tables/Records

    take a look here: Follow the trail to a sample that I posted:
  6. B

    Combo Box ?

    CEH... I was trying to give him/her the basic code. P in this case could be either a variable or "p". If he/she wants no to return a value, he or she would have to add that in the else. It was only an example.
  7. B

    Combo Box ?

    add. the following event procedure to the on click event of the combo box: if me.combobox = yes then me.txt4 = P else me.txt4 = "" end if
  8. B

    Creating a command button to open a file

    Take a look at this forum. I learned a lot here. Also search the forum for recommended reading.
  9. B

    Issue connecting Form to Table

    if you post your DB, we can look at it.
  10. B

    Query: Photo Dimensions

    You can view photo dimensions with VBA. It will read a file and give you the info. Is this what you want? If that is what you are looking for, check this out: http://www.access-programmers.co.uk/forums/showthread.php?t=108867
  11. B

    Blobs and Images

    Here is a sample I worked on that loads the images to a folder "images" (WHICH RESIDES IN THE SAME FOLDER AS YOUR DB). It stores the link in a table, so it does not bloat your DB. Just make a form or report to view them. http://www.vbaexpress.com/forum/showthread.php?t=7877
  12. B

    Form Help With Text Boxes

    due a search for "Audit trial" It keeps track of all changes.... hope this helped.
  13. B

    How to get properties of .msg file saved on file system

    no, sorry. I searched the internet. no luck
  14. B

    HELP with report automation

    Use the Wizards in MS Access 2003. It will help you set everything up.
  15. B

    How to get properties of .msg file saved on file system

    This is a code that I complied from numerious post. OPen outlook and click on the email you want (highlight but do not open). Put this code behind a command button. You'll have to create text boxes and customize the code to work on you form. Dim objApp As Outlook.Application Dim objItem...
  16. B

    Lock / Unlock form

    use a toggle control.
  17. B

    record locked in multiuser environment

    easy does it homie, give it some time and you will be helped. Have you tried searching the forum?
  18. B

    Question on How to Grab an Excel file on the local hard drive

    samples are used to help you learn. Try to disect the code. It takes time, but thats how we all learned. Good luck
  19. B

    Help in hyperlink - I want to supmit my project today. Please help me

    in ms word, set you macro security to low.
  20. B

    Prevent inadvertant updates to a combo box

    On the on change event for the combo box, add this: MsgBox ("Are you sure you want to change this?"), vbYesNo
Back
Top Bottom