- This topic has 76 replies, 17 voices, and was last updated 1 year ago by attockonian.
-
AuthorPosts
-
July 31, 2012 at 7:11 am #186750AdminAdministrator
Here it is, is a long code lol a little cleaner then my usual codes lol, thanks to auto and string for the great help ๐
August 1, 2012 at 3:13 am #186823chicagodavid52MemberVery Nice! It is a **LOT** cleaner too. I hope to learn how to bounce people. Thanks for all the effort put into it!
September 12, 2012 at 9:08 am #186822balti27MemberHi,
Is there chance for this source code to be updated?
Thank U.September 19, 2012 at 7:23 pm #186821Highway-StarMemberVery nice, where am I supposed to be looking at getting everything to appear in the room, nothing works on it.
EDIT! Maybe I should have been a little clearer. Although many things work on it, it does not send to the room although it does appear on the users screen and without the users name on the left hand side as it should. Also, the first thing typed in on the paltalk window by the user enters after the original text, (but appears ok on other computers).
There are a couple of things I have been tweaking like the player, a couple more buttons added to send the title of the song when a button is pressed rather that it entering when the song starts.
All this is straight forward although im very new to programming. However, I just can’t figure out how the program relates to paltalk.Any pointers on that would be helpful.
Thanks. ๐September 20, 2012 at 9:18 pm #186820balti27Member@Highway-Star wrote:
Very nice, where am I supposed to be looking at getting everything to appear in the room, nothing works on it.
EDIT! Maybe I should have been a little clearer. Although many things work on it, it does not send to the room although it does appear on the users screen and without the users name on the left hand side as it should. Also, the first thing typed in on the paltalk window by the user enters after the original text, (but appears ok on other computers).
There are a couple of things I have been tweaking like the player, a couple more buttons added to send the title of the song when a button is pressed rather that it entering when the song starts.
All this is straight forward although im very new to programming. However, I just can’t figure out how the program relates to paltalk.Any pointers on that would be helpful.
Thanks. ๐U need to open mdlPalInfo.vb and in the #Region “Pal Indexes” find :
Private _SendTextIndex As Integer Public ReadOnly Property SendTextIndex() As Integer Get Return ยด2 ' End Get End Property Private _ReadTextIndex As Integer Public ReadOnly Property ReadTextIndex() As Integer Get Return 3 ' End Get End Property
September 21, 2012 at 12:43 pm #186819Highway-StarMemberExcellent balti27, it works a treat.
I think I need to study more on this to see how it works.Thanks again
September 21, 2012 at 3:26 pm #186818ChikeMemberIf it’s an integer why there’s a need for any kind of quotation mark?
Just reaturn number without quotes.September 21, 2012 at 9:26 pm #186817StringMemberSeptember 22, 2012 at 4:56 pm #186816Highway-StarMemberObviously, i’m not allowed to voice my opinion, when others can, so ram it!!!
September 22, 2012 at 5:13 pm #186815ChikeMember@Highway-Star wrote:
Obviously, i’m not allowed to voice my opinion, when others can, so ram it!!!
You can voice your opinion as long it is done in a respectful manner.
Rudeness will not be tolarated.October 20, 2012 at 10:50 pm #186814DoubleMMemberHi,
I am not a VB coder but I can understand it’s sayntax and make some changes. I am trying to understand how to get the text from the paltalk room window/private message and send them. I figure out a way for sending a text via using ChatRTB1 control and SendChat() method as follow:
ChatRTB1.Text = "my message comes here" SendChat()
I don’t know any other way to send text and write my custom formatting.
I also want to read line by line but I have not figured that yet. I am using
Dim hnd As IntPtr = ReadTxtHnd()
to do so but I still don’t have full controll over it cuz I don’t know how those methods work
any hints?
October 21, 2012 at 7:47 am #186813StringMemberReview your modules. mdlPalInfo.vb for instance. The source shows how the room text is read and sent.
March 12, 2013 at 11:34 pm #186812loveonlineMemberI have download Your Paltalk Botvbf1.rar and check it with Patalk 10.3 build 490 but it does not work. Make that Paltalk Botvbf1.rar had changed. Can you give me a new source? Thanks Admin. ๐
March 13, 2013 at 11:42 am #186811AdminAdministratorAh is cause you need to do some changes to the indexes in the mdlPalInfo.vb module like this
Private _SendTextIndex As Integer Public ReadOnly Property SendTextIndex() As Integer Get Return 2 End Get End Property Private _ReadTextIndex As Integer Public ReadOnly Property ReadTextIndex() As Integer Get Return 3 End Get End Property
You see the sendtext is now 2 and the readtext is now 3 ๐
May 18, 2013 at 1:12 am #186810slot gacor hari iniMemberThank you Loco! Im just getting started with VB.Net, this is a treat. Thank you very much!
Also, I notice this is about the only source from you I have in VB 2010 (which opens in my VB 2012). Do you have any updated sources for VB 2010? -
AuthorPosts
Related
- You must be logged in to reply to this topic.