I want to reference an Ip Address from a text control in a form to VBA , currently I'm hard coding it like below:
This is going to more important once those people who do not want using Manual IP addrress or Static , but continue with dynamic
Code:
stUrl = "http://192.168.8.110:8080/xxxxxxxxxxxxxxxxxxxxxxxxxxxx"[CODE]
Now instead where I'm putting "192.168.8.110" I want to use a control as reference ,example "Forms!frmLogin!txtIPadress.Value"
How is the new string going to be in order to achieve the same results ?
[CODE]stUrl = "http://192.168.8.110:8080/xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
This is going to more important once those people who do not want using Manual IP addrress or Static , but continue with dynamic