how can i get this to work
RenewCaptions is a sub with some code in to renew the captions of buttonsCode:Call frmDesktop.RenewCaptions
how can i call it from another form.
thanks in advance chris1990
Printable View
how can i get this to work
RenewCaptions is a sub with some code in to renew the captions of buttonsCode:Call frmDesktop.RenewCaptions
how can i call it from another form.
thanks in advance chris1990
Call frmDesktop.RenewCaptions
That's it. Just make sure RenewCaptions is a Public procedure.
do i change it from public sub to public procedure
Sub = procedure
Function = procedure
Property = procedure
So no, you don't change that :)
If it's a Public Sub then it should do.