I'm sure this is incredibly simple, I just haven't been able to find the magic search string for Google. :)
The basic question is: What VB function do I use to update the value of a text box each time the user goes to the next record?
In my database I have a field where they have stored 0's and 1's (or nothing) for whether or not a person has a certain job skill. The users of my form will not be updating this data, only looking at it to see a person's skills. For ease of reading, I was hoping to instead of displaying something like:
Microsoft Office: 1
Display:
Microsoft Office: Yes
I believe I've figured out the simple VB code to do this, my problem is I'm not sure where to put this block of code.. TextBox_BeforeU pDate() doesn't update, it stays empty. Form_Load() does what I want it to, but only for the very first record. What VB method would update this text box every time the user changes the record?
The basic question is: What VB function do I use to update the value of a text box each time the user goes to the next record?
--
In my database I have a field where they have stored 0's and 1's (or nothing) for whether or not a person has a certain job skill. The users of my form will not be updating this data, only looking at it to see a person's skills. For ease of reading, I was hoping to instead of displaying something like:
Microsoft Office: 1
Display:
Microsoft Office: Yes
I believe I've figured out the simple VB code to do this, my problem is I'm not sure where to put this block of code.. TextBox_BeforeU pDate() doesn't update, it stays empty. Form_Load() does what I want it to, but only for the very first record. What VB method would update this text box every time the user changes the record?
Comment