- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 6
- Posts with Downvotes
- 3
- Downvoting Members
- 6
35 Posted Topics
Hope my explanation is clear.. Here are the XML elements <element name="LastTimeBuyDate" type="dateTime" nillable="true"/> <element name="LastTimeDeliveryDate" type="dateTime" nillable="true"/> What I am trying to do in XSLT is state that when the lasttimebuydate is empty to add the "nillable="true"" to the xml output... same thing for lasttimedeliovery date <cim:LastTimeBuyDate><xsl:value-of select="ecim:LAST_TIME_BUY_DATE"/></cim:LastTimeBuyDate> <cim:LastTimeDeliveryDate><xsl:value-of … | |
PHP to output an HTML table but when it does the pictures refuses to display. The php array $members['smallimg'] linkts to the .jpg file for example [url]http://www.powerme.edu/me/images/faculty/70_70/gkumar_2012.jpg[/url] // If there is at least 1 member listed as Faculty, then we are going to get the header and table set up … | |
I am using PHP to output an HTML table but when it does the pictures refuses to display. The php array $members['smallimg'] linkts to the .jpg file for example [url]http://www.powerme.edu/me/images/faculty/70_70/gkumar_2012.jpg[/url] // If there is at least 1 member listed as Faculty, then we are going to get the header and … | |
How do I push new values to the following javascript array? json = {"cool":"34.33","alsocool":"45454"} I tried json.push("coolness":"34.33"); but it didnt work | |
I am trying to push to the javascript array after looping 200 times through the member array to push every member that matches the department selected description into the javascript array., However it fails <? $i = 0 ; while( $i < 200) { if ($members[$i]['department'] == $depttts){ break; echo … ![]() | |
I am in need of incrementing through a php array with the javascript variable "i" instead of where i have 0 in the $members array call var i = 0; while (i<5) { if (<?php echo json_encode($members[0]['department']); ?> == "CHE"){ contacts.push({"NAME":"Sir Saula","TITLE":"John","CONTACT":"bab","RESEARCH":"Ph.D."}); } i++; } | |
I am attempting to create a live search using php/javascript to read from an XML file of student names, as the user types a search it shows results live Any tutorials, hints or tips? All my attempts have been futile | |
Re: Dude please wrap your code in the [CODE][/CODE] format so it is easier to read first of all and from just scanning through it. It seems you are missing the buttons call to your buttonlistener. E.g Create button Create Listener Call listener when button is clicked button.Listner() | |
Here is the instructions given: Use a loop with indirect or indexed addressing to reverse the elements of an integer array in place. Do not copy the elements to any other array. Use the SIZEOF, TYPE, and LENGTHOF operators to make the program as flexible as possible if the array … | |
Okay so I have a program that calculates the time it takes for my application to run and i need it to enter those times in one row in excel 2007. What is the code or way for doing this? There are 1000 times iteration so you can see why … ![]() | |
How do I grab the output sent to the console and save it to a .txt file? Thanks in advanced. | |
Well as the noob that I am in this category this is literally my first JSP tutorial program I am almost done but got these two errors.. [CODE]org.apache.jasper.JasperException: file:C:/Documents and Settings/sa456p/My Documents/NetBeansProjects/IFPWAFCAD/build/web/index.jsp(6,60) PWC6188: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this … | |
Okay I am trying to get my program to read the users input as username and password and match it with my database if it is valid then i want it to move them on to the next page. Problem is i dont know how to validate and once validated … | |
Well I am totally new to java web development how can I create a simple web app that reads and writes to a database? steps tutorials please. Remember I have absolutely no experience on this. I have read several tutorials but with so many ways and they are mostly difficult … | |
I am attempting to edit this Queue class to only use myBack pointer, i began having errors and now I am lost.... LQueue.cpp is as follows [CODE]/*--- LQueue.cpp ---------------------------------------------------------- This file implements LQueue member functions. -------------------------------------------------------------------------*/ #include <new> using namespace std; #include "LQueue.h" //--- Definition of Queue constructor Queue::Queue() : … | |
How do i write a source code in java that finds the non-trivial factors of a number e.g Case : 2 is prime. Case : 3 is prime. Case : 5 is prime. Case : 7 is prime. Case : 10 has factor(s): 2 5 Case : 12 has factor(s): … | |
Here is what i currently have; the instructions are a bit vague so i am confused on what to do beyond this...any help will be tremendous! This is my 2nd week in java so please understand i am not an expert [CODE]public abstract class TestQuestion { protected String question; protected … | |
A binary search tree can be used to sort a list. WE simply insert the list elements into a BST, initially empty, and then use an inorder traversal to copy them back into the list. Write an algorithm for this treesort method of sorting, assuming that the list is stored … | |
1. My bigInt multiplication [B]does not work correctly [/B]it gives me the wrong output. 2. Also how do i modify the class BigInt to process both positive and negative large integers? Merci beaucoup to anyone that helps! Here is my code BigInt.h [CODE]/*-- BigInt.h ------------------------------------------------------------- This header file defines the … | |
How do i split a string word by word and store each word into a hashtable? please help Thanks, Saula | |
How do i write to a text file [B]WITHOUT[/B] deleting the current information in it? basically write on the next available line. | |
Why is my destructor not working properly when ran with my whole code it keeps displaying 01010101010101 etc here is my code [CODE]LinkedList::~LinkedList() { NodePointer ptr = first; while(ptr != 0){ first = ptr->next; delete ptr; ptr = first; } if (first == 0) cout << "List destroyed\n"; else cout … | |
How do i create such a thing like a txt file where i can save usernames and passwords? but is protected that only certain users can access and edit the usernames and passwords? Please help I tried using a txtfile but i realized anyone can access it...is there anyway of … | |
My program is not case sensitive it does not display the output my proff wants PLEASE HELP! I don't know how to make it case sensitive The output should be: As entered 0:a:apple 1:a:Apple 2:z:Zone 3:a:apple Bubble Sorted 0:a:apple 1:a:Apple 3:a:apple 2:z:Zone Selection Sorted 1:a:Apple 0:a:apple 3:a:apple 2:z:Zone My program … | |
How to draw an image/graphics on a specific panel, or in anther word, if I have a JPanel blah = new JPanel() and JPanel moreBlah = new JPanel(); I want the paint function only to draw stuff on blah, not on moreBlah. | |
How to build a [B]case sensitive[/B] bubble sort and selection sort for a 2 dim array Here is what i currently have but it does not work properly [CODE]static void bubblesort(String[][] Array){ String datae = null; String temps; String tempse; for(int x=1;x<i;x++) { for(int y=0;y<i-x;y++) { if(Array[y][1].compareTo(Array[y+1][1])>0) { temps=Array[y][1]; Array[y][1]=Array[y+1][1]; … | |
How do I create functions that do the following? Find: will do a case sensitive search of the text starting at the beginning. If a match is found, the text will be highlighted on the screen. If no match is found a message stating that no matches were found should … | |
How do I do the following? I am beyond lost. Just inform me of whatever you can. I know noone will do it all Here is what problem 21 states: If A is an n x n adjacency matrix for a directed graph, then the entry in the ith row … | |
Sorry I figured out some errors in the project but I can't figure out the rest of it.. I have attached the file below. I am also supposed to add a bool hasProperColoring () const that returns true if no vertex in the graph has the same color as an … | |
Re: Check [url]http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JFrame.html[/url] | |
![]() | Re: First create 2 dies Then make a button called roll When roll is clicked For i = 0; i < 36000; i++ Call random class for numbers from 1 - 6 and save that number as the first die Call it again and save that number as the second die … |
Here is the code I have but it refuses to remove non letters,digits being read from a file line by line then each word in a line still what is wrong with it? [CODE]#include <iostream> #include <fstream> #include <string> #include <sstream> #include <algorithm> #include <cctype> #include <functional> #include "BST.h" using … | |
Re: It's simple.. Just make a scanner to grab the input Separate the digits entered using a for loop Drop each digit into a variable then add all the digits Print the result | |
Re: I am not understanding what you are asking... but if you are looking for the if statements here you go... be sure to change the code as needed [code] if (bmi < 70) System.out.println("F"); else if (bmi < 80) System.out.println("C"); else if (bmi < 90) System.out.println("B"); else if (bmi < … | |
welll it is just a program that generates 2 random numbers for the user...the user inputs their answer and if it is correct it adds 1pt to their score. But then it is also supposed to generate a new problem, but I do not know how to code that in. … |
The End.