Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

vb6 and parallel port

Status
Not open for further replies.
accses parallel port vb6

I think you can get some referents from
**broken link removed**
 

vb parallel port xp¨

cristiaw said:
leilarazavi2000 said:
Any body knows how to access parallel port in vb6 (for win98 and xp)

tnx
:D
I did a program for to send bits to a paralell port .. I you want I ll send source code... in this moment i cant because im in the work.

Bye
Christian
8)

'**************************************

' Name: Write data to COM/LPT ports with

' out using the API

' Description:This simple yet effective

' code lets you send any data to the COM/L

' PT ports on the computer.

' By: Jordan Bayliss-McCulloch

'

' Side Effects:If the data is sent to th

' e printer port (LPT1/2) and the printer

' is off or not connected, the program may

' freeze.

'

'This code is copyrighted and has
' limited warranties.Please see **broken link removed**

' ww.Planet-Source-Code.com/xq/ASP/txtCode

' Id.31643/lngWId.1/qx/vb/scripts/ShowCode

' .htm
'for details.
'**************************************



Dim strTest as String

strTest = "This is the data I want To write."

'This will write strTest to LPT1

Open "LPT1:" For Output Access Write As #1

Print #1, strTest

Close #1

'This will write strTest to COM1

Open "COM1:" For Output Access Write As #1

Print #1, strTest

Close #1

'It's that simple!
 

vb6 and asm parallel port led

To interface with Parallel Port ,i think you must create a VxD,if you don't want conflict happen.Create VxD is hard if you use DDK and the easy way is using DriverWizard from Jungo Company.DriverWizard will generate code depend your choose (e.x : C++ Builder,VC++,VB,Delphi).
Good luck !
 

get printer name from lpt port in vb code

hi
Can anybody send a copy of the freeware IO_OCX
I can`t login the site
I need to try this freeware very soon
Thank you
 

read parallel port vb6 in xp

ATMB35 said:
hi
Can anybody send a copy of the freeware IO_OCX
I can`t login the site
I need to try this freeware very soon
Thank you

Here is a working link, ATMB35.

**broken link removed**
 

parallel vb6

Assalamo Allykum !

You can access Parallel port in the VB 6.0 easily.
There are OCX and DLL available on the net that are easy to use for WIN98
Some OCX and DLL are

port32.ocx
io.dll
inpout.dll
win95io.dll


For accessing the parallel port in the XP you have to install driver.

Take Care

Keep remember me in your prayers.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top