Forum: Visual Basic 4 / 5 / 6 Feb 12th, 2009 |
| Replies: 1 Views: 546 So Ive been working really hard to get a working ASP captcha to incorporate into my form (note, classic ASP not .net).
I FINALLY got it working in a test area, the form looks like this:
... |
Forum: JavaScript / DHTML / AJAX Feb 11th, 2009 |
| Replies: 1 Views: 711 I have this code, I know it has ASP in it but the ASP isnt giving me the hard time, the javascript is (I think...). Right now users can use this drop down menu to get to a certain page, but instead i... |
Forum: Java Nov 1st, 2007 |
| Replies: 4 Views: 586 I got it semi-working.
/*
* NewClass.java
*
* Created on November 1, 2007, 3:47 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.... |
Forum: Java Nov 1st, 2007 |
| Replies: 4 Views: 586 So I should just rename the class as midterm1? |
Forum: Java Nov 1st, 2007 |
| Replies: 4 Views: 586 This program will build/compile but not run. I get an error message
Code:
java.lang.NoClassDefFoundError: midterm1/Main Exception in thread "main" Java Result: 1
Now I am very new to... |
Forum: C++ Jun 21st, 2007 |
| Replies: 4 Views: 665 can someone please give me an example of how to do what was mentioned? I am sorry, i am new at this. |
Forum: C++ Jun 20th, 2007 |
| Replies: 4 Views: 665 i wrote this program to input 12 intigers (mustuse linked lists), sort it while its being inserted, then take the average, then take out the numbers that are greater then the average and make a new... |
Forum: C++ Apr 24th, 2007 |
| Replies: 14 Views: 1,583 |
Forum: C++ Apr 24th, 2007 |
| Replies: 14 Views: 1,583 would i need to declare any more variables? sorry, i kind of need things spelled out for me. thanks for the insight, ill test it soon |
Forum: C++ Apr 23rd, 2007 |
| Replies: 14 Views: 1,583 cout << "no mode" or "null" (doesnt really matter)
and if there is multiple modes, list them |
Forum: C++ Apr 23rd, 2007 |
| Replies: 14 Views: 1,583 better? its still showing up in colors. i pasted it into notepad first this time. |
Forum: C++ Apr 23rd, 2007 |
| Replies: 14 Views: 1,583 //MODE HERE
int modeIndex=0;
int modeFrequency=0;
int maxModeIndex=0;
int maxModeFrequency=0;
for(int i=0 ; i<length ; i++)
{
if(list[i]!=list[modeIndex])
{
if(modeFrequency>1) |
Forum: C++ Apr 23rd, 2007 |
| Replies: 14 Views: 1,583 can you please specify if you are talking about my actual C++ or how it appears on the firum. cause i dont know what you mean... |
Forum: C++ Apr 23rd, 2007 |
| Replies: 14 Views: 1,583 the formatting of the c++ is horrible, as in the xyntax and logic? or how it copy/pasted?
i just opened up the .cpp file and copy/pasted. visual studio automatically colors my tags like that. |
Forum: C++ Apr 23rd, 2007 |
| Replies: 14 Views: 1,583 after hours of trying (im really new to C++), i got a program to run that will find the mean, median, mode, and standard deviation of an array of numbers. However, if there is no mode (every number... |