1.
Parallel Port Programming: Visual Basic
Unfortunately, Visual Basic does not ship with built-in support for addressing the parallel port. However, an excellent DLL from the company SoftCircuits is ...
2.
TCP/IP over Ethernet: Subnetting
To find the subnet mask, calculate the number of host bits (h): ... The first IP address in each range will be the network ID for that subnet, ...
3.
Parallel Port Programming: Visual Basic
DLL" (ByVal nPort As Integer, ByVal nData As Integer) Declare Sub vbOutw Lib "WIN95IO.DLL" (ByVal nPort As Integer, ByVal nData As Integer) Declare Function ...
4.
Notes on C: Command Line Arguments
Command Line Arguments. main() revisited. The main function actually takes two arguments - argc and *argv[]; argc is an integter with the value equal to the ...
5.
Notes on C: File I/O
File I/O. The FILE type. When working with files in C, declare a FILE ... open text2.txt // While there are lines in input file, read them in, append a ...
6.
Notes on C: File I/O
File I/O. The FILE type. When working with files in C, declare a FILE variable ... Examples: fprintf(outputfile, "My age is %d\n", myAge); fscanf(inputfile, ...
7.
Parallel Port Programming: Visual Basic
Unfortunately, Visual Basic does not ship with built-in support for addressing the parallel port. However, an excellent DLL from the company SoftCircuits is ...
8.
Parallel Port Programming: QBasic
QBasic is perhaps the easiest language to program the parallel port with. Almost everyone with a PC should have access to QBasic. ...
9.
Parallel Port Programming: QBasic
QBasic is perhaps the easiest language to program the parallel port with. Almost everyone with a PC should have access to QBasic. ...
10.
Parallel Port Programming: Programming Under NT/2000/XP
I have personally found a tool called UserPort to be very simple to use for this purpose. UserPort is a kernel mode driver that can be used in Windows ...