No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
29 Posted Topics
Re: 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 … | |
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 … | |
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 | |
Re: [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 … ![]() | |
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 … | |
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 … | |
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 … | |
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 … | |
Re: 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 … | |
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) … | |
Re: 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" … | |
| |
Re: 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 … | |
Re: 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] | |
Re: [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 … | |
Re: [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 … | |
Re: [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 … | |
Re: [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] | |
Re: [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 … | |
Re: [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 … | |
Re: 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 … | |
Re: [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. … | |
Re: [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 … | |
Re: 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 … | |
Re: In the program you give there is no problem of GUI blocking. Clearify the problem. | |
Re: 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() | |
Re: 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 = … | |
Re: 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[] … |
The End.