Rat Ban

Ranch Hand
+ Follow
since Jan 20, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Rat Ban

Hi...Peter,
From where we can download it?

Thanks in Adv.

Originally posted by Peter Tran:
Hey Ramesh,
Did you see Angela's post above yours? Let me help you out just in case you can't read her post:
You can download a trial version.
Regards,
-Peter


24 years ago
hi,
If anyone can mail me ...I will be highly oblized.
Mailto:[email protected]
Thanks.
hi ANURAG PRIYA,
THANKS for the reply.
Ratul Banerjee

Originally posted by anurag priya:
dear ratul hi!
thanx for the reply !
as far as books are concerned first go with RHE one reading then pick the KHALIDS book ! RHE will give you the foundation but to score high you need khalid!but RHE will be helpful if you get any unknown question ! (accidental recovery )
if anything else you require please let me know !
anurag!


thank u very much ...for the offer.
Pls, Mail me to the following mail_id:
[email protected]
or
[email protected]
Thanks..1ce again.
Ratul Banerjee
hi prabhu palanisamy,
Thank u very much.
It's working now.I don't understand the logic ..why ur prog. is running fine,not mine !!!
U cut off the DTD 4rm the XML code.Is DTD not required?
Any way..If u explain me why and how this is heppening ..that will be so nice of u.
one more time,,,THANKS.
Ratul Banerjee.
The original xml code is:
code:
____________________________________________________________________
<?xml version="1.0" standalone="yes"?>
<!DOCTYPE CATALOGS [
<!ELEMENT CATALOGS (BOOK)*>
<!ELEMENT BOOK (BOOKNAME,AUTHORNAME,ISBN,PUBLISHER,PAGES?,PRICE)>
<!ELEMENT BOOKNAME (#PCDATA)>
<!ELEMENT ATHORNAME (#PCDATA)>
<!ELEMENT ISBN (#PCDATA)>
<!ELEMENT PUBLISHER (#PCDATA)>
<!ELEMENT PAGES (#PCDATA)>
<!ELEMENT PRICE (#PCDATA)>
<!ATTLIST PRICE CURRENCY CDATA #REQUIRED>
]>
<CATALOGS>
<BOOK>
<BOOKNAME>clouds</BOOKNAME>
<AUTHORNAME>jees auth</AUTHORNAME>
<ISBN>1-1200-098-78</ISBN>
<PUBS>work press</PUBS>
<PAGES>393</PAGES>
<PRICE>
<ATTLISTPRICECUURENCY>46.98</ATTLISTPRICECUURENCY>
</PRICE>
</BOOK>
<BOOK>
<BOOKNAME>ASP</BOOKNAME>
<AUTHORNAME>RAT</AUTHORNAME>
<ISBN>2-23-78-98-9000</ISBN>
<PUBS>work press</PUBS>
<PAGES>390</PAGES>
<PRICE>
<ATTLISTPRICECUURENCY>789.00</ATTLISTPRICECUURENCY>
</PRICE>
</BOOK>
</CATALOGS>
_________________________________________________________________
and the scripting code is:
______________________________________________________________________
<html>
<head>
<SCRIPT LANGUAGE="JAVASCRIPT" FOR="window" EVENT="onload" >
function loadxmldata()
{
var xmlDoc=new ActiveXObject("microsoft.xmldom")
doc.load("catalogs.xml")
var root=xmlDoc.documentElement
var book1=root.childNodes.item(0)
var book2=root.ChildNodes.item(1)
alert("BOOK1:" +book1.ChildNodes.item(0).text)
alert("BOOK2:" +book2.ChildNodes .item(0).text)
}
</SCRIPT>
<BODY bgcolor="red">
<TITLE>BOOK NAMES ALERT AND PRINT</TITLE>
</head>
<DIV ID="d" STYLE="font-weight:bold; color:white; font-size:16">
B O O K 1 NAME:
<SPAN ID="book1" STYLE="color ink"></SPAN>
</DIV>
</BODY>
</html>

_______________________________________________________________
Now...can u pls. explain me ...why this scripting is not working at all??

<marquee> Ratul Banerjee </marquee>
*************THANKS IN ADVANCE********************************

hi all,
I found this q. in a book..the o/p of this prog. is
(5,3)(3,5)(5,3)...but I expected it would be(5,3)(3,5)(3,5)
My q. is ..why the x,y value is not changing whereas I am calling the
the odes() method in the main???
Code:
_____________________________________________________
public class ex34
{
public static void main(String args[])
{
int x=5;
int y=3;
System.out.print("("+x+","+y+")");
odes(x,y);
System.out.print("("+x+","+y+")");
}
public static void odes(int x,int y)
{
int tem;
tem=x;
x=y;
y=tem;
System.out.print("("+x+","+y+")");
}
}
____________________________________________________________
<marquee> Ratul Banerjee </marquee>
*************THANKS IN ADVANCE********************************
hi all,
According to RHE ....
"true","false","null" r all keywords.
Ratul Banerjee
hi Ajith and Bill,
Thanks for ur reply.
I think these links will be very much usefull for me.
By the way...Bill can u give the exact Link
4rm where I can download the JAXP Package.
Thanks in Advance.
Ratul Banerjee

[This message has been edited by Rat Ban (edited January 25, 2001).]
hi all,
Can anyone pls. explain me about the tag NodeType.
I found a code Node Type=3 and here 3 denoting to Text.
I get Confused.Is there any predefine types ???
please,help me....If I am talking anything bogus ...forgive me.
Don't mind.
I am new in XML.
<marquee> Ratul Banerjee </marquee>
hi all,
My problem is that when i am writing a XML code ...it is running quite easyly.
But...when i am Scripting it ...it is not working in my browser
(IE 5.5).It is giving no OUTPUT.
But..I am sure that my Scripting code is right.
I don't know what 2 do ...pls..help me.
<marquee> Ratul Banerjee </marquee>
hi! If there is anyone preparing for SCJP from CALCUTTA
then please contact me
[email protected] or [email protected].
Contact me soon.
God knows ...may be we can help each other in many ways.

I am going to appear in the last weak of feb!
<marquee>Ratul Bnaerjee.</marquee>
Calcutta.
India.
Hi...all,
I am also getting ready to give exaam on feb end though I am not from pune.
Those who r preparing to give the exam on feb ...can u Suggest how can where i am standing right now !!!
thanks
Ratul
hi Sujit,
Yes..u can find it by using hashCode()...
1.String s1 = "Hello";
2.s1 = "World";
3.s1 = "Hello";
if u compile the code u will c the memory address of line 1 and 3 will be same and the memory address of line 2 will be dif.
I have done it.
Hope..its help.
Ratul Banerjee

Originally posted by Sujit Kurtadikar:

Thanks for clarification. But I want to verify this.
How to find the address of Object. Whether hashCode() gives address of Object?
String s1 = "Hello";
s1 = "World";
s1 = "Hello";
as you said, String objects are not eligible for GC, then address of Object refered by s1 and s3 must be same.
Can anybody tell how to verify this ?
sujit