Question
J Link error messages
Here's one for all you J Link gurus out there.
I'm using this routine (from Marc Mettes) to display error messages to the
user:
public void DisplayMessage ( String mesg ) throws Exception {
stringseq seq = stringseq.create();
seq.set(0, mesg);
session.UIDisplayMessage(msgFile, "JLOG %s", seq);
seq.clear();
writeLog(mesg);
}
The message this displays is a plain one.
How do I write a message with an error or other symbol, such as the yellow
triangular sign w/ the exclamation point?
--
Lyle Beidler
MGS Inc
178 Muddy Creek Church Rd
Denver PA 17517
717-336-7528
Fax 717-336-0514
<">mailto:-> -
<">http://www.mgsincorporated.com>
I'm using this routine (from Marc Mettes) to display error messages to the
user:
public void DisplayMessage ( String mesg ) throws Exception {
stringseq seq = stringseq.create();
seq.set(0, mesg);
session.UIDisplayMessage(msgFile, "JLOG %s", seq);
seq.clear();
writeLog(mesg);
}
The message this displays is a plain one.
How do I write a message with an error or other symbol, such as the yellow
triangular sign w/ the exclamation point?
--
Lyle Beidler
MGS Inc
178 Muddy Creek Church Rd
Denver PA 17517
717-336-7528
Fax 717-336-0514
<">mailto:-> -
<">http://www.mgsincorporated.com>

