ON STOP (1 Viewer)

Harry Taylor

Registered User.
Local time
Today, 21:02
Joined
Jul 10, 2012
Messages
73
Hi,

I have a list of customer accounts, some of which don't pay and I want to put their account on stop.
I have tried a text box with conditional formatting (red), but it looks a bit naff

I'm looking at putting an "On Stop" button on a form, which then displays 'On Stop' across the entire record.

Possibly an On Stop png picture?
So it opens and closes the picture file using a toggle button

Any thoughts / ideas?

Thank you :)
 

plog

Banishment Pending
Local time
Today, 15:02
Joined
May 11, 2011
Messages
11,663
Change the background to red, Disable all appropriate inputs. on stop image is fine, but you are going to want it transparent so the user can still see relevant info so they know which record looking at.

Whatever method you choose, the code will need to be in the OnLoad action as well--what if a user opens a record that is already on stop?
 

Harry Taylor

Registered User.
Local time
Today, 21:02
Joined
Jul 10, 2012
Messages
73
Thanks Plog,
I dont really need to disable anything, users can still make changes, but i want them to know they're on stop.
The staff are good enough that they wont offer assistance until any debts are paid

Ideally, I want to open / close a PNG picture using a toggle button.
Is this possible?
 

The_Doc_Man

Immoderate Moderator
Staff member
Local time
Today, 15:02
Joined
Feb 28, 2001
Messages
27,279
The more important question is whether that account is singly displayed or part of a continuous form.

The idea of controlling the account via some kind of command button is eminently possible. What you are able to display when using it depends on the form type.
 

plog

Banishment Pending
Local time
Today, 15:02
Joined
May 11, 2011
Messages
11,663

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 04:02
Joined
May 7, 2009
Messages
19,246
you add OnStop (Yes/No) field to your table.
then you create a new table (OnStopImages) with fields:

OnStop (Yes/No) (PK)
Image (Attachment)

add one record to the above table and add the "OnStop" image.
create a Query that joins your table with OnStopImages table (Query1).

see form SampleOnStopForm that uses such table.
 

Attachments

  • OnStopAccount.accdb
    1.3 MB · Views: 118

Pat Hartman

Super Moderator
Staff member
Local time
Today, 16:02
Joined
Feb 19, 2002
Messages
43,424
Although a Y/N field to record the stop will work, you will probably find that using two fields - StoppedBy and StoppedDT will ultimately be more useful.
 

Users who are viewing this thread

Top Bottom