Forum: XML, XSLT and XPATH May 1st, 2008 |
| Replies: 0 Views: 2,172 Hey guys with regards to <xsl:value-of select="Catalog/Product_Type/Name"> how would
i put that in a <h1> html tag which is defined in my css file.
<h1><xsl:value-of... |
Forum: XML, XSLT and XPATH Apr 7th, 2008 |
| Replies: 0 Views: 1,128 Basically im trying to design a dtd that represents a collection of movies
Not sure why but when i try validate the dtd it says undetermined element declaration
'Movies' but i have declared it... |
Forum: C Mar 13th, 2007 |
| Replies: 2 Views: 4,376 Hi just wondering how i can convert ascii to binary then into hex then print it to the screen.
The user will input 5 chars then do the conversion and print |
Forum: MS Access and FileMaker Pro Jul 16th, 2006 |
| Replies: 0 Views: 6,104 Hey guys just wondering if anybody has any idea how to make some sort of shortcut that will automatically run filemaker pro on the client computer so that it is able to connect to the remote database... |
Forum: C May 21st, 2006 |
| Replies: 1 Views: 2,002 Hey guys just wondering how i can sort the linked list by categoryName
for the drink type list. Iv done the linked list in my code but its not sorted?
Could someone help me write an algorithm or... |
Forum: C May 3rd, 2006 |
| Replies: 1 Views: 2,181 Sorry for posting again guys but i have fixed up teh string copies to copy the data into each struct variable. But still when i traverse through the linked list it does not print out anything after... |
Forum: C May 3rd, 2006 |
| Replies: 2 Views: 3,841 |
Forum: C May 2nd, 2006 |
| Replies: 2 Views: 3,841 Hey guys im reading in a text file with several fields iv tokenized
the '|' so that it only reads the fields categoryId, drinkType, the categoryName, and categoryDescription.
My question is how... |
Forum: C Mar 29th, 2006 |
| Replies: 16 Views: 2,640 Hi guys im making a minesweeper game and im trying to implement a function that finds the certain blank spaces next to the mines so i can add the number.
i have to Use numbers from 1-8 to mark... |
Forum: C Mar 28th, 2006 |
| Replies: 2 Views: 2,865 Hi guys inside the double array it holds '?' character.
How would i do the format printing to print it like this
ithe user input variable is the size variable
if 5 is typed in it suppose to... |
Forum: C Mar 22nd, 2006 |
| Replies: 0 Views: 1,174 Hey guys im making a calendar program where you enter a month 0 to display all months for that year... 0 - 12.. 1 being janauary etc and then entering the year. Similar to the cal command in unix
... |
Forum: C Mar 21st, 2006 |
| Replies: 3 Views: 986 sorry im going nuts with and im only a begginner any help would b much appreciative |
Forum: C Mar 21st, 2006 |
| Replies: 3 Views: 986 Im using an ansi c compiler all the errors using gcc -ansi -Wall -pedantic
should work without warnings and errors. Running on unix |
Forum: C Mar 21st, 2006 |
| Replies: 1 Views: 991 Hey guys sorry for posting the whole code again..
How i can get my calenda program working from here? Because its not printing anything its only printing the mon tu wed etc but not the days of the... |
Forum: C Mar 18th, 2006 |
| Replies: 1 Views: 985 Sorry guys i apologize for posting large code but im trying to pass the
int daysOfMonth[] = {31,28,31,30,31,30,31,31,30,31,30,31} variable array to the totalDays function so i can do some... |
Forum: C Mar 17th, 2006 |
| Replies: 1 Views: 1,252 Hey guys i need to find out how many days there are in a particular month in a particular year.
How can i start building an algorithm like that im having some trouble? |
Forum: C Mar 17th, 2006 |
| Replies: 7 Views: 2,061 i just bet ya too it i returned month n year instead of those values thnks for ur help |
Forum: C Mar 17th, 2006 |
| Replies: 7 Views: 2,061 yehhh i changed return_success to return month i get the warning type cast integer one. But if i go return *month i get a wrong value |
Forum: C Mar 17th, 2006 |
| Replies: 7 Views: 2,061 ok well id want to return the month variable and the year variable so i can pass it wouldnt i?
but then i get a warning saying integer from pointer without a cast?
but then i tried
return... |
Forum: C Mar 17th, 2006 |
| Replies: 7 Views: 2,061 Hi guys im having a slight problem passing the month and year variable to a function that i have created called int totalDays(unsigned year, unsigned month) now when i do a print inside the function... |
Forum: C Mar 16th, 2006 |
| Replies: 16 Views: 2,640 Ok that compiles but now that it compiles when i run it i type in a number between 0 - 12 its fine which is correct. However if i type -0 or 13 or 14 for example which is <0 || >12 there is no error ... |
Forum: C Mar 16th, 2006 |
| Replies: 16 Views: 2,640 ok one error gone iv still got another type cast error at line 51 passing of arg 1 makes integer from pointer without a cast
valid = validateMonth(month) it dosnt like the month variable in the... |
Forum: C Mar 16th, 2006 |
| Replies: 16 Views: 2,640 but if i do that would it still pass what iv inputted in the getUserInput() function into the validateMonth function properly so it can be tested in the condition <0 || >12 |
Forum: C Mar 16th, 2006 |
| Replies: 16 Views: 2,640 i still get the passing arg 1 of validate month makes integer from pointer without a cast
assignment makes integer from pointer without a cast
all on line 51 whichis
month =... |
Forum: C Mar 16th, 2006 |
| Replies: 16 Views: 2,640 warning passing argument of 1 integer from pointer without a cast i get that
well the correct input is if i type between 0 - 12 it exits successfully and continues with the rest of the program.
... |
Forum: C Mar 16th, 2006 |
| Replies: 16 Views: 2,640 Hey wolfPack thnks for replying result is just a variable that is in the input fucntion i created. But im pretty sure its because of how im calling the functions that the month input isnt validating... |
Forum: C Mar 16th, 2006 |
| Replies: 16 Views: 2,640 /****************************************************************************
* COSC1097/1098/1283/1284 - Programming Principles 2A/Programming Techniques
* Semester 1 2006 Assignment #1 - cal... |
Forum: C Mar 16th, 2006 |
| Replies: 16 Views: 2,640 Hey guys im having allot of trouble im using a rather modulized solution which is how i need it for my assignment.
However when i enter input using a function called getUserInput() that i created... |