Hi All
How to skip below warning
gawk: cmd. line:92: warning: escape sequence `\>' treated as plain `>'
gawk: cmd. line:94: warning: escape sequence `\<' treated as plain `<'
Replace > to > for generate Excel XML file
function WriteDetail (lotx) {
# Special Character
gsub("\>","\\>",lotx)
gsub("\>","",lotx)
gsub("\<","\\<",lotx)
gsub("\<","",lotx)
n = split(lotx,nx,"\t")
print " <ss:Row>"
for ( i = 1 ; i <= n ; i++) {
print " <ss:Cell>"
print " <ss:Data ss:Type=\"String\">" nx[i] "</ss:Data>"
print " </ss:Cell>"
}
print " </ss:Row>"
|
|
0
|
|
|
|
Reply
|
moonhkt (146)
|
7/19/2012 4:21:26 AM |
|
On 7/18/2012 11:21 PM, moonhkt wrote:
> Hi All
>
> How to skip below warning
By "skip" I assume you mean "fix my code in response to the excellent warning
gawk is giving me that my code is broken".
> gawk: cmd. line:92: warning: escape sequence `\>' treated as plain `>'
> gawk: cmd. line:94: warning: escape sequence `\<' treated as plain `<'
$ gawk 'BEGIN{ gsub("\>","\\>",lotx) }'
gawk: cmd. line:1: warning: escape sequence `\>' treated as plain `>'
$ gawk 'BEGIN{ gsub(">","\\>",lotx) }'
$ gawk 'BEGIN{ gsub(/\>/,"\\>",lotx) }'
$ gawk 'BEGIN{ gsub("\\>","\\>",lotx) }'
$
Just RTFM then use whatever one you intend your code to implement.
Ed.
|
|
0
|
|
|
|
Reply
|
mortonspam (827)
|
7/19/2012 6:10:10 AM
|
|
moonhkt=E6=96=BC 2012=E5=B9=B47=E6=9C=8819=E6=97=A5=E6=98=9F=E6=9C=9F=E5=9B=
=9BUTC+8=E4=B8=8B=E5=8D=8812=E6=99=8221=E5=88=8626=E7=A7=92=E5=AF=AB=E9=81=
=93=EF=BC=9A
> Hi All
>=20
> How to skip below warning=20
>=20
> gawk: cmd. line:92: warning: escape sequence `\>' treated as plain=
`>'
> gawk: cmd. line:94: warning: escape sequence `\<' treated as plain=
`<'
>=20
> Replace > to &gt for generate Excel XML file=20
> function WriteDetail (lotx) {
> # Special Character
> gsub("\>","\\&gt;",lotx)
> gsub("\>","",lotx)
> gsub("\<","\\&lt;",lotx)
> gsub("\<","",lotx)
> n =3D split(lotx,nx,"\t")
> print " <ss:Row>"
> for ( i =3D 1 ; i <=3D n ; i++) {
> print " <ss:Cell>"
> print " <ss:Data ss:Type=3D\"String\">&=
quot; nx[i] "</ss:Data>"
> print " </ss:Cell>"
> }
> print " </ss:Row>"
moonhkt=E6=96=BC 2012=E5=B9=B47=E6=9C=8819=E6=97=A5=E6=98=9F=E6=9C=9F=E5=9B=
=9BUTC+8=E4=B8=8B=E5=8D=8812=E6=99=8221=E5=88=8626=E7=A7=92=E5=AF=AB=E9=81=
=93=EF=BC=9A
> Hi All
>=20
> How to skip below warning=20
>=20
> gawk: cmd. line:92: warning: escape sequence `\>' treated as plain=
`>'
> gawk: cmd. line:94: warning: escape sequence `\<' treated as plain=
`<'
>=20
> Replace > to &gt for generate Excel XML file=20
> function WriteDetail (lotx) {
> # Special Character
> gsub("\>","\\&gt;",lotx)
> gsub("\>","",lotx)
> gsub("\<","\\&lt;",lotx)
> gsub("\<","",lotx)
> n =3D split(lotx,nx,"\t")
> print " <ss:Row>"
> for ( i =3D 1 ; i <=3D n ; i++) {
> print " <ss:Cell>"
> print " <ss:Data ss:Type=3D\"String\">&=
quot; nx[i] "</ss:Data>"
> print " </ss:Cell>"
> }
> print " </ss:Row>"
moonhkt=E6=96=BC 2012=E5=B9=B47=E6=9C=8819=E6=97=A5=E6=98=9F=E6=9C=9F=E5=9B=
=9BUTC+8=E4=B8=8B=E5=8D=8812=E6=99=8221=E5=88=8626=E7=A7=92=E5=AF=AB=E9=81=
=93=EF=BC=9A
> Hi All
>=20
> How to skip below warning=20
>=20
> gawk: cmd. line:92: warning: escape sequence `\>' treated as plain=
`>'
> gawk: cmd. line:94: warning: escape sequence `\<' treated as plain=
`<'
>=20
> Replace > to &gt for generate Excel XML file=20
> function WriteDetail (lotx) {
> # Special Character
> gsub("\>","\\&gt;",lotx)
> gsub("\>","",lotx)
> gsub("\<","\\&lt;",lotx)
> gsub("\<","",lotx)
> n =3D split(lotx,nx,"\t")
> print " <ss:Row>"
> for ( i =3D 1 ; i <=3D n ; i++) {
> print " <ss:Cell>"
> print " <ss:Data ss:Type=3D\"String\">&=
quot; nx[i] "</ss:Data>"
> print " </ss:Cell>"
> }
> print " </ss:Row>"
moonhkt=E6=96=BC 2012=E5=B9=B47=E6=9C=8819=E6=97=A5=E6=98=9F=E6=9C=9F=E5=9B=
=9BUTC+8=E4=B8=8B=E5=8D=8812=E6=99=8221=E5=88=8626=E7=A7=92=E5=AF=AB=E9=81=
=93=EF=BC=9A
> Hi All
>=20
> How to skip below warning=20
>=20
> gawk: cmd. line:92: warning: escape sequence `\>' treated as plain=
`>'
> gawk: cmd. line:94: warning: escape sequence `\<' treated as plain=
`<'
>=20
> Replace > to &gt for generate Excel XML file=20
> function WriteDetail (lotx) {
> # Special Character
> gsub("\>","\\&gt;",lotx)
> gsub("\>","",lotx)
> gsub("\<","\\&lt;",lotx)
> gsub("\<","",lotx)
> n =3D split(lotx,nx,"\t")
> print " <ss:Row>"
> for ( i =3D 1 ; i <=3D n ; i++) {
> print " <ss:Cell>"
> print " <ss:Data ss:Type=3D\"String\">&=
quot; nx[i] "</ss:Data>"
> print " </ss:Cell>"
> }
> print " </ss:Row>"
|
|
0
|
|
|
|
Reply
|
moonhkt (146)
|
7/19/2012 12:50:25 PM
|
|
moonhkt=E6=96=BC 2012=E5=B9=B47=E6=9C=8819=E6=97=A5=E6=98=9F=E6=9C=9F=E5=9B=
=9BUTC+8=E4=B8=8B=E5=8D=8812=E6=99=8221=E5=88=8626=E7=A7=92=E5=AF=AB=E9=81=
=93=EF=BC=9A
> Hi All
>=20
> How to skip below warning=20
>=20
> gawk: cmd. line:92: warning: escape sequence `\>' treated as plain=
`>'
> gawk: cmd. line:94: warning: escape sequence `\<' treated as plain=
`<'
>=20
> Replace > to &gt for generate Excel XML file=20
> function WriteDetail (lotx) {
> # Special Character
> gsub("\>","\\&gt;",lotx)
> gsub("\>","",lotx)
> gsub("\<","\\&lt;",lotx)
> gsub("\<","",lotx)
> n =3D split(lotx,nx,"\t")
> print " <ss:Row>"
> for ( i =3D 1 ; i <=3D n ; i++) {
> print " <ss:Cell>"
> print " <ss:Data ss:Type=3D\"String\">&=
quot; nx[i] "</ss:Data>"
> print " </ss:Cell>"
> }
> print " </ss:Row>"
|
|
0
|
|
|
|
Reply
|
moonhkt (146)
|
7/19/2012 12:52:40 PM
|
|
moonhkt=E6=96=BC 2012=E5=B9=B47=E6=9C=8819=E6=97=A5=E6=98=9F=E6=9C=9F=E5=9B=
=9BUTC+8=E4=B8=8B=E5=8D=888=E6=99=8252=E5=88=8640=E7=A7=92=E5=AF=AB=E9=81=
=93=EF=BC=9A
> moonhkt=E6=96=BC 2012=E5=B9=B47=E6=9C=8819=E6=97=A5=E6=98=9F=E6=9C=9F=E5=
=9B=9BUTC+8=E4=B8=8B=E5=8D=8812=E6=99=8221=E5=88=8626=E7=A7=92=E5=AF=AB=E9=
=81=93=EF=BC=9A
> > Hi All
> >=20
> > How to skip below warning=20
> >=20
> > gawk: cmd. line:92: warning: escape sequence `\&gt;&#39; tre=
ated as plain `&gt;&#39;
> > gawk: cmd. line:94: warning: escape sequence `\&lt;&#39; tre=
ated as plain `&lt;&#39;
> >=20
> > Replace &gt; to &amp;gt for generate Excel XML file=20
> > function WriteDetail (lotx) {
> > # Special Character
> > gsub(&quot;\&gt;&quot;,&quot;\\&amp;gt;&q=
uot;,lotx)
> > gsub(&quot;\&gt;&quot;,&quot;&quot;,lotx)
> > gsub(&quot;\&lt;&quot;,&quot;\\&amp;lt;&q=
uot;,lotx)
> > gsub(&quot;\&lt;&quot;,&quot;&quot;,lotx)
> > n =3D split(lotx,nx,&quot;\t&quot;)
> > print &quot; &lt;ss:Row&gt;&quot;
> > for ( i =3D 1 ; i &lt;=3D n ; i++) {
> > print &quot; &lt;ss:Cell&gt;&quot;
> > print &quot; &lt;ss:Data ss:Type=3D\&quot;S=
tring\&quot;&gt;&quot; nx[i] &quot;&lt;/ss:Data&gt;=
&quot;
> > print &quot; &lt;/ss:Cell&gt;&quot;
> > }
> > print &quot; &lt;/ss:Row&gt;&quot;
Sorry. Using New Google Group, have issue.
tried Not OK.
like=20
0 changed to <0&<gt;
|
|
0
|
|
|
|
Reply
|
moonhkt (146)
|
7/19/2012 12:56:59 PM
|
|
moonhkt [19.07.2012 14:56]:
>
> Sorry. Using New Google Group, have issue.
> tried Not OK.
> like
> 0 changed to <0&<gt;
>
What did you try?
Ed just told you to use > instead of \> on line 92, and to use < instead
of \< on line 94. The error text is quite descriptive, I think.
Unfortunately, the script you posted does not show that many lines, so
it might be anywhere in the code. You should see it by looking at the
original code, I think.
Just my 2¢
Werner
--
|
|
0
|
|
|
|
Reply
|
werner.flamme (7)
|
7/19/2012 1:15:03 PM
|
|
Werner Flamme=E6=96=BC 2012=E5=B9=B47=E6=9C=8819=E6=97=A5=E6=98=9F=E6=9C=9F=
=E5=9B=9BUTC+8=E4=B8=8B=E5=8D=889=E6=99=8215=E5=88=8603=E7=A7=92=E5=AF=AB=
=E9=81=93=EF=BC=9A
> moonhkt [19.07.2012 14:56]:
> >=20
> > Sorry. Using New Google Group, have issue.
> > tried Not OK.
> > like=20
> > 0 changed to <0&<gt;
> >=20
>=20
> What did you try?
>=20
> Ed just told you to use > instead of \> on line 92, and to use <=
instead
> of \< on line 94. The error text is quite descriptive, I think.
>=20
> Unfortunately, the script you posted does not show that many lines, so
> it might be anywhere in the code. You should see it by looking at the
> original code, I think.
>=20
> Just my 2=C2=A2
> Werner
>=20
> --
for change <123> to <123> for excel read the XML file
<ss:Cell>
<ss:Data ss:Type=3D"String"><123></ss:Data>
</ss:Cell>
lotx is \t delimiter string , each elemnt have > or < value change to > =
or <
function WriteDetail (lotx) {
# Special Character
gsub("\>","\\>",lotx)
gsub("\>","",lotx)
gsub("\<","\\<",lotx)
gsub("\<","",lotx)
n =3D split(lotx,nx,"\t")
print " <ss:Row>"
for ( i =3D 1 ; i <=3D n ; i++) {
print " <ss:Cell>"
print " <ss:Data ss:Type=3D\"String\">" nx[i] "</ss:Data>"
print " </ss:Cell>"
}
print " </ss:Row>"
}
|
|
0
|
|
|
|
Reply
|
moonhkt (146)
|
7/19/2012 3:04:51 PM
|
|
moonhkt <moonhkt@gmail.com> wrote:
> Werner Flamme於 2012年7月19日星期四UTC+8下午9時15分03秒寫道:
> > moonhkt [19.07.2012 14:56]:
> > >
> > > Sorry. Using New Google Group, have issue.
> > > tried Not OK.
> > > like
> > > 0 changed to <0&<gt;
> > >
> >
> > What did you try?
> >
> > Ed just told you to use > instead of \> on line 92, and to use <
instead
> > of \< on line 94. The error text is quite descriptive, I think.
> >
> > Unfortunately, the script you posted does not show that many lines, so
> > it might be anywhere in the code. You should see it by looking at the
> > original code, I think.
> >
> > Just my 2¢
> > Werner
> >
> > --
>
>
> for change <123> to <123> for excel read the XML file
>
> <ss:Cell>
> <ss:Data ss:Type="String"><123></ss:Data>
> </ss:Cell>
>
> lotx is \t delimiter string , each elemnt have > or < value change to > or <
The question wasn't "why are you running your script?", the question was "why
are you trying to post the same question again when you already got it answered?".
Having said that, now that you've posted some sample input and a hint at the
expected output, we can give you an explicit answer:
$ awk 'BEGIN{
lotx="foo<bar>hello<world>"
gsub(/</,"\\<",lotx)
gsub(/>/,"\\>",lotx)
print lotx
}'
foo<bar>hello<world>
I can't imagine what you think this would do:
gsub("\>","",lotx)
after you change all the ">"s to ">"s with this:
gsub("\>","\\>",lotx)
in your script below.
Regards,
Ed.
>
> function WriteDetail (lotx) {
> # Special Character
> gsub("\>","\\>",lotx)
> gsub("\>","",lotx)
Posted using www.webuse.net
|
|
0
|
|
|
|
Reply
|
mortonspam (827)
|
7/19/2012 4:20:20 PM
|
|
On Thu, 19 Jul 2012 08:04:51 -0700 (PDT), moonhkt <moonhkt@gmail.com> wrote:
Bunch of crap, please use plain text, not html, for usenet!
Free text only usenet access is available, google-gropes is broken.
Grant.
>Werner Flamme? 2012?7?19????UTC+8??9?15?03????
>> moonhkt [19.07.2012 14:56]:
>> >
>> > Sorry. Using New Google Group, have issue.
>> > tried Not OK.
>> > like
>> > 0 changed to <0&<gt;
>> >
>>
>> What did you try?
>>
>> Ed just told you to use > instead of \> on line 92, and to use < instead
>> of \< on line 94. The error text is quite descriptive, I think.
>>
>> Unfortunately, the script you posted does not show that many lines, so
>> it might be anywhere in the code. You should see it by looking at the
>> original code, I think.
>>
>> Just my 2¢
>> Werner
>>
>> --
>
>
>for change <123> to <123> for excel read the XML file
>
> <ss:Cell>
> <ss:Data ss:Type="String"><123></ss:Data>
> </ss:Cell>
>
>lotx is \t delimiter string , each elemnt have > or < value change to > or <
>
>function WriteDetail (lotx) {
> # Special Character
> gsub("\>","\\>",lotx)
> gsub("\>","",lotx)
> gsub("\<","\\<",lotx)
> gsub("\<","",lotx)
> n = split(lotx,nx,"\t")
> print " <ss:Row>"
> for ( i = 1 ; i <= n ; i++) {
> print " <ss:Cell>"
> print " <ss:Data ss:Type=\"String\">" nx[i] "</ss:Data>"
> print " </ss:Cell>"
> }
> print " </ss:Row>"
>}
|
|
0
|
|
|
|
Reply
|
omg1 (46)
|
7/20/2012 3:36:46 AM
|
|
On 7/19/2012 10:04 AM, moonhkt wrote:
> Werner Flamme於 2012年7月19日星期四UTC+8下午9時15分03秒寫道:
>> moonhkt [19.07.2012 14:56]:
>> >
>> > Sorry. Using New Google Group, have issue.
>> > tried Not OK.
>> > like
>> > 0 changed to <0&<gt;
>> >
>>
>> What did you try?
>>
>> Ed just told you to use > instead of \> on line 92, and to use < instead
>> of \< on line 94. The error text is quite descriptive, I think.
>>
>> Unfortunately, the script you posted does not show that many lines, so
>> it might be anywhere in the code. You should see it by looking at the
>> original code, I think.
>>
>> Just my 2¢
>> Werner
>>
>> --
>
>
> for change <123> to <123> for excel read the XML file
>
> <ss:Cell>
> <ss:Data ss:Type="String"><123></ss:Data>
> </ss:Cell>
>
> lotx is \t delimiter string , each elemnt have > or < value change to > or <
The question wasn't "why are you running your script?", the question was "why
are you trying to post the same question again when you already got it answered?".
Having said that, now that you've posted some sample input and a hint at the
expected output, we can give you an explicit answer:
$ awk 'BEGIN{
lotx="foo<bar>hello<world>"
gsub(/</,"\\<",lotx)
gsub(/>/,"\\>",lotx)
print lotx
}'
foo<bar>hello<world>
I can't imagine what you think this would do:
gsub("\>","",lotx)
after you change all the ">"s to ">"s with this:
gsub("\>","\\>",lotx)
in your script below.
Regards,
Ed.
>
> function WriteDetail (lotx) {
> # Special Character
> gsub("\>","\\>",lotx)
> gsub("\>","",lotx)
> gsub("\<","\\<",lotx)
> gsub("\<","",lotx)
|
|
0
|
|
|
|
Reply
|
mortonspam (827)
|
7/20/2012 12:47:41 PM
|
|
On 7=E6=9C=8820=E6=97=A5, =E4=B8=8B=E5=8D=888=E6=99=8247=E5=88=86, Ed Morto=
n <mortons...@gmail.com> wrote:
> On 7/19/2012 10:04 AM, moonhkt wrote:
>
>
>
>
>
>
>
>
>
> > Werner Flamme=E6=96=BC 2012=E5=B9=B47=E6=9C=8819=E6=97=A5=E6=98=9F=E6=
=9C=9F=E5=9B=9BUTC+8=E4=B8=8B=E5=8D=889=E6=99=8215=E5=88=8603=E7=A7=92=E5=
=AF=AB=E9=81=93=EF=BC=9A
> >> moonhkt [19.07.2012 14:56]:
> >> >
> >> > Sorry. Using New Google Group, have issue.
> >> > tried Not OK.
> >> > like
> >> > 0 changed to =C2=A0 =C2=A0<0&<gt;
> >> >
>
> >> What did you try?
>
> >> Ed just told you to use > instead of \> on line 92, and to use &=
lt; instead
> >> of \< on line 94. The error text is quite descriptive, I think.
>
> >> Unfortunately, the script you posted does not show that many lines, so
> >> it might be anywhere in the code. You should see it by looking at the
> >> original code, I think.
>
> >> Just my 2=C2=A2
> >> Werner
>
> >> --
>
> > for change <123> to <123> for excel read the XML file
>
> > =C2=A0 =C2=A0 =C2=A0 <ss:Cell>
> > =C2=A0 =C2=A0 =C2=A0 =C2=A0 <ss:Data ss:Type=3D"String"><123></ss=
:Data>
> > =C2=A0 =C2=A0 =C2=A0 </ss:Cell>
>
> > lotx is \t delimiter string , each elemnt have > or < value change to &=
gt; or <
>
> The question wasn't "why are you running your script?", the question was =
"why
> are you trying to post the same question again when you already got it an=
swered?".
>
> Having said that, now that you've posted some sample input and a hint at =
the
> expected output, we can give you an explicit answer:
>
> $ awk 'BEGIN{
> =C2=A0 =C2=A0 lotx=3D"foo<bar>hello<world>"
> =C2=A0 =C2=A0 gsub(/</,"\\<",lotx)
> =C2=A0 =C2=A0 gsub(/>/,"\\>",lotx)
> =C2=A0 =C2=A0 print lotx
>
> }'
>
> foo<bar>hello<world>
>
> I can't imagine what you think this would do:
>
> =C2=A0 =C2=A0 gsub("\>","",lotx)
>
> after you change all the ">"s to ">"s with this:
>
> =C2=A0 =C2=A0 gsub("\>","\\>",lotx)
>
> in your script below.
>
> Regards,
>
> =C2=A0 =C2=A0 =C2=A0Ed.
>
>
>
>
>
>
>
>
>
> > function WriteDetail (lotx) {
> > =C2=A0 =C2=A0 # Special Character
> > =C2=A0 =C2=A0 gsub("\>","\\>",lotx)
> > =C2=A0 =C2=A0 gsub("\>","",lotx)
> > =C2=A0 =C2=A0 gsub("\<","\\<",lotx)
> > =C2=A0 =C2=A0 gsub("\<","",lotx)
Sorry about that. old code worked. Now change as below.
# Special Character
#gsub("\>","\\>",lotx)
#gsub("\>","",lotx)
#gsub("\<","\\<",lotx)
#gsub("\<","",lotx)
gsub(/</,"\\<",lotx)
gsub(/>/,"\\>",lotx)
Also, How to Access Usenet group ? This question ask before. I still
cannot found how to access usenet group.
|
|
0
|
|
|
|
Reply
|
moonhkt (146)
|
7/20/2012 4:41:34 PM
|
|
On 20.07.2012 18:41, moonhkt wrote:
[...]
>
> Also, How to Access Usenet group ? This question ask before. I still
> cannot found how to access usenet group.
Get a newsreader for your platform; e.g. Thunderbird - while certainly
not at the high end, at least it's available for WinDOS and Linux (and
probably some other platforms as well) - then configure access to some
news server, e.g. news.aioe.org (or another news server, one that your
internet provider may probably run). Then subscribe to newsgroups; see
the documentation for your newsreader how to do that. - That's a start,
at least.
Janis
>
|
|
0
|
|
|
|
Reply
|
janis_papanagnou (1038)
|
7/20/2012 6:05:02 PM
|
|
moonhkt <moonhkt@gmail.com> wrote:
<snip>
> Also, How to Access Usenet group ? This question ask before. I still
> cannot found how to access usenet group.
FWIW I use http://www.eternal-september.org with my email client when I can, and
http://www.webuse.net with a browser otherwise (e.g. when at work and external
email/news servers are unavailable but internet is accessible via browsers).
Ed.
Posted using www.webuse.net
|
|
0
|
|
|
|
Reply
|
mortonspam (827)
|
7/20/2012 6:09:23 PM
|
|
On Jul 21, 2:09=A0am, "Ed Morton" <mortons...@gmail.com> wrote:
> moonhkt <moon...@gmail.com> wrote:
>
> <snip>
>
> > Also, How to Access Usenet group ? This question ask before. I still
> > cannot found how to access usenet group.
>
> FWIW I usehttp://www.eternal-september.orgwith my email client when I can=
, andhttp://www.webuse.netwith a browser otherwise (e.g. when at work and e=
xternal
> email/news servers are unavailable but internet is accessible via browser=
s).
>
> =A0 =A0 Ed.
>
> Posted usingwww.webuse.net
Thank. I got http://www.webuse.net account
|
|
0
|
|
|
|
Reply
|
moonhkt (146)
|
7/22/2012 10:56:37 AM
|
|
On Fri, 20 Jul 2012 18:09:23 +0000, Ed Morton wrote:
> FWIW I use http://www.eternal-september.org with my email client when I
> can, and http://www.webuse.net with a browser otherwise (e.g. when at
> work and external email/news servers are unavailable but internet is
> accessible via browsers).
I would agree with Ed on this one. I recently switched to eternal
september and a native newsreader since google changed their usenet
interface.
|
|
0
|
|
|
|
Reply
|
firstname.dot.lastname (1)
|
7/26/2012 10:59:54 AM
|
|
|
14 Replies
160 Views
(page loaded in 0.324 seconds)
Similiar Articles: Warning: Ignoring extra legend entries - comp.soft-sys.matlab ...... original data','fit data','Interpreter','latex','FontName',FontName); > 'Warning ... Skip lines in a for loop - comp.soft-sys.matlab Now it takes one extra > ROI from 2 ... Lost Memory in RAM card - comp.sys.hp48On startup the calc displays 'Invalid Card Data' warning. I downloaded the program ... stores (and removes) an object in each free RAM port, but it would have to skip ROM ... MAT file takes forever to save with big object array - comp.soft ...... MAT file I get the following error: >save backtesting/files/technical-obj Warning ... is a pain though since you need to remember: dimensions, classes, bytes to skip if ... PSP X2 error - comp.graphics.apps.paint-shop-pro... has gone missing" and "...the last couple of days". (This wireless keyboard seems to skip the odd letter when its batteries get low, but before the low battery warning ... transparent JTabbedPane - comp.lang.java.gui... all children have their "opaque" property set to false so that swing doesn't skip ... e.g. (Warning - untested - uncompiled) public void insertTab(String title, Icon icon ... change a clock to pulse in vhdl - comp.lang.vhdl... procedure set_bit (signal arg_s : inout std_ulogic) is begin-- skip tic if ... process; If you "use a clock to avoid this problem" you change your ... latch warning ... ISL boot DVD - comp.sys.hp.hpux... ack read of this entry - X: Disable all future alert messages Anything else skip ... Ken <KenPerl@gmail.com> wrote: > I can enter into console mode, but above warning is ... procedure() pointer - comp.lang.fortran(This post is long enough, so I'll skip my usual tirade about the sorid history of ... It adds another warning message, as import is also an f2003 feature. Some people ... Problem with int 21h and Masm32. - comp.lang.asm.x86... to: > > .486 > .model small > option segment:use16 ;don't forget this You can skip ... Problem with int 21h and Masm32. - comp.lang.asm.x86... or warnings...I go to run it ... Thinkpad only turns on when a/c adapter plugged in. - comp.sys ...Re-Build HP-25 Battery Pack - comp.sys.hp48 HP-25C IMPORTANT WARNING DON'T run it from ... significant difference is that my soundcard is ... via USB, and if so then skip to ... GAWK: A fix for "missing file is a fatal error" - comp.lang.awk ...I note in passing that TAWK handles this rather better - you get a warning about a ... files (e.g. the BEGINFILE rule could test whether the file is readable and skip it ... Writing numerical&character data to CSV file, using dlmwrite ...... b, s, 'precision', '%d % d %c'); But that just gives themessage: Warning: The ... How to append files using MATLAB? - comp.soft-sys.matlab ... > > Open the file, skip ... Getting directory sizes on win32 - comp.lang.perl.misc... path; opendir(my ($dh),$path); #loop through each file in the directory skip ... Got warnings turned on? @dirsize = split(/\s+/, $res[3]); : $dirsize = "@dirsize ... file opening slows down - puzzling - comp.lang.xharbour> > I heard a lot of (meaningful) warnings about wireless access to DBF's. > It's ... nSec = SECONDS() WHILE !EOF() cCli = FIELD -> cliente SKIP ... Migrating from yp to NIS - comp.sys.sun.adminFair warning, though--don't start that process until you're done a lot of research ... if you can afford to just shut the whole floor down for a Saturday. You can't skip ... BuddaMAME Command Line Options - Cakemeister's ProjectsBut,if you want to set skip_warnings to zero in the mame.ini, you would put the following in your mame.ini: skip_warnings 0. And if you want skip_warnings set to 1 in the ... Good DX - Home of the DXrobotDXrobot homepage, VHF Aurora and E-skip warning system 7/22/2012 5:24:16 PM
|