Visual Basic - Para algun maestro que me pueda ayudar

Life is soft - evento anual de software empresarial
 
Vista:

Para algun maestro que me pueda ayudar

Publicado por Inexperta (18 intervenciones) el 17/11/2006 15:24:51
¿ Que api analoga a NetMessageBufferSend (esta funciona solo en Windows NT 3.1)
para comunicacion entre pc's de una lan funciona en Win.XP ?

Desde ya, Muchas Gracias a quien me pueda ayudar
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Para algun maestro que me pueda ayudar

Publicado por Pedro (93 intervenciones) el 17/11/2006 23:14:51
Mirate esto, seguramente resolverá tus dudas:

http://www.ostrosoft.com/vb/projects/net_send/index.asp

Un saludo.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Para algun maestro que me pueda ayudar

Publicado por Juan Pablo (11 intervenciones) el 17/11/2006 23:16:25
hola, primero que todo no soy ningun maestro, pero eso si, vb me ha dado de comer mucho tiempo y se un poquito, yo tengo un .bas con el que leo el nombre de las maquina y su respectivo IP tanto local como remotamente, no tengo ni la menor idea de como funcionan en su totalidad estas apis, pero a mi me sirven asi que pruebalas y mucha suerte, ahi te van

Private Declare Function WSAGetLastError Lib "WSOCK32.DLL" () As Long

Private Declare Function WSAStartup Lib "WSOCK32.DLL" (ByVal wVersionRequired&, lpWSAData As WSADATA) As Long

Private Declare Function WSACleanup Lib "WSOCK32.DLL" () As Long

Private Declare Function gethostname Lib "WSOCK32.DLL" (ByVal HostName$, ByVal HostLen As Long) As Long

Private Declare Function gethostbyname Lib "WSOCK32.DLL" (ByVal HostName$) As Long

Private Declare Sub RtlMoveMemory Lib "KERNEL32" (hpvDest As Any, ByVal hpvSource&, ByVal cbCopy&)
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar