EldinZenderink / SimpleIRCLib

A lightweight, simple to use and implement, IRC library with support for DCC download (no upload)
MIT License
14 stars 14 forks source link

Chat Messages using the form example #2

Closed Og1Kenobi closed 8 years ago

Og1Kenobi commented 8 years ago

When sending a message to an irc channel from this client it will succeed and the channel can see the message. When you send a message to the channel from another client this client can not see the message.

EldinZenderink commented 8 years ago

I would like a copy from the debug window, because it could be a message parsing error inside the library, which I only can solve with the help of the debug window. Also, are you using a private/local server. Could you send me details about the server you are trying to connect to? That would be very helpful.

Og1Kenobi commented 8 years ago

ircd-hybrid-8.2.17 simpleirc

Og1Kenobi commented 8 years ago

it is a local irc server i stood up to test this before i embed it

EldinZenderink commented 8 years ago

Ok, I will have a look at this, i am not sure if i will be able to fix it today, but i certainly will try.

Og1Kenobi commented 8 years ago

That would be great! I also noticed that after push send the message I just typed is still in the box so I have to backspace the old message in order enter a new message

Sent from my iPhone

On Apr 24, 2016, at 10:57 AM, Eldin Zenderink notifications@github.com wrote:

Ok, I will have a look at this, i am not sure if i will be able to fix it today, but i certainly will try.

— You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub

EldinZenderink commented 8 years ago

I fixed both chat and dcc issues (atleast they appear to be fixed on my end). For messages that stay in the message to send textbox, thats something that has to be coded around the library and cannot be done from within. What you could do is this (when you named the textbox for sending messages 'MessageTextBox': MessageTextBox.Text = "" when you press the send button. Same goes for the enter key event on the MessageTextBox, if you set any. I will commit the changes in a minute. Thanks for telling me about these issues!

Og1Kenobi commented 8 years ago

that chat issue has been fixed. I will post the issue with DCC transfer on the other thread