Forum: C++ Mar 6th, 2008 |
| Replies: 2 Views: 630 Hai,
This is something to save me and osme other people some time. Basically i need to read data from a text file and put that data in a a web form. It will be easy to read the text file but I... |
Forum: C++ Jun 10th, 2007 |
| Replies: 2 Views: 1,801 Hi there everyone. I wonder if you could help me with my code. It just seems to go into an infinite loop. I would greatly appreciate some help with this. Thanks
#include<iostream>
using namespace... |
Forum: C May 6th, 2007 |
| Replies: 2 Views: 1,966 Is it possible to convert a process name to a process id in win32. If so how?
Thanks |
Forum: C Feb 2nd, 2007 |
| Replies: 0 Views: 1,333 Hi, it's me again lol...
Ok i havea windows forms application. I have several classes with pointers to other classes eg:
class1
{
public:
function(void);
class2* c2; |
Forum: C Jan 31st, 2007 |
| Replies: 1 Views: 936 Hi guys i'm tyring to delete some elements from a vector. I am trying to delete from 0 to k-1 and from k to the end. That means in theory that only element k should remain.
1) ... |
Forum: C++ Oct 24th, 2006 |
| Replies: 7 Views: 2,105 hmm yeah there is supposed to be a call for that function. But ignore that the point is is there any way just to declare it in main and still get fn() to recognise its existance? |
Forum: C++ Oct 24th, 2006 |
| Replies: 7 Views: 2,105 is there no way around that? |
Forum: C++ Oct 24th, 2006 |
| Replies: 7 Views: 2,105 f is not a data member f is the name of the object im trying to create
id is public:
/////a.cpp///
#include <iostream>
#include "test.h"
using namespace std; |
Forum: C++ Oct 23rd, 2006 |
| Replies: 7 Views: 2,105 Hi there, im a c++ noobie. I have a class called node. Node has a data member id. When i try and access id in the obect named f outside of main visual studio 2003 gives me the errors:
: error... |
Forum: C++ Sep 7th, 2006 |
| Replies: 10 Views: 3,028 Hey this problem is too simple to implemented in an objecft oriented way. Programs this small do not need to have good programming practices. Especially if teyt are just for fun. For somthing this... |
Forum: C++ Sep 5th, 2006 |
| Replies: 10 Views: 3,028 Sorry about the double post, but the real conversion is this bit:
int convert(void)
{
i -= 1;
while(a<=i)
{ |
Forum: C++ Sep 5th, 2006 |
| Replies: 10 Views: 3,028 Hey Becki,
Im not that good a coder and this program is unweildy and long but you could implement it like this:
#include <iostream>
using namespace std;
int decimal=0;
int input[10];
int... |