katyayan agrawal

Greenhorn
+ Follow
since May 05, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by katyayan agrawal

How to use a JTable as a node of JTree. The code is :

JTable rulesTable = new JTable(data,columnNames);
category = new DefaultMutableTreeNode("Rules");
rules = new DefaultMutableTreeNode(rulesTable);
category.add(rules);
when I am adding rulesTable in DefaultMutableTreeNode, it is showing string details of JTable, not the Table.
Regards
21 years ago
I am using j2ee-cas-com-bridge to make type library of my java classes and using the same in a VB application.
As per the documentation when I call
Set myObj = JavaNew("package.myclass")
method of JavaProxy COM object it is closing my VB application while it is working fine with another class of the same package with only 1 constructor. While previous one is having 4 constructors.
With overloaded constructors how to create the object of the class?
Regards
Katyayan
21 years ago
I am using 3 horizontal frames. Top and Bottom frames I have given no scrolling and the middle frame I have given auto scrolling.
The middle part it is showing some scroll for those pages also where the size of the page can be accomodate in that part.
Tell me how to stop the same from scrolling.
Dear Friends
I am trying to append an existing xml document using appendChild() method but it doesnot write to the existing xml document & neither throws any exception.Can anybody give me some idea,how i can achieve this?
Dear William/Tony
Based on the input to a jsp(assume it as parent jsp),I am passing the input to 5 different jsps, doing 5 different operations. Now I want these 5 different operations to be done in parellel. With the existing rule in writing jsps to my knowledge we can include these 5 jsps one by one(serially).
What u r saying is right that only one response can be sent to browser, but the actual translation to servlet is happening at server side and 5 simultaneous processes can run simultaneously.
Instead of doing operation serially, I want to blast 5 jsp, so that processing time is reduced. JSPs will act as 5 different clients to jsp.
22 years ago
friends
Is it possible to give a hyperlink in text field or text area. Say my text is comming from back/remote and I am taking that inside the textfield/textarea.
Dear friends
How to fire/start multiple JSP's at any moment from the parent jsp ? Please give me the syntex.
To be more precise multiple JSP's will do seperate operation in parallel to each other, otherwise making it to act as a thread.
katyayan
22 years ago
hello friends
I am changing from 5.1 to 6.0 but while building the jar I couldnot get the weblogic_sp.jar. I searched all the jar files and subdirectories, i could find none in that name.
Will it be a part of wls6.0 kit or we have to download it separately.
Pl. reply immedeatly
Katyayan
22 years ago
thax jim
very well defined
22 years ago
I am sorry not the set class path but setpath=c:/jdk1.2/bin; in console.
thax
22 years ago
Dear friend
put your java file in c:\jdk1.2\bin and then compile instead of putting it in c:\jdk1.2\projects. Hopefully u will not find the said error.
You can also compile it from any folder by just setting the class path in console as --- set classpath=c:/jdk1.2/bin;
thanx
22 years ago