Listen Im lazy heheh, and I really want to make programs in VB 2010 but either am an idiot or can make none of the codes work for me I try the old 2008 method nothing lol all I need is a start so i can do this, please someone upload a working vb 2010 send and getlastline sample 🙂 so i can finally learn tha sht or im gonna get stuck in vb 6.0 lol
@locohacker wrote:
Glad that you were able to get what you needed.
String i did that 🙂 still when it was out of focus it didn’t work, aigh i think this is what you guys mean to do I added this code
And I call it with
But the text in the rooms comes out with the char thingy like this
Here how it is now 🙂
lol Duh 🙂 i see it now, K I just wait til ya update to select the nick than, cause that sht is hard 🙄
Ah nice, 🙂 one thing auto how about connecting to the room, cause that only connects to the DlgGroupChat Window Class wont that be an issue if a person has other rooms open?
Dep lol I finally install vb 2010 on my windows 7 pc ehehe that’s a start
something news 😉 nice job loco …
@locohacker wrote:
Yes, the demo will connect to what ever room is the room with focus. To connect to a specified room, add the PalRoomSelector as described in VB 2008 Paltalk Integration. Then find the button click event code and change the “vbNullString” in the following line:
Replace vbNullString with Me.CtrlRoomSelector1.RoomName
@Departure wrote:
good advise …
ok, you can find the promised demo send & read Pal10 demo at DemoAdvancedReadSendPal10[VB2010].
the fact that it is a function means it returns a value, but the fact that there is nothing in the brackets () after FindNic means that you are not passing anything into that function.
the return line is what is being returned by the function. mdlSysListView.GetSLVSelectedItem should tell you that the function gets the selected nic from the room nic list.
That sounds better and less code, but still it be cool to get the nicks from the nick list room for other stuff.
Because nics jump around in the nic list (raise/lower hand, cam up/down, etc), I don’t try to enum the nics to “select” the one I want. In stead, I send the letters of the name to the nic list. This causes the nic to get selected automatically. Then I get the selected nic and compare it to the nic I am looking for. If it matches, then proceed with the bounce/dot.
Cool 🙂 and can you change this code
To get the user messege too?
Ah one thing I notice when the paltalk windows is out of focus the program seems to disconnect like it wont get no text or send text 🙄
Man I already added the music bot and greeter and cool text on the program Im working on
@locohacker wrote:
Glad to help. I will have to put together a demo project for working with the nic list next. maybe i will have something by next weekend.
Excellent, I finally got it how it works 🙂 and the code kicks asz, I am for sure using your text font style form I love it.
Thanks a lot man
I put together a very basic project to show how to select a nic in the room nic list. You can find it at DemoPalNicList[VB2010].
@locohacker wrote:
Try this post
K figure how to get the text after using this : by changing this UserNic = Mid$(LineIn, 1, X – 1) to UserNic = Mid$(LineIn, X + 1)
🙂 so the only issue I got is the need to focus the program for it to work 🙄
uninstall vb6 now and throw away the setup……
Its similar to quitting smoking, The problem is “Habit” and its easier to do what you already know, instead of trying something new that can be beneficial..
@locohacker wrote:
Basically, with the WindowFromPoint API, the window does not have to have focus, but it has to be visible at the point the application tries to look for it. WindowFromPoint gets the control that is showing at a point on the screen. If you want to allow for the Pal room to be in the background, then you will need to continue to use the enum windows method provided in the mdlHnd (see module to find handles).
Hey Auto, I know you gonna work on the selecting nick thing next, but I got a quick question this code in your quickkeys program the module
mdlSysListView.vb
Are you suppose to call it with this function?
By using this command
FindNic(nick.text) To select the nick?
Lol I fix it 🙂 I change auto thingy to work with string thingy and got this
and call it with
So no more weird sht char :swift:
Working perfectly Thanks alot, now i can finish the paltalk bot
I put up a very simple basic program to send pal text over on im-integrations.com. You can view the code in Demo Send Pal Text [VB2010].
I still have to post a sample to read the Pal text in VB2010. But if you keep on eye on im-integrations.com, I will post something sometime this weekend.
Yep I tried that method but is not returning the rooms title no more for me 🙂
Check the code
Paltalk MultiVB
and this code was posted in http://forum.im-integrations.com/viewtopic.php?f=15&t=78
but when I call it with
RoomRefresh()
sht dont work 🙄here is your problem
this property is found in your mdlPalInfo and it needs to be updated for Pal 10. in fact, since pal 10 is all that works any more, we dont need to test for version and can just return the class.
Use break points and the built in debugger to step through your code to find this type of problems.