72 reputation
118
bio website
location
age
visits member for 1 year
seen 2 days ago
stats profile views 34

May
16
awarded  Popular Question
May
13
awarded  Popular Question
May
12
awarded  Notable Question
May
11
comment How to shift a div container downward when another div containers of different sizes becomes visible
Awesome mate, I never thought that the other absolute was the culprit.
May
11
asked How to shift a div container downward when another div containers of different sizes becomes visible
May
11
comment How do you create a hidden div that doesn't create a line break or horizontal space
to show the div again (just in case anybody needs as did I) - <div id="divCheckbox" style="display: inline-block;">
May
9
comment Different size inputs in a multi column form
You missed '=' i.e. style="Width:50px"
May
6
awarded  Popular Question
Apr
30
answered How do I invoke a Java method when given the method name as a string?
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
Tom, i tried System.out.print(ComFunctions.class.getName()); and it works and gives me mypackage.ComFunctions when tried in another class. So how shall I invoke a method of ComFunctions using string...lets say str1 ="ComFunctions"
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
well, i believe project should be set up okay as i only used few classes and that too using netbeans...anyways, if i could figure it out, would surely put it here...thanks for all the help friend.
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
same stupid error even after import mypackage.*;...sorry for taking so much of your time buddy.
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
it returns mypackage.ComFunctions
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
that class is under a folder called mypackage only
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
I tried to call package mypackage; import java.lang.reflect.*; public class ABC { public static void main(String[] args){ Class c = Class.forName(mypackage.ComFunctions); }} but even i doesn't recognize mypackage :(. what the hack i ma doing wrong here.
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
the code of class is as added in question, how to put the structure of war here?
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
Yes Tom :(...very weird I know... both the classes in same package...syas can not find symbol, variable mypackage...
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
yess...i tried that NilsH :( but no luck
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
its simply that I am unable to call classname.methodname(parameter) in any java class using strings for class and methods...lets leave jsp apart....so if you could point me?
Apr
29
comment How to invoke methods of a class (in java) when class name and method name are stored in two different strings
oh yes NilsH, I could see - myproject\build\web\WEB-INF\classes\mypackagepackage and all compiles .class files under it..the one that I am trying to call in my JSP. Also, I tried using full name mypackage.classname but it says symbol not found for mypackage. I am using netbeans and everything else works perfect. Stucked here.