Hello guys, I've been experimenting with a PCI data aquisition card in my home computer that is running on WIN 98. I am using Visual C++ 5 to build an Win32 MFC (exe)application program to display the 8 bits data retrived by the card, thats when I run into a problem of displaying the data. I've tired printf, sprintf, cout and std::cout with no output on the window. I've already loaded all the header file necessary - #include "iostream.h"
#include <iostream>
#include "stdio.h"
#include "conio.h"
#include "stdlib.h"
The program compiled and linked without any errors but there is no output in the window even when I tried a simple string output like "hello".
The only function that could output characters in the window is the device context "TextOut", but it only outputs ascii text and not the decimal equivalent that I want it.
So can someone out there help me out please. Thanks.
#include <iostream>
#include "stdio.h"
#include "conio.h"
#include "stdlib.h"
The program compiled and linked without any errors but there is no output in the window even when I tried a simple string output like "hello".
The only function that could output characters in the window is the device context "TextOut", but it only outputs ascii text and not the decimal equivalent that I want it.
So can someone out there help me out please. Thanks.