Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
59% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
1 Commented Post
~8K People Reached
Favorite Tags
Member Avatar for krystosan
Member Avatar for Nirmeen Ased

<td width="186" align="right"><label for="collegetxt"></label> <select name="collegecategory" dir="rtl" id="collegecategory" class="title"> <option value="-1">Choose college</option> <?php $rs=$db->GetAllCollegCategory(); while(list($name)=mysql_fetch_array($rs)){ echo "<option ".($collegSearch==$name?" selected=selected ":"")." value='$name'>$name</option>"; } ?> </select> </td> </tr> <tr> <td> <strong>Teacher Number:</strong></td> <td width="217" align="right"><label for="Teachesearch"></label> <label for="TeacherNo"></label> <input type="text" name="TeacherNo" id="TeacherNo" class="title" checked="checked"/></td> <input type="submit" name="evlBtn1" id="evlBtn1" value="Evaluate" style="width:119px;height:39px;font-size:16px;" /> Hi, …

Member Avatar for Zagga
0
275
Member Avatar for de Source

hi, i have some logic but unfortunatly m weak in programing need your help guys i am working on a MIS using c# i have a drop down list which display the course id and in my course table one course id could have many student id i want to …

Member Avatar for sariberri
0
196
Member Avatar for kay19

Well I need help one of the two questions which are similar to the topic I'm asking. The first question that I solve was "Taller method should return true if the tree on which the method is invoked has a greater height than the tree passes as a paramter". public …

Member Avatar for kay19
0
189
Member Avatar for sariberri

[CODE]import java.util.*; //You may assume that all Points are unique. public class PointSet { private ArrayList<Point> list; private Comparator<Point> compareMethod; //default constructor public PointSet(){ list = new ArrayList<Point>(); } //copy constructor for a point public PointSet(PointSet l){ list = new ArrayList<Point>(); for(Point p: l.list){ this.add(p); } } //randomly generating a …

Member Avatar for sariberri
0
892
Member Avatar for sariberri

This is just a small snippet of my program but it's a gui and the criteria is when the Open option comes up the user can select a text file that contains the data that is going to be loaded into the JTable. My code only places the first line …

Member Avatar for quuba
0
149
Member Avatar for sariberri

My program needs to tell whether two Students were selected, and if so I need to output to the screen their averages. I got the first specification which works for only one selection (just shows grade) but I have no idea to tell whether they selected two from the list... …

Member Avatar for sariberri
0
163
Member Avatar for sariberri

I don't know why I keep getting an InputMismatchException :/ It highlights when I call the load() method. Thanks [CODE] import java.util.*; import java.io.*; public class GradeManager { private ArrayList <Student> StudentGrades; public GradeManager(){ StudentGrades=new ArrayList<Student>(); load(); } public void load(){ Scanner fileIn=null; try{ fileIn=new Scanner(new File("grades.txt")); }catch(FileNotFoundException e){ System.out.print("Cannot …

Member Avatar for kramerd
0
116
Member Avatar for sariberri

I need to add a border around the Size label and the small, medium and large buttons so I thought I would add them into their own Panel and then add that panel to the mainPanel but when I do that they do not show up. What am I doing …

Member Avatar for Ezzaral
0
286
Member Avatar for sariberri

My teacher said that we needed to perform 3 mathematical actions on the chars so it works when I encrypt the textboxes but then it doesn't work when I decrypt them. I think it might be the order of my math operations in the decryption code? For example: I put …

Member Avatar for alastair1008
0
856
Member Avatar for sariberri

This is my first time making a GUI and we're making a stopwatch...I figured everything out except for how to make the time elapsed have one decimal place ex: 1.1 seconds this is what I have so far [CODE]public void actionPerformed(ActionEvent ae){ stop.setEnabled(true); long endTime; if(ae.getActionCommand().equals("Start")){ display.setText("Start Button was Pressed"); …

Member Avatar for sariberri
0
212
Member Avatar for spoonlicker

[B]I just started to learn Java a few weeks ago but gave up on it after hours of attempts and my code didn't work. Here is my input: [/B] [CODE]class JAVA { public static void main(String Args[]) { System.out.println("Hello World"); } }[/CODE] I saved it as JAVA.java and tried to …

Member Avatar for ztini
0
203
Member Avatar for sariberri

The rubric says "In a new class, write a static insertion sort method that takes in an array of Comparable objects...In this new class, create a main that tests your code by making an array of TravelGuide objects and passing it into your insertion sort. Also test that your code …

Member Avatar for ztini
0
3K
Member Avatar for sariberri

I don't know why/how to fix this...It's saying i have a NoSuchElement exception on line n=f.nextLine(); [CODE]while(i<listFlights.length){ i++; n=f.nextLine(); d=f.nextLine(); h=f.nextInt(); m=f.nextInt(); Time one=new Time(h, m); listFlights[i]=new Flight(n, d, one); }[/CODE]

Member Avatar for sariberri
0
137
Member Avatar for sariberri

Pleaseee help me guys. I can't figure out why the elements in my array are null. I'm reading in from a file and take each line and saving it as a variable in the object and then adding the object to the array. This is what I have so far...when …

Member Avatar for Akill10
0
197
Member Avatar for sariberri

My Excel 2008 literally freezes after one click into a cell. I updated my Mac and I updated my Microsoft Office Software. Please Please Please Help! I really need to get it to work :( -Sarabeth

Member Avatar for sophieharris
0
204
Member Avatar for sariberri

I'm trying to figure out how to add an element to an array of integers, but the tricky part is that I have to slide the elements to the right of it over by one place. For example: Start array: {1, 2, 3, 4, 5, 6, 7} Adding 10 to …

Member Avatar for Ezzaral
0
138
Member Avatar for sariberri

This might be a stupid question but I can't figure out how to set my array equal to my method which returns an array. This is what I did and there's an error. :/ [CODE]array=array.resize();[/CODE] Thanks guys

Member Avatar for apines
0
113
Member Avatar for sariberri

So my assignment is to create a function in Java that takes out duplicate characters from the string. The catch is that it need to be done [B]recursively[/B] (no loops) and it must start like this with one parameter where the string is passed in. Please help guys I've been …

Member Avatar for SasseMan
0
728