XtErrorMsg(3) XT COMPATIBILITY FUNCTIONS XtErrorMsg(3)NAME
XtErrorMsg, XtSetErrorMsgHandler, XtWarningMsg, XtSetWarningMsgHandler - high-level error handlers
SYNTAX
void XtErrorMsg(String name, String type, String class, String default, String *params, Cardinal *num_params);
void XtSetErrorMsgHandler(XtErrorMsgHandler msg_handler);
void XtSetWarningMsgHandler(XtErrorMsgHandler msg_handler);
void XtWarningMsg(String name, String type, String class, String default, String *params, Cardinal *num_params);
ARGUMENTS
class Specifies the resource class.
default Specifies the default message to use.
name Specifies the general kind of error.
type Specifies the detailed name of the error.
msg_handler
Specifies the new fatal error procedure, which should not return or the nonfatal error procedure, which usually returns.
num_params
Specifies the number of values in the parameter list.
params Specifies a pointer to a list of values to be stored in the message.
DESCRIPTION
The XtErrorMsg function has been superceded by XtAppErrorMsg.
The XtSetErrorMsgHandler function has been superceded by XtAppSetErrorMsgHandler.
The XtSetWarningMsgHandler function has been superceded by XtAppSetWarningMsgHandler.
The XtWarningMsg function has been superceded by XtAppWarningMsg
SEE ALSO XtAppErrorMsg(3Xt)
X Toolkit Intrinsics - C Language Interface
Xlib - C Language X Interface
X Version 11 libXt 1.0.5 XtErrorMsg(3)
Check Out this Related Man Page
XtErrorMsg(3) XT COMPATIBILITY FUNCTIONS XtErrorMsg(3)NAME
XtErrorMsg, XtSetErrorMsgHandler, XtWarningMsg, XtSetWarningMsgHandler - high-level error handlers
SYNTAX
void XtErrorMsg(String name, String type, String class, String default, String *params, Cardinal *num_params);
void XtSetErrorMsgHandler(XtErrorMsgHandler msg_handler);
void XtSetWarningMsgHandler(XtErrorMsgHandler msg_handler);
void XtWarningMsg(String name, String type, String class, String default, String *params, Cardinal *num_params);
ARGUMENTS
class Specifies the resource class.
default Specifies the default message to use.
name Specifies the general kind of error.
type Specifies the detailed name of the error.
msg_handler
Specifies the new fatal error procedure, which should not return or the nonfatal error procedure, which usually returns.
num_params
Specifies the number of values in the parameter list.
params Specifies a pointer to a list of values to be stored in the message.
DESCRIPTION
The XtErrorMsg function has been superceded by XtAppErrorMsg.
The XtSetErrorMsgHandler function has been superceded by XtAppSetErrorMsgHandler.
The XtSetWarningMsgHandler function has been superceded by XtAppSetWarningMsgHandler.
The XtWarningMsg function has been superceded by XtAppWarningMsg
SEE ALSO XtAppErrorMsg(3Xt)
X Toolkit Intrinsics - C Language Interface
Xlib - C Language X Interface
X Version 11 libXt 1.0.5 XtErrorMsg(3)
What is syntax for String concatenation?
I have $1 as directory.
$var is some variable value
'/' String value.
How do I have to concatenate if I have to run utility -
util $1 followed by '/' followed by $var
There is no space between these three. (2 Replies)
All
I want to validate a String. If it is "Deepak Xavier" then it will a valid string.
But if the value "Deepak #&xavier" then it should be invalid. Please give me some commands. Iam using KORN shell. Thanx in advance.
Regards
Deepak Xavier (3 Replies)
Hi,
I am trying to read a FILE data type into a String data type, I tried to make the FILE* veriable just equal the String veriable but i get:
Conversion from 'FILE*' to 'String' is ambiguous
Has anyone got any idea?
Thanks (4 Replies)
Hi All,
I have parsed an xml file and the resulting output is as follows
RT
=> {
'List' => {
'String' =>
RT!
=> {
'List' => {
'String' =>
I am trying to get the String values under RT and here is the code i am using
my $data = XMLin("output.xml",... (2 Replies)
I have a file that reads File (X.txt)
Contents of record 1:
rdrDESTINATION_ADDRESS (String) "91 971502573813"
rdrDESTINATION_IMSI (String) "000000000000000"
rdrORIGINATING_ADDRESS (String) "d0 movies"
rdrORIGINATING_IMSI (String) "000000000000000"
rdrTRAFFIC_EVENT_TIME... (0 Replies)
Hi Leute
Kann mir bitte jemand diesen Fehler rerklären?
Ohne Zuweisung gehts und es kommt der modifizierte String raus.
Weise ich es einem String zu kommt dieser Fehler.
Was mache ich da flasch?
0:521:root@pendrive /media/disk/system_setup # STRING=/mnt/new/path
0:522:root@pendrive... (3 Replies)
CPAN.pm: Going to build G/GA/GAAS/Unicode-String-2.09.tar.gz
Checking if your kit is complete...
Looks good
Writing Makefile for Unicode::String
cp String.pm blib/lib/Unicode/String.pm
cp lib/Unicode/CharName.pm blib/lib/Unicode/CharName.pm
/usr/bin/perl /usr/perl5/5.8.4/lib/ExtUtils/xsubpp... (5 Replies)
Hi ,
I wonder how I can set up an String array in java. I need the array so I can store different items per line so each item will be like one record. I tried something like :
String x = new String;
but when it comes to storing the data and retrieve the is when I struggle. The... (2 Replies)
echo 'String#1 and String#2' | egrep -o -m 1 'String#.{1}'
String#1
String#2
I'm trying to just match the first occurrence of 'String#' + 1 character. I thought the "-m 1" switch would do that for me. Instead I get both occurrences. Can somebody provide some insight?
Thanks! (5 Replies)
I have a String class with a function that reads tokens using a delimiter.
For example
String sss = "6:8:12:16";
nfb = sss.nfields_b (':');
String tkb1 = sss.get_token_b (':');
String tkb2 = sss.get_token_b (':');
String tkb3 = sss.get_token_b (':');
String tkb4 =... (1 Reply)