Hi all,

I am opening another form ( tabular form) when a user presses a button, which passes a Ticket Number. The new form displays all of the linked tickets to the main ticket number.

From the Main form the essential data is:
- a Primary Ticket IT
- a field showing know related tickets
- a button that passes in a string of tickets ( Primary and realted tickets) to the new form, using OpenArgs

On the new from being created :
The tabular form queries off of the Primary Ticket ID and populates.

So all of this works well, but what I want to do is display a message on each of the related tickets. If ticket displayed does not match the "related tickets from the main form", a message stating that the ticket has not been related.

For example on the main form
- primary ticket Id 123
- related tickets are 124, 125, 126
so the OpenArgs contain the primary ticket and related ticket.

Secondary Form -


displays 124, 125, 126, 128, 129

So in this scenairo, 128 and 129 need a message.

So how can I do this? Help please.......