I have a situation in which the user is requested to select a new status for the document they are working on.
As the document status is somewhat complicated, it consists of 3 fields:
tbl_DocStatus:
PK_Status (Primary Key, Autonumber)
tx_Status (Text 25, short status)
tx_StatusDescri ption (Text 255, long description of what the status means)
Now the 255 characters of the description is to long in my opinion to properly show in a listbox, so I want to display a popup form, which in style looks like the image I have attached:
[IMGnothumb]http://bytes.com/attachments/attachment/6758d1354874728/selectstatus.jp g[/IMGnothumb]
Just ignore the text, its danish :)
Now I would like for the user to be able to use the radio button (or similar) for selecting the new status. But of course since this is unbound, selecting 1 radio button selects them all.
Does anyone have a good way of indicating in a continues form which record is the selected one? I do realize that access comes with a built in record selector but I find it so darn ugly, and want it to be hidden.
As the document status is somewhat complicated, it consists of 3 fields:
tbl_DocStatus:
PK_Status (Primary Key, Autonumber)
tx_Status (Text 25, short status)
tx_StatusDescri ption (Text 255, long description of what the status means)
Now the 255 characters of the description is to long in my opinion to properly show in a listbox, so I want to display a popup form, which in style looks like the image I have attached:
[IMGnothumb]http://bytes.com/attachments/attachment/6758d1354874728/selectstatus.jp g[/IMGnothumb]
Just ignore the text, its danish :)
Now I would like for the user to be able to use the radio button (or similar) for selecting the new status. But of course since this is unbound, selecting 1 radio button selects them all.
Does anyone have a good way of indicating in a continues form which record is the selected one? I do realize that access comes with a built in record selector but I find it so darn ugly, and want it to be hidden.
Comment