SearchControl Xojo Plugin

SearchControl.RequestBuddyControl Event

Used on Windows and Linux to manually assign TextField to the control if your having embedding issues.

RequestBuddyControl() as TextField

Parameters

Returns

TextField

Remarks

You would use this if your having issues with embedding on TabPanel or container control for example.

To use it you would put a TextField in same pane as your SearchControl. Then you would put Border to false and Visible to false on the TextField. And finally in the RequestBuddyControl event you return the instance of the Text field.

Like for example:

Function RequestBuddyControl() As TextField
    return TextField1
End Function


This event does nothing on Mac.

See Also

SearchControl Control