Search results

  1. K

    Copying attachments from one table to another.

    Yes, it's a similar situation here - Attachment fields are used to store copies of letters sent, observation forms, etc - they are are almost all very small 1 page word or pdf docs, but they are very important to track and report on for regulatory reasons. Beyond a few necessities for this...
  2. K

    Copying attachments from one table to another.

    Thank you, I've downloaded this, and am taking a look through now - it looks just the job! Luckily this came just in time (my contract here ends in 6 days), so I'm hoping to do something with this (the problem is still outstanding), which will save some poor temps weeks of depression-inducing...
  3. K

    Watermark text in a form field

    Ah, I hadn't gathered that at all - thank you. Logical... lol Thank you for the explanations - I want to learn how and why things work, rather than just copying the code. Thanks for all your help!
  4. K

    Watermark text in a form field

    Ah doing it at form level rather than field - I like that. Sounds perfect! Just to understand the code, there's an assumed "If" in that Lenght statement? Vbnullstring is covering the possibilitiy of a null field, rather than a used but deleted field? Also is setting a control to 0 the same...
  5. K

    Watermark text in a form field

    I get that for an input field. But if I have a form load with 10 fields, and most will have data for each record we step through, and only want it to show for empty fields on a given record. I am presuming that Lost Focus only ever triggers for something subsequent to it gaining focus? Or is...
  6. K

    Watermark text in a form field

    That's a very slick solution! I was looking at Input Masks, etc - I didn't think of a second text box... Any thoughts on what event trigger you could use for the 2nd part if you expect those fields to be filled most of the time, and just want it to be visible when they are empty?
  7. K

    Watermark text in a form field

    You often see (particularly on websites) a form field with greyed out text displayed in it, that disappears when typed over - so for example you could have name/address or whatever is supposed to be typed into that field showing. I'm not looking for default text typed over or anything - a...
  8. K

    Linking records to photos and documents

    I'm pretty sure that attachments came about in Access 2007. I can categorically say they aren't in 2000 and they are in 2010 and 2013.
  9. K

    Copying attachments from one table to another.

    I'm an old hand at databases but very new (a few weeks) to coding. This regards an Access 2010 db, although if there are any differences in 2013 it would be useful info (but not a barrier for this problem). I have many attachments and their notes (sometimes multiple objects in a single...
  10. K

    VBA referencing one field of several in an SQL driven combo box

    That works perfectly, thank you! The perils of using Me!...
  11. K

    VBA referencing one field of several in an SQL driven combo box

    Actually.. it's not quite working? It's damn close, but not quite. What it's doing is opening the correct form, based on the student that was selected, but it's then always populating that form with the first student in the list, not the one that was actually selected. Any idea?
  12. K

    VBA referencing one field of several in an SQL driven combo box

    I was just coming back to say that your code did indeed do the trick - I just didn't understand why it did! But thank you, the explanation above is very clear. :)
  13. K

    VBA referencing one field of several in an SQL driven combo box

    I am probably being thick here... but surely that code doesn't actually test against column 2? Where does it test for a yes/no? (unless that is somehow implicit in the If...Then...Else Structure?) Shouldn't it be something like If Me.combo_NameSearch.Column(2) SomeTestSyntaxHere Then...
  14. K

    VBA referencing one field of several in an SQL driven combo box

    Hi all, As is usual here, I have a problem! In fact I have two, but we'll look at the more pressing for now. I'm not a programmer. Just for background, I've been working with Access on and off since Access 95, although until 6 months ago hadn't touched anything later than 2000. This all...
Top Bottom