Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have programmed in VB6 for years and now converting to Visual Studio 2010 Visual Basic. It has framework 4.0. I use to use a Winsock control to connect to a barcode reader. Simple connection and I'm looking for just the data comming in from the scanner and also send data out to scanner to trigger a read.

I cannot figure out how to do it with vb.net sockets. My system is Windows 7 64 bit.

Any help would be great!!!

Thanks,
Joe
Posted
Comments
Sergey Alexandrovich Kryukov 29-Feb-12 20:19pm    
Judging by the question, it looks like you are not ready to learn it. Sorry. Perhaps learn some basics of programming and come back.

Good luck,
--SA

1 solution

There is no such thing as "Visual Studio Sockets". Case closed.

Some final remarks:

Visual Studio is the IDE.

VB.NET is a language (VB is not supported, VB.NET is absolutely different language). It is processes using a VB.NET compiler which produces the code.

Visual Studio 2010 does have VB.NET compiler. The compiler is bundled with (freely distributed) .NET Framework. You don't really need Visual Studio to build projects and solutions. It's done by MSBuild.

Sockets library comes with the assembly System.DLL. It comes with .NET Framework. You can use the class System.Net.Sockets.Socket, http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.aspx[^] or other classes, such as System.Net.Sockets.TcpListener/TcpClient.

Run-time of the application does not need Visual Studio.

Santa Clause does not exist.

Do you need some information on where children come from?

—SA
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900