Recent content by Raynx

  1. R

    Features of GoToRecord

    Question from a friend: "When using a macro, when using GoToRecord, there are different options, such as First, Last, Previous, but what does the GoTo do?" Screenshot:
  2. R

    Question Input Mask is variable depending on another field.

    "You shouldn't be here..."? And what does HTH mean? Thank you, though. This does look like it work.
  3. R

    Question Input Mask is variable depending on another field.

    Er, how would I do that? I'm not VBA savvy, particularly.
  4. R

    Question Input Mask is variable depending on another field.

    Hey, I need help with something. I'm putting together a post office database, and the two most important fields for anything in this are "Tracking Number" and "Courier". "Courier" is whichever mail delivery service brought the package to the post office, such as UPS, Fed-Ex, DHL, USPS, etc...
  5. R

    Click Button to Exit Access

    Thanks everyone. We had already tried the button wizard "quit" option, but it wasn't working for us for some reason, which is why I asked for your help. Tried it again, though. Turns out my partner just did it wrong. Fixed now. Thanks again.
  6. R

    Click Button to Exit Access

    Thank you.
  7. R

    Click Button to Exit Access

    Hey, I'm working on a Post Office database and I need some minor VB assistance. I want to be able to click on a button labeled "Exit" that will, easily enough, close out the program. Make work, yes?
  8. R

    Pulling certain parts of fields into one field.

    I am using a macro. I am using SEND OBJECT. I'm not putting the code into the TO field, but rather putting the code in an email field on a form and having the TO field pull from whatever is listed in the email field.
  9. R

    Pulling certain parts of fields into one field.

    Nope. Deleted that single quotation mark and...the same error message. Darn.
  10. R

    Pulling certain parts of fields into one field.

    Wow. That is rather long. Well, this is what it looks like on the display view: mary.sueIIf( [Student Year] = "Freshman", "0", IIf ( [Student Year] = "Sophomore" , "1", IIf ( [Student Year] = "Junior", "2", IIf ( [Student Year] = "Senior", "3", "*"))))" & Right(IDNumber, 2) & "@" &...
  11. R

    Pulling certain parts of fields into one field.

    I changed up the code a little bit: =[FirstName] & "." & [LastName] & IIf([StudentYear]="Freshman","0",IIf([StudentYear]="Sophomore","1",IIf([StudentYear]="Junior","2",IIf([StudentYear]="Senior","3","*")))) & Right([ID Number],2) & "@" & "students.berry.edu" This works in the sense that after...
  12. R

    Pulling certain parts of fields into one field.

    Alright, the IIf strings don't work. The last line (the one that designates the last two digits on the right of the ID Number as the last two digits for the email number) does work. So at least there's that.
  13. R

    Pulling certain parts of fields into one field.

    Yeah, still not working. I tried both of your models for the code, but they did not work. I'm getting the same error message. I'll try simplifying it, going one step at a time. Are you sure that there are not any mistakes as for the spaces or other special characters? I am rather new to this...
  14. R

    Pulling certain parts of fields into one field.

    Hey, thanks so much for your input. And, yeah, it is frustrating, especially when you're the guy that everybody points at for it. Well, I have a partner, though, so shared responsibility/blame is nice. Anyway, I tried to set it up the way that you showed me, and here's what it looks like...
  15. R

    Pulling certain parts of fields into one field.

    Hey, I'm not incredibly new to Access, but I do need some help on something that may be simple to you guys. I'm updating/improving a database that a Post Office is using to track packages across a college campus, and they want me to build a button that they can click to automatically send an...
Back
Top Bottom