I have been working on this database of mine for quite some time, and I have run into a roadblock. Here is my situation. I currently have a form that has two texboxes, one that is linked to the field finaltimeminutes and one linked to the field finaltimeseconds. The user hits tab to jump between the two fields. So something that is 1 minute and 30 seconds has 1 in the first field, then a 30 in the second field. There is also a colon in a separate label, so to the end user the result on the screen looks like 1:30
What I would like to do is create an unbounded textbox where the user directly types in 1:30, and once the user exits the unbounded textbox, anything to the left of the colon goes into the finaltimeminutes field and whatever is after the colon goes into the finaltimeseconds field. How would I go about doing that? I have a feeling that I would use the event procedure "On Exit" for the unbounded textbox, but I don't know to take info before and after a predefined character, which in this case, is the colon.
What I would like to do is create an unbounded textbox where the user directly types in 1:30, and once the user exits the unbounded textbox, anything to the left of the colon goes into the finaltimeminutes field and whatever is after the colon goes into the finaltimeseconds field. How would I go about doing that? I have a feeling that I would use the event procedure "On Exit" for the unbounded textbox, but I don't know to take info before and after a predefined character, which in this case, is the colon.