Forum: C++ Oct 20th, 2009 |
| Replies: 42 Views: 1,802 sorry posted in wrong thread |
Forum: C++ Nov 24th, 2008 |
| Replies: 4 Views: 397 You have to write the source code before anyone will have it. |
Forum: C++ Nov 23rd, 2008 |
| Replies: 5 Views: 1,466 I found this thread on the xml gnome mailing list that may be of help. It does appear that there is nothing similar to atoint for an xmlChar *, but I guess you can do it the way that this guy... |
Forum: C++ Nov 22nd, 2008 |
| Replies: 5 Views: 1,466 Yea, There is hence the reason I posted about it 58 minutes ago :) |
Forum: C++ Nov 22nd, 2008 |
| Replies: 5 Views: 1,466 You want to use
xmlStrEqual(resource_id, event_id)
it will return 1 if equal and 0 if different.
so |
Forum: C++ Nov 22nd, 2008 |
| Replies: 1 Views: 726 I don't know if this is the problem, but on the post request you have the terminating empty line after you have the post data.
Strcat(szSendBuffer,"/r/n);//the terminating empty line |
Forum: C++ Nov 22nd, 2008 |
| Replies: 5 Views: 1,194 I had
char boolsToChar(bool* bools){
char c = 0;
for( int i = 0; i < 8; i++ )
if( bools[i] )
c += pow(2,i);
return c;
} |
Forum: C++ Mar 25th, 2008 |
| Replies: 2 Views: 1,565 Ok, Replying to my own thread here, But I have had a look around the net and from what I can tell it refers to a reference to a managed type in .NET. I may be wrong ( since I have seen nothing that... |
Forum: C++ Mar 25th, 2008 |
| Replies: 2 Views: 1,565 After looking at compile errors because I was not overriding this function ( although being convinced that I was) I have a query for all you C++ buffs in the audiance. What does the ^ do in the... |
Forum: C++ Jan 23rd, 2008 |
| Replies: 7 Views: 3,536 What library are you allowed to use .NET or just MFC ? |
Forum: C++ Jan 20th, 2008 |
| Replies: 1 Views: 915 Hey,
There is a lastlog command in unix that displays the contents of the /var/log/lastlog file, This is a binary file and a structure describing the contents is located in the <bits/utmp.h>... |
Forum: C++ Oct 6th, 2006 |
| Replies: 7 Views: 10,447 Haven't been on here for ages....
No.
But thanks for bringing me back to DaniWeb :) |
Forum: C++ Sep 17th, 2005 |
| Replies: 8 Views: 2,119 Your problem contains the ans. |
Forum: C++ Sep 17th, 2005 |
| Replies: 6 Views: 1,439 Try
#include <iostream>
int main(){
while((std::cout << "Hello World"<< std::endl) == 0){}
} |
Forum: C++ Sep 17th, 2005 |
| Replies: 7 Views: 10,447 A coupe of reasons
a. Rashakil Fol's post
b. it takes in total 3 lines of code
value = myList.front();
myList.pop_front();
myList.push_back(value); |
Forum: C++ Sep 14th, 2005 |
| Replies: 7 Views: 10,447 I did this in my C++ programming assignment.
I just used a STL list and poped from the front
and pushed to the back. |
Forum: C++ Aug 8th, 2005 |
| Replies: 20 Views: 4,746 good stuff and good luck :)
A good thing to try with that code would be to attempt to write a word count. |
Forum: C++ Aug 8th, 2005 |
| Replies: 0 Views: 1,350 My second C++ lab, bit of fun if i do say so my self.
Its a stack that uses a linked list in C++ alot of debugging stuff still in here, but I like the debugging output anyway.
Sorry about the... |
Forum: C++ Aug 8th, 2005 |
| Replies: 1 Views: 2,002 if your using .NET the answer is yes, absolutly indeedie. Microsoft wont shut up about there interopertability..
the whole exchange of varibles is spost to happen using the CLR (commen language... |
Forum: C++ Aug 8th, 2005 |
| Replies: 20 Views: 4,746 also if you don't want windows hiding extentions in explorer go to
Tools > Folder Options > View and unselect "Hide extentions for known file types" |
Forum: C++ Aug 8th, 2005 |
| Replies: 20 Views: 4,746 try SOL.akn.doc
(word documents have the .doc extention, windows hides known extentions)
Note you will have a lot more luck saving something in notepad and opening the .txt since .doc is a... |
Forum: C++ Aug 6th, 2005 |
| Replies: 11 Views: 29,912 dcs_jr84 - You are right, that fixes the problem up :)
Let's Play Tic-Tac-Toe!
Current Player: X Current Player: O
| |
... |
Forum: C++ May 12th, 2005 |
| Replies: 6 Views: 8,011 Damn I hate kde :)
anyway tutorials (http://developer.kde.org/documentation/tutorials/).
Good luck with it. Plus in all seriousness linux has no GOOD media players :) |
Forum: C++ May 11th, 2005 |
| Replies: 4 Views: 5,166 Talking about faster compilers and benchmarks, I bleave there is some good gcc benchmarks for selecting the right flags for you system...
I Think..
But when compilers commenly have... |