Forum: C++ Nov 16th, 2004 |
| Replies: 4 Views: 4,656 Dear Chainsaw,
First of all I would like to thank you for your time and your ideas. The part I implemented works fine till now with no problems at all, but I will work on your sugestions hopping... |
Forum: C++ Nov 11th, 2004 |
| Replies: 4 Views: 4,656 I Did it myself at last!!!!
void DrawFonts(int num, int x, int y , bool center)
{
//num = 15 ;
char* pMessage="";
_itoa(num,pMessage,10);
int MyLen = strlen(pMessage);
... |
Forum: C++ Nov 9th, 2004 |
| Replies: 1 Views: 2,539 Try using ADO (ActiveX Data Objects) with most commonly used the OLE DB Provider for ODBC Drivers, which exposes ODBC Data sources to ADO.
Try this link for documentation of the latest version of... |
Forum: C++ Nov 9th, 2004 |
| Replies: 4 Views: 4,656 I Forgot to mention that I am using the method atoi. Is there any other method to implement this?
Also I am working with Microsoft Visual C++. |
Forum: C++ Nov 9th, 2004 |
| Replies: 4 Views: 4,656 I would like to get all the elements of a string array and I just get the last one followed by a "zero" element.
void DrawFonts(int num, int x, int y)
{
Char Buffer [20];
CString ss;
... |