Posts
 
Reputation
Joined
Last Seen
Ranked #539
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
47% Quality Score
Upvotes Received
14
Posts with Upvotes
14
Upvoting Members
13
Downvotes Received
24
Posts with Downvotes
24
Downvoting Members
3
9 Commented Posts
~152.52K People Reached
Member Avatar for Duki

Well I just started eating dinner and thought this would be a neat topic. Everyone knows we love to eat while on the computer; two birds, one chair. I'll start it off: Deli Sandwiches, macaroni salad, potato salad and a Pepsi :)

Member Avatar for Reverend Jim
22
17K
Member Avatar for ka-ii

i have learn this Java since last month for my work purposes. i wanted do this exercise. this is Vending Machine Program. I don't if write it in a wrong way. So i need somebody to show me the in my code. i know there must be wrong somewhere in …

Member Avatar for JamesCherrill
0
14K
Member Avatar for gayaneducation

I need jsp function for search data(text) inside a html table. not a my sql table. ex: inside a table "<table><tr><td>some text here</td></tr></table>" i have several text. i need jsp function to search one of the text and highlight it with the position where the word is. or can u …

Member Avatar for Ardit_1
0
812
Member Avatar for saswati_mishra

Hi, I am writing a code to dynamically create a table and then add delete and modify records. The table is created from an existing database table. How ever the add and the deleting of records is not wrking. I think there is some error in the query statements. Please …

Member Avatar for gentlemedia
0
1K
Member Avatar for k2k

hi, would anyone please show how i should make my site searchable? by yahoo, google... whatever search engine. is it the meta tag? any quick example please. thanks

Member Avatar for John_66
0
170
Member Avatar for Laidler

Using a code i got over the internet i managed to embed a .ram file on a html page. however after i copied this code to enter a second file the web page plays the second video in both palyers whenever i tell either of the files to play. Can …

Member Avatar for svrdeen
0
179
Member Avatar for anga08628

Define a 5 x10 2-dimensional array of integers (5 rows of 10 columns), randomly generate 50 numbers between 1 and 100, assign them to the array elements and display all the numbers on 5 lines of 10 integers each. [code=cpp] #include <iostream> #include <ctime> // For time() #include <cstdlib> // …

Member Avatar for irum.nageen.3
0
11K
Member Avatar for veledrom

Hi, I try to do the examples in these pages but none works. When i run, it shows "Error" word on the status bar of my browser. What do you think it doesn't run? Thanks [url]http://www.w3schools.com/PHP/php_ajax_xml.asp[/url] [url]http://www.w3schools.com/PHP/php_ajax_database.asp[/url] [url]http://www.w3schools.com/PHP/php_ajax_responsexml.asp[/url] [url]http://www.w3schools.com/PHP/php_ajax_livesearch.asp[/url]

Member Avatar for kanoy83
0
424
Member Avatar for sillyboy

I usually listen to music while I'm browsing here, what are you listening to right now? EL-P - Fantastic Damage

Member Avatar for Helianthus
0
5K
Member Avatar for aasi007onfire

in our college we have a repeated C aptitude question... which goes like this.... [code] int i=5 printf("%d %d %d", i--,i,i++) [/code] and the answer given to us was 5,6,5.... when asked it was said that the compiler evaluates printf from right to left...... can somebody throw some light on …

Member Avatar for deceptikon
0
270
Member Avatar for curtissumpter

[code=java] final String cardListStrings[] = {"First Card", "Next Card", "Previous Card", "Last Card"}; cardList = new JList(cardListStrings); cardList.setVisibleRowCount(4); cardList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); cardList.addListSelectionListener( new ListSelectionListener() { public void valueChanged(ListSelectionEvent e) { System.out.println("Inside List Event Handler"); if (cardList.getSelectedIndex()== 0) { cardManager.first(deck); System.out.println("First Card"); } if (cardList.getSelectedIndex()== 1) { cardManager.next(deck); System.out.println("Next Card"); } if (cardList.getSelectedIndex() …

Member Avatar for DavidKroukamp
0
218
Member Avatar for Silo45

[code=Javascript] //JavaScript function checkCountry(slctFild) { if(slctFild.selectedIndex==1) { showStateSelectBox(); hideProvinceSelectBox(); } else { if(slctFild.selectedIndex==36) { hideStateSelectBox(); showProvinceSelectBox(); } else { document.getElementById("00N200000013FlZ").selectedIndex = 0; // ERROR gets thrown here!!! document.getElementById("00N200000013Flo").selectedIndex = 0; hideStateSelectBox(); hideProvinceSelectBox(); } } } [/code] [code=Html] //HTML Registraton Form <select id="00N200000013FlU" title="Country" onchange="checkCountry(this)" name="00N200000013FlU"> <option value="" selected="selected">--None--</option> <option value="United …

Member Avatar for Taywin
0
2K
Member Avatar for kaleeswaranm

Hi, Can any one tell me how to pass a value from jsp to javascript both being different files.. ie a.jsp , b.js.. I have a hidden value in jsp i want to get its value in the javascript file. thank you, kaleeswaran

Member Avatar for shivnal
0
4K
Member Avatar for faizurrahman

AS javascript date function return gregorian Date. Can I retrun Hijri Calendar date from javascript date function and how? Thanks in advance

Member Avatar for Airshow
0
1K
Member Avatar for sham51

hi guys !!!! if any one can let me knw where i can find a unix downloadable file tat would be really helpful.... i dont mind the version , though would prefer the latest.... plz take immediate notice and help me!!!1 am in a bit of a hurry.... thank u …

Member Avatar for conbot
0
226
Member Avatar for forumposters

I need to write a main() function, that loops over a bunch of numbers from 0 to 100, calls another function called isPrime() for each of them, and print out the numbers that are prime. I'm new to C++ and any help would be appreciated.

Member Avatar for yashsaxena
0
781
Member Avatar for Nickair

Hi, I was wondering if anyone could tell me the best way to start learning the java programing language? Are there any free programs i can download to help me practice? I am going to be going into computer engineering and want to get a head start with programing and …

Member Avatar for Sonny101
0
149
Member Avatar for puneetkay

Greetings, Hmm, Im not sure Is this the right place to ask this question, Well If im wrong please correct me. Im working in a company as Java programmer that also provide professional training for Java and two of my trainees have created "Stick Snake" and "Snake and ladders" game …

Member Avatar for Dawenlomo
0
1K
Member Avatar for rajshree13

I want source code for searching the data in our intranet website.. Please give me solution for search the data in JSP Language. Thanks

Member Avatar for peter_budo
0
195
Member Avatar for gshockneo

hi all, I want to call a class function using beans inside java script. but it is not working. It calls that function only 1 time. [code] <jsp:useBean id="track" scope="session" class="ReturnProgress"></jsp:useBean> <script type="text/javascript"> function getProgress() { document.getElementById('progress').innerHTML = '<%=track.findProgress()%>'; } </script> [/code] I want that Whenever user clicks on button …

Member Avatar for bofcarbon1
0
3K
Member Avatar for bunty_kkp

1. Define a structure called cricket that will describe the following information Player name Team name Batting average Using cricket, declare an array player with 10 elements and write a program to read the information about all the 10 players and print a team wise list containing names of players …

Member Avatar for Nick Evan
0
236
Member Avatar for al3x748769

i am new to C and i am trying to learn more as i am taking a basic class. we started out with basic programs and now we are making a tic tac toe board. i was wondering what a 8 bit binary counter would look like. i know the …

Member Avatar for viwenka
0
144
Member Avatar for khess

It's a cell phone for crying out loud. Do you get it? A cell phone. You know, you make and receive phone calls on it. It's a telephone that you carry around in your pocket. Who gives a rip whether it's equipped with a web browser, a file editor or …

Member Avatar for theseekerguy
0
718
Member Avatar for bebe11bebe

this is my code - i have three classes and i will post all since i have no idea what i'm doing apparently [CODE]public class OneTwoTest { public static void main(String[] args) { System.out.println("Welcome to One-Two Match!"); Game g = new Game(); g.play(); System.out.println("Thank you for playing."); } // end …

Member Avatar for haseena04
1
3K
Member Avatar for tonis

As we all konw that Mozilla's next-generation web browser - the final version of Firefox 3.5 is released on Jun 30, 2009. The new browser bring us many new features, improvements and unexpected surprise. Supporting new web technologies, improving performance and ease to use. According to SunSpider dataļ¼Œthe speed of …

Member Avatar for jaikanth123
2
302
Member Avatar for Ghost

Hi, I'm trying to run my program in command prompt, but i get this error: [CODE] Exception in thread "main" java.lang.NoClassDefFoundError: Invaders [/CODE] Can anybody tell me what this error means? Thanx.

Member Avatar for stultuske
0
2K
Member Avatar for mahela007

How do I copy folders using python? Shutil.copy doesn't work. it raises a permission denied error in windows

Member Avatar for svn799
0
112
Member Avatar for balbirchnd

i just cant able to here audio..inspite i have install vlc amarok xmms2,rpm..plz help me wisely///

Member Avatar for ramanabulusu
0
99
Member Avatar for RexxX

I've never written byte variables on my unix shell before, so I don't know if it works or not. I'd been using unsigned ints to get hex numbers as input but I was having trouble with what my input actually was. My friend told me to use byte variables instead …

Member Avatar for Narue
0
133
Member Avatar for Mocabilly

Hi all, First of all, I never experienced problems using secured pages, except for (this) [B]one[/B] site. To picture it in short, I use a login page, get directed to an other login page, I DO get logged in, and as I'm logged in, an other page (main secured page) …

Member Avatar for Mocabilly
0
275