- Strength to Increase Rep
- +9
- Strength to Decrease Rep
- -2
- Upvotes Received
- 20
- Posts with Upvotes
- 19
- Upvoting Members
- 15
- Downvotes Received
- 6
- Posts with Downvotes
- 6
- Downvoting Members
- 5
@ Honeywell
Re: LOL chaitanya you are answering your own question. :) | |
Re: try: [code='c'] int sum(int num1,int num2) { for(int i=0;i<num2;i++) num1++; return num1; } [/code] | |
Re: Be great in act, as you have been in thought. William Shakespeare How poor are they who have not patience! What wound did ever heal but by degrees. William Shakespeare | |
Re: nice discussion........ | |
Re: Could you please post the code where you are exporting image to excel? It would help us to help you. | |
Re: Hi use array of button to make calculator then assign code on button click, on the base of index process the request. if you are not stick to server side programming you can use javaScript also to make nice calculator. | |
Re: hi you can see event list for drop down box [URL="http://www.w3schools.com/tags/tag_select.asp"]here[/URL]. for showing tooltip you can use div element. | |
Re: I think you should start with a basic C book. You can not learn each and every language construct by communities. | |
Re: DEEP WEB is nice, you can also choose [URL="http://en.wikipedia.org/wiki/Comet_(programming)"]comet[/URL] or [URL="http://en.wikipedia.org/wiki/Semantic_web"]semantic web[/URL] or ask [URL="http://www.google.com/search?client=opera&rls=en&q=seminar+topic&sourceid=opera&ie=utf-8&oe=utf-8"]him[/URL] | |
Re: is it zipped one ? if so no need to install just unzip it and put in to c drive, i think it will work. u just have to set environment veriable. | |
Re: for 1st: use quitYesNo.compareToIgnoreCase("q"); see the [URL="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html"]doc[/URL] | |
Re: use: [code='java'] boolean b; int iSomeValue; b=true; if(iSomeValue==0)b=false; [/code] or use function [code='java'] boolean intToBool(int iVal) { boolean b=true; if(iVal==0)b=false; return b; } [/code] | |
Re: click() function will not work, but onclick() function will work, for that you have to set onclick='function_name' for <a> element. see example: [code='html'] <html> <head> <script> function ClickURL() { document.getElementById('xyz').onclick(); } </script> </head> <body onLoad="ClickURL()"> <a href="javascript:alert('hi')" id="xyz" onclick='javascript:alert("click")'>Link </a> </body> </html> [/code] here difference is also given. | |
Re: So what really you want from us?? Do you expect us to write complete code for you? | |
Re: Or, create a constructor in Form2 which take loginId String as parameter. | |
Re: Actually you are looking something like storing user preferences, see this article: [url]http://msdn.microsoft.com/en-us/magazine/cc163949.aspx[/url] | |
Re: hi you can not do directly like this, the way you have tried is wrong. getElementById() takes only id. use elem.getElementsByTagName('tag name'); this will return array of element('tag name') inside elem. using loop you can........... i think this much is enough. | |
Re: I dont think any one will give you complete code. You first try your self and then ask question, if you face any problem. The solution adatapost has given in mentioned post, is a way to solve the problem, you can extend it. The Python solution is also a hint … | |
Re: Hi there is no direct way to get elements by class name. but you can access the class name attribute using dom api: take help of following example: [code='html'] <html> <head> <script> function clickMe() { var aElems=document.getElementsByTagName('a'); var href=aElems[0].getAttribute('href'); alert('href='+href); } </script> </head> <body> <a href="javascript:clickMe();">click</a> </body> </html> [/code] as … | |
Re: the way you are using clearInterval is not correct. its should be something like this: [CODE] var t; //to start t=setTimeout("someFunction()",1000); //to stop clearTimeout(t); [/CODE] for more information in this, just see: [url]http://www.w3schools.com/js/js_timing.asp[/url] | |
| |
Re: What you have done so far? Post here the problem you are facing. If you want to start from scratch [URL="http://www.c-sharpcorner.com/UploadFile/nanujogi/chat_server11282005233459PM/chat_server.aspx"]this[/URL] may help you. | |
Re: may be u guys r right, but still i feel dhtml is having its own beauty. Browser compatibility problem could be handled through professional coding. | |
Re: hi i am not getting same problem as you are getting as i tried, any way you try to put action="#" hope it will help..! | |
Re: i guess this would help you: [url]http://punbb.informer.com/forums/topic/17351/how-to-add-a-font-file-to-my-website/[/url] | |
Re: Don't look for code here. Spoonfeeding is strictly avoided here. Let us know what you have done so far. | |
Re: Nop, I believe in GOD. (Google Oriented Development) :) | |
Re: Try [URL="http://www.codeproject.com/KB/webservices/cpwebserviceconsumer.aspx"]this[/URL] or [URL="http://www.csharphelp.com/archives2/archive356.html"]this[/URL] or [URL="http://www.google.com/webhp?q=consuming%20web%20service%20u#hl=en&safe=active&q=consuming+web+service+using+c%23&aq=f&oq=consuming+web+service+using+c&aqi=&aq=f&oq=consuming+web+service+using+c%23&aqi=&fp=QKvNt1rSCb8"]this[/URL]. | |