Andy K.
July 26th, 1999, 03:04 AM
Hello! If you have made some programs for Vplaces before, then maybe you know how to put all the people in the room onto a list1.list in the VB form (so in the list I will have names of all the people in the room)
Also maybe someone knows how to open Gesture Pallete from VB
Thank You
July 26th, 1999, 10:13 PM
I doubt you are gonna find many vp "programers" here heh. Adding everyone in the room cant be done with out doing it from there idents. The gesture button click is easy, add this to a .bas file
Function GestClick()
hwndz% = findwindow("VPFrame", vbNullString)
maketrue% = getwindow(hwndz%, GW_CHILD)
maketrue% = getwindow(maketrue%, GW_HWNDLAST)
maketrue2% = getwindow(maketrue%, GW_CHILD)
maketrue2% = getwindow(maketrue2%, GW_HWNDFIRST)
maketrue3% = getwindow(maketrue2%, GW_CHILD)
maketrue3% = getwindow(maketrue3%, GW_HWNDLAST)
maketrue4% = getwindow(maketrue3%, GW_CHILD)
maketrue4% = getwindow(maketrue4%, GW_HWNDLAST)
maketrue4% = getwindow(maketrue4%, GW_HWNDPREV)
If mid(UCase(GetClass(maketrue4%)), 1, 3) = UCase("AFX") then
maketrue4% = getwindow(maketrue4%, GW_HWNDPREV)
End If
maketrue5% = FindChildByTitle(maketrue4%, "Gestures")
VPButton (maketrue5%)
End Function
-Element
-http://element.virtualave.net
Andy K.
July 26th, 1999, 10:37 PM
You mean that all the programers who make programs for VPlaces are code thieves?
I got it already how to open gest button, i just didn't know name how to find it by class, but that dude told me about Spy++, so i used it, and it's kewl, but thanx anyways for replying to my messege