cs_Delirium
Messages postés30Date d'inscriptionvendredi 11 octobre 2002StatutMembreDernière intervention 3 mai 2004 6 janv. 2004 à 17:31
deja c pas www mais irc car la tu te connect au site web
et il manque quelques ligne pour l'identification..
et avec unreal ya un premier renvoi de ping
et -> Clientsock.SendData "NICK" & pseudo.Text & Chr(13) & Chr(10)
faut peut être penser a mettre des espaces non `?? je te conseil d'étudier le protocol et snif éventuelement ta connect, tu pourra voir comment sa ce passe ;)
bonne continuation
cs_buffle
Messages postés1Date d'inscriptionsamedi 26 avril 2003StatutMembreDernière intervention 2 janvier 2004 2 janv. 2004 à 19:57
salut je voudrais te demander si tu pouvais m'aider à faire fonctionner mon petit client irc,il ne marche pas,je ne sais pas pourkoi?
Option Explicit
Private Sub Clientsock_Connect()
etat.Caption = "vous êtes entré dans le chat"
End Sub
Private Sub Connexion_Click()
If Clientsock.State <> sckConnected Then
Clientsock.SendData "JOIN #universitas" & Chr(13) & Chr(10)
Else
etat.Caption = "Vous êtes déjà connecté au chat de rencontres"
End If
End Sub
Private Sub Quitter_Click()
Clientsock.Close
End
End Sub
Private Sub message_Click()
If Text1.Text <> "" Then
If Clientsock.State = sckConnected Then
Clientsock.SendData Text1.Text
End If
Else
MsgBox "Veuillez entrer un message"
End If
End Sub
Private Sub Clientsock_DataArrival(ByVal bytesTotal As Long)
Dim strData
Dim vbString
Clientsock.GetData strData, vbString
dial.Text = strData & Chr(10) & Chr(30)
End Sub
erreurs404
Messages postés117Date d'inscriptionlundi 23 octobre 2000StatutMembreDernière intervention12 août 2009 1 janv. 2004 à 12:54
ben tu dois potasser la syntaxe IRC.
exemple :
"PRIVMSG #chan :Salut ça va ?" & chr(10)
J'ai aussi fait un client IRC.
l0st3d
Messages postés205Date d'inscriptionjeudi 19 décembre 2002StatutMembreDernière intervention13 novembre 2009 31 déc. 2003 à 00:55
6 janv. 2004 à 17:31
et il manque quelques ligne pour l'identification..
et avec unreal ya un premier renvoi de ping
et -> Clientsock.SendData "NICK" & pseudo.Text & Chr(13) & Chr(10)
faut peut être penser a mettre des espaces non `?? je te conseil d'étudier le protocol et snif éventuelement ta connect, tu pourra voir comment sa ce passe ;)
bonne continuation
2 janv. 2004 à 19:57
Option Explicit
Private Sub Clientsock_Connect()
etat.Caption = "vous êtes entré dans le chat"
End Sub
Private Sub Connexion_Click()
If Clientsock.State <> sckConnected Then
Clientsock.Connect "www.epiknet.org", 6667
Clientsock.SendData "NICK" & pseudo.Text & Chr(13) & Chr(10)
Clientsock.SendData "JOIN #universitas" & Chr(13) & Chr(10)
Else
etat.Caption = "Vous êtes déjà connecté au chat de rencontres"
End If
End Sub
Private Sub Quitter_Click()
Clientsock.Close
End
End Sub
Private Sub message_Click()
If Text1.Text <> "" Then
If Clientsock.State = sckConnected Then
Clientsock.SendData Text1.Text
End If
Else
MsgBox "Veuillez entrer un message"
End If
End Sub
Private Sub Clientsock_DataArrival(ByVal bytesTotal As Long)
Dim strData
Dim vbString
Clientsock.GetData strData, vbString
dial.Text = strData & Chr(10) & Chr(30)
End Sub
1 janv. 2004 à 12:54
exemple :
"PRIVMSG #chan :Salut ça va ?" & chr(10)
J'ai aussi fait un client IRC.
31 déc. 2003 à 00:55