354 Posted Topics

Member Avatar for cutebab
Member Avatar for peter_budo
0
122
Member Avatar for wollacott

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.

Member Avatar for DangerDev
0
78
Member Avatar for dev.cplusplus

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 …

Member Avatar for DangerDev
0
52
Member Avatar for rowdy12
Member Avatar for technogeek_42
0
114
Member Avatar for smiles
Member Avatar for philmetz

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.

Member Avatar for DangerDev
0
53
Member Avatar for allsenseless

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

Member Avatar for DangerDev
0
110
Member Avatar for cath120

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]

Member Avatar for jbennet
0
991
Member Avatar for srinukatkam

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 …

Member Avatar for katarey
0
248
Member Avatar for carnage

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]

Member Avatar for carnage
0
136
Member Avatar for cosmos22
Member Avatar for cosmos22
0
186
Member Avatar for zipperzz

> (\Code) use (/code) can you give complete code along with html code, so that i could understand whats going on ?

Member Avatar for DangerDev
0
187
Member Avatar for shaikh_mshariq
Member Avatar for cutebab

[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 …

Member Avatar for DangerDev
0
164
Member Avatar for kelvinskk

[URL="http://www.ipv6style.jp/en/apps/20030829/index.shtml"]try this[/URL] hope it helps

Member Avatar for kelvinskk
0
756
Member Avatar for number87

as VernonDozier suggested make a structure of rational no. and then in another structure if needed make array of rational structure.

Member Avatar for DangerDev
0
103
Member Avatar for hunkychop

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'))

Member Avatar for DangerDev
0
186
Member Avatar for gallantmon1

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 …

Member Avatar for Aia
0
119
Member Avatar for kunalcrazycoder

[URL="http://www.codeproject.com/KB/system/Open_Close_CD_DVD_Drawer.aspx"]try this[/URL]

Member Avatar for Duoas
0
98
Member Avatar for AS_82

define a array of type double, store sorted value in it and the return the array. it will work.

Member Avatar for javaAddict
0
93
Member Avatar for Jennifer84

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.

Member Avatar for Jennifer84
0
145
Member Avatar for ad_ms
Member Avatar for ad_ms
Member Avatar for swetha bandaru

[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 …

Member Avatar for Narue
0
425
Member Avatar for gcardonav

[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]

Member Avatar for DangerDev
0
72
Member Avatar for ajithraj

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

Member Avatar for ajithraj
0
60
Member Avatar for ashercharles

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.

Member Avatar for ShawnCplus
0
130
Member Avatar for gsivaram

along with findfrst and findnext method suggested by Niek use recursion to get list of all files from harddisk

Member Avatar for DangerDev
0
147
Member Avatar for nuch1311

[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.

Member Avatar for DangerDev
0
126
Member Avatar for ajithraj
Member Avatar for sriram.venkata

height, width and min-height is supported by IE6 other things are not supported by it

Member Avatar for FC Jamison
0
103
Member Avatar for neclark2
Member Avatar for DangerDev
0
117
Member Avatar for sridharp_in

try [URL="http://www.webreference.com/programming/javascript/ncz/"]this[/URL]

Member Avatar for jwenting
0
84
Member Avatar for codeaa

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.

Member Avatar for DangerDev
0
140
Member Avatar for lordx78

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]

Member Avatar for lordx78
0
95
Member Avatar for winky

run both as separate project and separate program. but run server before running client.

Member Avatar for DangerDev
0
475
Member Avatar for Ankita B

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.

Member Avatar for DangerDev
0
80
Member Avatar for DangerDev

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 …

Member Avatar for jbennet
0
215
Member Avatar for serkan sendur

[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()

Member Avatar for DangerDev
0
108
Member Avatar for knight fyre

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 …

Member Avatar for leo002000
0
165
Member Avatar for Jicky
Member Avatar for ajeckhobar
Member Avatar for dev.cplusplus

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 …

Member Avatar for MidiMagic
0
90
Member Avatar for CoolJuni

[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.

Member Avatar for hughv
0
91
Member Avatar for ndeniche

[URL="http://www.memorystock.com/memory/ToshibaSatelliteM20S257M20S258.html"]try this[/URL] use google ;)

Member Avatar for caperjack
0
121
Member Avatar for ashkan3030
Member Avatar for hidash_in
Member Avatar for anupamamk2005
Member Avatar for go4urs

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 …

Member Avatar for caperjack
0
130
Member Avatar for javaStud

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

Member Avatar for javaStud
0
95

The End.