Wildies Posted October 16, 2003 Share Posted October 16, 2003 I am Searching For a LAN messanger .so i cant talk with poeple on my LAN without having to be on the net.... cuz the DSL connection is not up yet...and we need to have some IM Between us.. Link to comment Share on other sites More sharing options...
+Dick Montage Subscriber² Posted October 16, 2003 Subscriber² Share Posted October 16, 2003 Slap one together in VB. It's fun and easy. Form contains a textbox, listbox and button Dim oldtext As String Private Sub Command1_Click() If Form1.List1.Text <> "" Then ? ?oldtext = Form1.Text1.Text ? ?ret = NetSendMessage(Form1.List1.Text, Form1.Text1.Text) ? ?Form1.Text1.Text = "" Else ? ?MsgBox ("Select a user") End If End Sub Private Sub Form_Load() Form1.List1.AddItem ("nlouch") Form1.List1.AddItem ("User2") Form1.List1.AddItem ("User3") Form1.List1.AddItem ("User4") Text1.Text = "" End Sub Private Sub Text1_KeyUp(KeyCode As Integer, Shift As Integer) ? ?If KeyCode = 38 Then ? ? ? ?Form1.Text1.Text = oldtext ? ?End If End Sub Module contains Private Declare Function NetMessageBufferSend Lib "netapi32.dll" (ByVal servername As String, ByVal msgname As String, ByVal fromname As String, ByVal Buffer As String, ByVal BufSize As Long) As Long Public Function NetSendMessage(ByVal sSendTo As String, ByVal sMessage As String) As Long NetSendMessage = NetMessageBufferSend(vbNullString, StrConv(sSendTo, vbUnicode), vbNullString, StrConv(sMessage, vbUnicode), Len(StrConv(sMessage, vbUnicode))) End Function If it's only for a few days, that should do ya! Link to comment Share on other sites More sharing options...
hackr86 Posted October 16, 2003 Share Posted October 16, 2003 can someone compile that? i don't have my VB installed :D Link to comment Share on other sites More sharing options...
icyorange Posted October 16, 2003 Share Posted October 16, 2003 I made a little app to do this in school, click here to download it. :) Nick Link to comment Share on other sites More sharing options...
dougkinzinger Posted October 16, 2003 Share Posted October 16, 2003 i'm not downloading a strange .EXE from someone I've never talked to! But, i'm sure it's virus free :D Link to comment Share on other sites More sharing options...
Frank Posted October 16, 2003 Share Posted October 16, 2003 doug: I took the chance, it is clean :) I am looking for something similar. The owner of the company sometimes monitors people from home, and would like to use a computer chat program to be able to talk back and forth. I don't want to have the users be able to initiate a chat request, but I would like them to be able to accept one. Does anyone know of a program like this? Link to comment Share on other sites More sharing options...
MikeStammer Posted October 16, 2003 Share Posted October 16, 2003 http://radek.storm.com.pl get communicator. works well Link to comment Share on other sites More sharing options...
Wildies Posted October 16, 2003 Author Share Posted October 16, 2003 Thanx alot poeple.... I was indeep need of this progz cuz we need to talk while playing games :) Just one weeeek and i will **** up this Dial up (Y) Link to comment Share on other sites More sharing options...
idbuythatforadollar Posted October 16, 2003 Share Posted October 16, 2003 or use a winsock control in VB, and open a udp connection to 255.255.255.255 when you send data, that will send to everyone on your network Link to comment Share on other sites More sharing options...
Wildies Posted October 17, 2003 Author Share Posted October 17, 2003 Is there somethinng more easily thans the VB stuff and more effective than Nick one? Link to comment Share on other sites More sharing options...
Wildies Posted October 17, 2003 Author Share Posted October 17, 2003 Nick ..when using ur messanger through 2 computer conectted to each through Switch and Ethernet cards... one of them can send msg to the other ,,,,but this other cant replay him....do u know why??? it tell him thats the msg was sent to the user...but i dont receive anything...but when i send him he go whatever i send to him!!!!!!!!!!! Link to comment Share on other sites More sharing options...
MxxCon Posted October 17, 2003 Share Posted October 17, 2003 check out http://miranda-im.org/download/index.php?a...n=display&id=57 it's LAN Chat plugins for Miranda also you might want to look into (nullsoft's) WASTE. good strong encryption, file sharing, im, etc, etc Link to comment Share on other sites More sharing options...
Recommended Posts