354 Posted Topics
Re: [URL="http://www.webreference.com/js/column20/"]try this[/URL] | |
Re: first try something from your side, if you are getting error put your code here, we will try to do some thing. No one here would like to spoon feed any one. | |
Re: FireBug is a nice tool to debug in Mozilla. Steps to use it: ----------------- -run web page in Mozilla. -open fire fox if any error is there in javascript you will find that in console, -clicking on each error will tell you where exactly that occurs -rectify the error. Believe … | |
Re: get "The C++ Programming Language", by Bjarne Stroustrup. Solve It. | |
Re: yes any kind of return statement will end the function. | |
Re: you can do this by dynamically adding the element in dom tree. for that use -getElementById()=to get require element -element.appendChild() to insert new element as child in already present element. | |
Re: to grab element width & height use: clientWidth clientHeight method on element it returns the viewable width/height of the content on the page, not including borders, margins, or scrollbars or use offsetWidth/offsetHeight -returns the width/height of the element, including borders and padding if any, but not margins | |
Re: for detail info try this: [url]http://en.wikipedia.org/wiki/Platform_%28computing%29[/url] [url]http://en.wikipedia.org/wiki/Server_%28computing%29[/url] | |
Re: javaScript is not from .net. [QUOTE]creating tables 1 to 100 using javascript[/QUOTE] do you want to create 100 table ??? -just loop through 1 to 100 - select parent element for tables - create table element using dom api documet.createElement("table"); -add table element using dom api appendChild() i hope this … | |
Re: see following example it may help you: [code='c'] char chStr[10][10]; //populate array with strings for(int i=0;i<10;i++) { strcpy(chStr[i],"hi"); } //print the strings for(int i=0;i<10;i++) { printf("\n %s",chStr[i]); } [/code] | |
Re: use [URL="http://msdn2.microsoft.com/en-us/library/aa363915.aspx"]DeleteFile[/URL] | |
Re: > (\Code) use (/code) can you give complete code along with html code, so that i could understand whats going on ? | |
Re: run server socket in separate thread. | |
Re: [URL="http://www.soft.com/eValid/Technology/White.Papers/website.testing.html"]try this[/URL] apart from this i have some advice for you: 1. Test your website in all popular browser and in different screen resolution. This will give you an insight of how your site looks in different browser in different resolution. 2. Check the response time of each click or … | |
Re: [URL="http://www.ipv6style.jp/en/apps/20030829/index.shtml"]try this[/URL] hope it helps | |
Re: as VernonDozier suggested make a structure of rational no. and then in another structure if needed make array of rational structure. | |
Re: u can call like this: [code] <html> <head> <script> function Hi() { alert('Hi'); } </script> </head> <body> <a href="javascript:Hi()">Hi</a> </body> </html> [/code] or u paste following in url it will work javascript:(alert('hi')) | |
Re: instead of everything writing in to main use function to write every thing then call those function from main. their could be only one main method, hence in another file just have functions and include that in to the file having main() function. then call function of that file from … | |
Re: [URL="http://www.codeproject.com/KB/system/Open_Close_CD_DVD_Drawer.aspx"]try this[/URL] | |
Re: define a array of type double, store sorted value in it and the return the array. it will work. | |
Re: after getting all the filename along with path u need to use String object's (search pattern to get) subString method to get file name. | |
Re: [QUOTE=swetha bandaru;536131]how to write program with void as data type[/QUOTE] void pointer can point any type of data. Example: [code='c'] void* voidPtr; //void pointer int iVal=10; char cVal='a'; voidPtr=&iVal; //void pointer pointing to int type printf("num=%d",*(int*)voidPtr); //casting (void* to int*) voidPtr=&cVal; //void pointer pointing to char type printf("\nchar=%c",*(char*)voidPtr); //casting(void* to … | |
Re: [URL="http://java.sun.com/docs/books/tutorial/uiswing/TOC.html"]try this[/URL] or [URL="http://zetcode.com/tutorials/javaswingtutorial/"]this[/URL] or [URL="www.google.com"]the best[/URL] | |
Re: which server side scripting you are using? you can do this by button, like this <input type='button' value='some value' onclick='retVal(this);' /> and function retVal will be like this function retVal(button) { return button.value; } hope this helps | |
Re: nop its simply impossible. you can make your code complex in a way that any body who see your code find it hard to understand but you cant prevent user to see it. see gmail code how they have done. | |
Re: along with findfrst and findnext method suggested by Niek use recursion to get list of all files from harddisk | |
Re: [QUOTE=nuch1311;535654] Also need help to find the total and the average of the array.[/QUOTE] loop through the array and get sum after that get average. | |
| |
Re: height, width and min-height is supported by IE6 other things are not supported by it | |
Re: u can also getch() but it doesnot work in some compiler. | |
Re: try [URL="http://www.webreference.com/programming/javascript/ncz/"]this[/URL] | |
Re: can u explain u'r problem. i think: for changing parameters u can provide a config class which will take parameter from a config file, hence upon changing on parameter u can make change only on file not in the code. i hope it helped. | |
Re: make some changes... [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title> Test </title> <script language='javascript'> redirTime = "5000"; redirURL = "b.html"; function redirTimer() { self.setTimeout("self.location.href=redirURL;",redirTime); //navigator.location.href="b.html"; } </script> </head> <body> <script language='javascript'> redirTimer(); </script> </body> </html> [/code] | |
Re: run both as separate project and separate program. but run server before running client. | |
Re: suppose u want to put value of strText in to textbox then u can do as: //in jsp String strRsp="<input type='text' value='"+strText+"' name='txt1'/>"; print strRsp string as response string. [QUOTE]and then store back..[/QUOTE] to store value u have to use form and form submit event. | |
Hi I m basically windows programmer, worked always for windows platform, I m good in web based programming also. But i want to move. I always wanted to work for linux. Its my dream to work in c or c++ under Linux platform, I want to do some Networking kinda … | |
Re: [QUOTE]i noticed that something has happened,[/QUOTE] How will u come to know that some thing has happened? through some event right... on that event call a function there u cancel the previous timeout using clearTimeout() | |
Re: nice....... see if u have to impress some one and if u r good in some programming language use data base and make one application using language. this will give u extendability and with each new requirement u will be able to move forward. so if u dont know any … | |
Re: u can save as binary data | |
Re: hi plz use right word, coz i m not able to understand u'r problem. here 'test' is not property it is a value of property of td, i.e. id. so id is an attribute. and for that particular td it has got the value 'test', to set other attribute for … | |
Re: [QUOTE]I have important pictures I need from that laptop, how would I be able to get those pictures because I don't mind doing a recovery format but i don't want to lose those pictures. [/QUOTE] connect harddisk to another computer from there u can get all important data. | |
Re: [URL="http://www.memorystock.com/memory/ToshibaSatelliteM20S257M20S258.html"]try this[/URL] use google ;) | |
Re: u'r question is not clear i think u can do it by File class of java. | |
| |
Re: search temp folder in c: check the size , if it is more than 100 MB del it. in c: it self a system folder will be there with name System Volume Information check the size, if it is more try to delete old items by checking there access or … | |
Re: inside UserListIn.add u put the validation code which will loop through the database and see whether id has been taken by some one or not if id is found it should give error msg you can also raise exception in that case |
The End.