Al sha

Greenhorn
+ Follow
since Jan 20, 2004
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 Al sha

Hi Eric,

Thanks for your initiative and time.
Could you please detail with an example or more information about doing that .

Thanks
Alsha
Hi

I would like to know how to tilt text in a coloumn to an angle (not horizontal or vertical).
Thanks in advance.
Alsha
Hi Marilyn,

Thanks for u r valuable info and timely help.

Regards

Al Sha
19 years ago
Suppose we are invoking test2() in another class like one below

public class TestSingle1{

public static void main(String args[]){
TestSingle ts2 = new TestSingle();
ts2 = null;
ts2.test2();
}

}


Even this prints out the message in test2(), though the variable ts2 is made to null.
Is it because of the static nature of the method test2() ?
19 years ago
Hi ,

Can anyone please explain why am I getting "test2 called" as output instead of throwing null pointer exception for the code mentioned below.

Thanx in advance.

---------------------------------------------------------------------------

public class TestSingle{

public static void main(String st[]){
TestSingle ts = new TestSingle();
ts=null;
ts.test2();
}

public static void test2(){
System.out.println("test2 called");
}

}
---------------------------------------
Output:test2 called.
---------------------------------------
19 years ago
Sorry for bothering again with same question.
This is our requirement.So please try to help me.
19 years ago
Thanks for all u r valuable suggestion and valuable time.
I'll make it clear of my requirement.
In my jar file i have N number of class files, out of that i need to know one of the class files entire path .
Actaully what i am trying to do is .I have got a mthod called getPath(obj).
If i pass the particular class as an object to the method,i should get the real path of the class file which has been passed as the object.
Thanks
19 years ago
Hi
If i pass an object to method called getPath(ob).How to find the real path of the class file resided in the system.
Thanks in advance
19 years ago
How to change the color of text-decoration:line-through css attribute to red instead of black?
HI
I have created a new id for the table dynamically and started applying the style.But still inside the table, the td tag is not overriding.Rest of the thing is working properly.
Cheers!!!
I am using a class, which should be applicable for the entire row,in which the row contains table and all.So the single class should be applicable for the entire row style.
Hi
I have a row which is having nested tables.If i apply a style to entire row,its not reflecting the applied style inside the <table> tag.How to override this inside the <table> tag.
Thanks in advance.
Best Regards
Al Sha
Hi
Thanks to all for u r timely solution.
Finally solved it using padding attribute..
Thanks and Regards
Hi
Could u please explain e, how to go about with css?
Regards and Thanks
Hi Greg,
Thanks for u r prompt reply and timely help.
Regards
Al Sha