- 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
354 Posted Topics
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]. | |
Re: In this scenario binary search will not do the job, simple go for linear search. Here is algorithm: [code] 1. take pattern as patternString. 2. take one string from string array as strToCompare 3. If patternString and strToCompare are matching then print strToCompare. 4. go for next string in array … | |
Re: Try [URL="http://en.wikipedia.org/wiki/Comet_(programming)"]Comet[/URL]. | |
Re: [QUOTE]In short I want to implement a feature used by gmail where one user can expire or log out all other users on different machines using same user id's.[/QUOTE] you can do this by having a table(say login_detail) in server with column: UserId, ClientSessionValue When ever user login, store unique … | |
Re: By PDF form, do you mean .pdf or some thing? are you creating them using HTML? [QUOTE]For example: If someone chooses an item from a list on the first page. I want their selection to show up in a field on the following pages so they don't have to keep … | |
Re: Hi, You don't need to master it, just try to know how it works, then you can go to silver light. As you face problem in silver light come back and know more. :) | |
Re: What exception it is throwing? How do you know its not working? | |
Re: It seems this method doesn't support ico file. I tried with .bmp files, its working fine. | |
Re: are you asking about how to send user name and password to server with security ? | |
Re: Based on what information you want to add child nodes? Can you explain more about why you want to do this, this will help us to provide better solution. | |
Re: You can go for image buttons, and represent a button by two images. First image will be for normal state of button and second image will be for push state. you can search more about it in google. Now regarding second problem: when you push a button just set the … | |
Re: Can you elaborate your question? Don't you want to use ASP or any server side language? you can go for PHP as server side language and MySQL as Database. | |
Re: [URL="http://www.google.com/search?hl=en&safe=active&client=firefox-a&channel=s&rls=org.mozilla:en-US:official&ei=VNF_SpjKF4vQsQPGtqTvCg&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=creating+screensaver+in+c%23&spell=1"]this[/URL] is how you can start. | |
Re: Its is security related problem. You need to give com permission to user who is trying to access your page. For this go to: 1. Control Panel->Administrative Tool -> Component Services. (click here, 'component services' window will open) 2. In component services window, in left side tree goto: Console Root … | |
Re: Try to avoid GOTO. Put main loop inside one more loop or try some other logic. Use of GOTO will create all the mess at last. | |
Re: Did you see [URL="http://www.google.com/search?hl=en&safe=active&client=firefox-a&channel=s&rls=org.mozilla%3Aen-US%3Aofficial&q=creating+non+rectangular+form+in+window&aq=f&oq=&aqi="]this[/URL] ? | |
Re: Please post your question. Please use English which every one can understand. What is vf? | |
Re: 1. Why you created two different threads for the same problem. @ moderators : please delete new one. 2. What you have done so far? i don't think any one will provide you source code here. | |
The End.