Forum: Visual Basic 4 / 5 / 6 Mar 5th, 2005 |
| Replies: 7 Views: 24,732 Just a few for you
cstr() ' convert to string
ccur() ' convert to curreny
clng() ' convert to long
cint() ' convert to integer
cdbl() ' convert to double
and theres probably a few more if... |
Forum: Visual Basic 4 / 5 / 6 Mar 4th, 2005 |
| Replies: 7 Views: 24,732 not tried cstr() ??
then use listbox.additem method |
Forum: C Jan 8th, 2005 |
| Replies: 3 Views: 4,389 use a while loop checking if q is pressed. You havent actually used char, and are asking the user to input a letter or number, but only grabbing the number! I would convert to c++ and use iostream, I... |
Forum: Motherboards, CPUs and RAM Jan 8th, 2005 |
| Replies: 5 Views: 2,508 athlon 64 (non fx) is DEFINITLY better value for $ by far - and its performance is still blistering for HL2 and any other modern games.
If you know someone who can put together the components for... |
Forum: C++ Jan 4th, 2005 |
| Replies: 21 Views: 6,731 pointers are c++ most useful things and is what sets it aside from other languages. Just to name a few uses:
Dynamic arrays
Linked lists
Memory management (eg. passing pointers rather than... |
Forum: C++ Dec 28th, 2004 |
| Replies: 11 Views: 4,243 so
#include <iostream>
#include <cstdio>
is equivalent to just including iostream? i beg to differ. Ive included iostream before and still needed to include stdio for some functions,... |
Forum: C++ Dec 27th, 2004 |
| Replies: 11 Views: 4,243 it might have been confusion of namespaces? surely <stdio.h> should be <cstdio> for namespace std. and vega is right too, that macro needed to be global. only #ifdef / #ifndef / #endif can be in... |
Forum: C Dec 17th, 2004 |
| Replies: 3 Views: 2,282 what error is it showing as the code looks fine to me |