fiogf49gjkf0d Hi.
I neede to add a default search value at a look up.
I called it like this,
if lblPeopleID.Caption <> "" then
strShow = lblPeopleID.Caption
else
strShow = "<Enter PeopleID>"
end if
strID = LookUpByName ("Contact:Peopleid",strShow)
IF strID <> -1 THEN
objBASIC.SetCurrentContactID strID
END IF
everything works, it shows the lookup and looks for the information, but im having a proble, when i execute the lookup like this:
Application.BasicFunctions.DoInvoke "Lookup", "Contact:Peopleid"
In this way it shows a check that says "create a temporaly group containing all results"
My problem is that i need to add the defult value like the first way, and using the second way (doinvoke) there is no alternative parameter and i need the funcionality that the checks made.
What can i do?
Thaks for your help.
|