Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #1K
~11.5K People Reached
Favorite Tags

29 Posted Topics

Member Avatar for aarushik

You can use jShowOff lib for developing this. There are many functions, you will have to dig into it. transitionTo function is being used for slide to perticular div. This should be worked. There are some other plugins also that you can try. [Cycle plugin](http://www.malsup.com/jquery/cycle/) They have provided demo for …

Member Avatar for hardik.rajani
0
94
Member Avatar for hardik.rajani

Hi I was trying to make a remote desktop program using java socket programming. I have been successful to develop it for LAN. But i am wondering that how to use the same application over internet. As i am not an networking guy, i don't have enough knowledge of tunneling …

Member Avatar for Aviras
0
2K
Member Avatar for hardik.rajani

I was creating a bluetooth program to access files of another mobile device. I have used 0x1106 UUID for searching services. But i am getting null pointer exception. As well please let me know about how to set HeaderSet to get folder detials from root. Thanks

Member Avatar for dopoka
0
133
Member Avatar for Web_Sailor

[QUOTE=Web_Sailor;1417508]Hi, I have a submit button in my JSP page. I also have drop down menus and text area in my form. Now my condition is like if drop down values or text area are null in this case if a user wants to submit he should get an alert …

Member Avatar for rakhi4110
0
880
Member Avatar for hardik.rajani

Hi. I need to create a bean class from list of properties in property file. So that if i need more fields in bean i don't need to go and change code. Instead just add a property in file and at runtime, a field with given name be added to …

Member Avatar for nikelin
0
95
Member Avatar for hardik.rajani

Hi. I am using apache servicemix and apache activeMQ in my product. Here in case of HttpConnector i found a performance issue. If i increase number of total request at a time then as the number will increase exchange queue gets stuck on any of the component. After all the …

0
70
Member Avatar for hardik.rajani

Hi. I am working on a HRMS system in J2EE. Here i need to verify mobile number through sms. I am reading about it from 2 days but didn't get anything except SMPP. It will take a long time for me to learn this and implement whole. I need suggestion …

Member Avatar for parry_kulk
0
137
Member Avatar for hardik.rajani

I was trying to run a spring program with different style. I am new to this framework. I tried to load configuration file with types of loader. like [CODE] (1) BeanFactory factory = new XmlBeanFactory(new FileSystemResource("spring.xml")); (2) ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml"); (3) ApplicationContext context = new FileSystemXmlApplicationContext("/spring.xml"); [/CODE] But …

Member Avatar for hardik.rajani
0
135
Member Avatar for masterjiraya

Here you are confusing the code. You are taking input as Integer. [CODE] System.out.print("Choose An Operation"); System.out.print("\nPress1 for Multiplication"); System.out.print("\nPress2 for Division"); System.out.print("\nPress3 for Addition"); System.out.print("\nPress4 for Subtraction"); System.out.print("\n\nOperation: "); option = stdin.readLine(); [/CODE] User gonna press 1 to 4 as input. You will not get character. If you want …

Member Avatar for masijade
0
126
Member Avatar for hardik.rajani

My Spring.xml is something like this: [CODE] <beans> <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"> <property name="host" value="_local-mail-server_" /> </bean> <bean id="businessLogic" class="com.logic.BusinessLogicImpl"> <property name="mailSender" ref="mailSender"></property> </bean> </beans>[/CODE] And bean definition is as below: [CODE] import org.springframework.mail.MailException; import org.springframework.mail.MailSender; import org.springframework.mail.SimpleMailMessage; public class BusinessLogicImpl implements BusinessLogic { private MailSender mailSender; public void setMailSender(MailSender mailSender) …

Member Avatar for hardik.rajani
0
3K
Member Avatar for mnealmneal

I could not get question exactly. But i think want to remove the table on click to delete button. If this the case then following solution will work. [CODE] <script language="javascript"> function removeRow(src) { document.getElementById(src).style.display = "none"; } [/CODE] This will hide the table from user. [CODE] <table id="tblGrid" style="table-layout:fixed" …

Member Avatar for hardik.rajani
0
99
Member Avatar for d.devendran
Member Avatar for tulsi_apr03
Member Avatar for farooq82

Hi.... I have tried your code on my PC. Its works well. output is : [ICODE]STD01 Saqib 18 BCS 3.4 STD02 Kashif 17 BCS 3.5 STD03 Memoona 19 MCS 2.6 STD04 Madiha 18 BIT 3.0 STD05 Sidra 18 BBA 2.7 STD06 Hina 17 BCS 3.0 STD07 Shahid 19 MIT 3.2 …

Member Avatar for verruckt24
0
158
Member Avatar for gigantic

read this and try correct your code yourself: [URL="http://www.tech-recipes.com/rx/1177/java-graphics-paint-and-repaint/"]http://www.tech-recipes.com/rx/1177/java-graphics-paint-and-repaint/[/URL]

Member Avatar for zyaday
0
685
Member Avatar for grisha83

[QUOTE=grisha83;871094]Hello, I was wondering why do we need to assign value of -1 to the top of the stack? topOfStack = -1; Thank you[/QUOTE] No dear it is not compulsory to set topOfStack by -1. But there is some tradition as well some concept for predefined. If you want to …

Member Avatar for grisha83
0
103
Member Avatar for osirion666

[QUOTE=osirion666;868804] int test = numbers.length; if (numbers[i] = test) { } i want to find the last array in numbers then do something with it for example out put it the above code is my attepmtp at it however i am doingd something wrong and cant for the life of …

Member Avatar for peter_budo
0
97
Member Avatar for kanodi

[QUOTE=kanodi;868384]Also I have found something else out about my problem... If I remove the encoding attribute from my XML document the same error occurs when executing via my IDE. So it seems the problem is something to do with web start not reading this attribute some how?[/QUOTE] Try removing DOCTYPE …

Member Avatar for kanodi
0
216
Member Avatar for litu

[QUOTE=litu;843432]hi, i have a jsp page with 3 tabs. i want to include a jsp page whwn a tab is clicked. i used following syntax to include. <jsp:include page="Homepage.jsp" /> </div></div> </jsp:include> but it is not working. can anyone help?[/QUOTE] just alittle change [CODE] </div><jsp:include page="Homepage.jsp" /></div> [/CODE]

Member Avatar for hardik.rajani
0
87
Member Avatar for kadamati

[QUOTE=kadamati;866487]hi i'm developing a webpage.page contains various fields like collegename ,studentname and so on.collegename field will be a dropdown box and it gets option from backend table collegedetails.every collegename will have a unique collegeid in collegedetails table.after selecting collegename and filling necessary fields in webpage the details should be stored …

Member Avatar for peter_budo
0
101
Member Avatar for JustmeVSI

[QUOTE=JustmeVSI;869226]I'm having a project form school for a inventory management system and I want to do something extra. The inventory management system is for spare parts for machines and I want to be able to see the the manuals(PDF files) for thous machines in the GUI but I have no …

Member Avatar for hardik.rajani
1
247
Member Avatar for hemanthjava

It is possible but it will take a long time to implement. So first try your self. If you need help afterward it will be delievered. you add something like if user select the text and give a the location by third click options. Then the text selected may be …

Member Avatar for hardik.rajani
0
2K
Member Avatar for grisha83

[QUOTE=grisha83;869126]Hello, I have an assignment where i have to create few methods using linked lists. one of them is method that should create an integer singly list and return the head. While i know how to add a single node i am not sure how to create list of them. …

Member Avatar for hardik.rajani
0
111
Member Avatar for anandarju

[QUOTE=anandarju;867745]I need to know how to access two tables which has some reference values within the table.I need the Java Code to Fetch Both the tables values which are same and have to display it[/QUOTE] It is a part of DB not java. Use query which implement JOIN. One query …

Member Avatar for hardik.rajani
0
101
Member Avatar for grisha83

Here is the changes to your method. Two problems solved 1) for(i = a-2; i >= 0; i--) was wrong. 2) System.out.println("All Values of the Array including the new added value is: "); System.out.println(+ b[i]); Here the second sysout is wrong. [CODE] public void addAtBegin(int n, int m) // adding …

Member Avatar for hardik.rajani
0
371
Member Avatar for functionalCode

In the program you give there is no problem of GUI blocking. Clearify the problem.

Member Avatar for BestJewSinceJC
0
112
Member Avatar for yas.alvarez

use javascript. make a javascript function and call it by a onload event of body tag. e.g. <body onlaod="load()"> at last in the function use window.close()

Member Avatar for hardik.rajani
0
60
Member Avatar for osirion666

THis will replace #NUMBER with the array of number. But take care if there are more than one "#NUMBER" in your url. If such condition comes than u have to replace all #Number with good care. [CODE]String url = "http://www.sendmessgae.com/send?#NUMBERS" StringBuffer replacement = new StringBuffer() ; for (int i = …

Member Avatar for hardik.rajani
0
138
Member Avatar for gabec94

I have change your code snippet as below check it out. It will print all the modes having maximum number. Check for the arrays sizes if i think it need some changes. [CODE]import java.util.Random; public class ModeOfNumbers { public static void main(String[] args) { Random randGen = new Random(1); int[] …

Member Avatar for gabec94
0
248

The End.