1- How to create a project file and run a program for CADM231 & CADM331 from Turbo C++ 3.0?
2- How to create a project file and run a program for CADM231 & CADM331 from Borland C++ 4.52?
3- How to set Windows 95/98 to connect to Eastern Michigan University through Michnet?
4- How to set-up Windows NT to connect to Eastern Michigan University
through Michnet?
5- How to set-up Windows 2000 to connect to Eastern Michigan University
through Michnet?
6- How to set-up a modem on Windows 2000?
7- When I try to connect two Windows 9x/NT computers using direct
cable connection I get the following error:
      "Cannot find shared computer"
8- I am getting "Linker Error: Undefined symbol _main in module
c0.ASM." What does it mean?
9- A case study of different types of calling sequences and their impact on program speed.
Q: How to create a project file and run a program
for CADM231 & CADM331 from Turbo C++ 3.0?
A: Click here for a step by step procedure
Q: How to create a project file and run a program
for CADM231 & CADM331 from Borland C++ 4.52?
A: Click here for a step by step procedure
Q: How to set Windows 95/98 to connect to Eastern Michigan
University through Michnet?
A: Click here for a step by step procedure
Q: How to set Windows NT to connect to Eastern Michigan University
through Michnet?
A: Click here for a step by step procedure
Q: How to set-up Windows 2000 to connect to Eastern Michigan University
through Michnet?
A: Click here for a step by step procedure
Q: How to set-up a modem on Windows 2000?
A: Click here for a step by step procedure
Q: How to set OS/2 to connect to Eastern Michigan University
through Michnet?
A: Sorry, Answer not posted on the web site yet. For more information please email us.
Q: When I try to connect two Windows 9x/NT computers using direct
cable connection I get the following error:
"Cannot find shared
computer"
How can I fix this problem? Is there a
way to transfer data between those two machines?
A: When using direct cable connection, Windows ads a driver to
converts the parallel or serial port a TCP/IP interface. Although you get an
error message initiated by the Microsoft network, the underlying TCP/IP network
is still functioning. You can verify that by trying to ping the address
192.168.55.1 or 192.168.55.2 which are the local and remote addresses of the
ports. Usually 192.168.55.1 is used for the host machine that provides resources
to the guest machine.
Thus if you add an FTP server or another file sharing
utility on top of the network then you will be able to remotely log in and
transfer files or do whatever service you decided to use. You can even use a
print server on the host machine and connect to it as if you were using a
regular Ethernet adapter.
Q: I am getting "Linker Error: Undefined symbol _main in module
c0.ASM." What does it mean?
A: In Borland C++, there are 2 reasons why you could get this error:
1. Your program is missing the "main()"
function, thus the compiler doesn't know where is your programs entry point.
2. You may get this error if you compile your program with
the Pascal calling convention. In this case add "_cdecl" parameter
before your main program. The startup code used by all programs is created using
the conventional C calling sequence. And since Pascal changes function names by
capitalizing all letter and since Pascal doesn't use '_' the startup code will
not find the expected _main function but MAIN which are not compatible.
© copyright 2002 Pronica Technologies. All Rights Reserved
|