I have a text input box and a luanch button I want to go to a website based on on the textbox path when the launch button is hit.
Example:
Text box 1 the value input is 438826. I want it to navigate to "www.companywebsite.", [textbox1], "perferferfre.com"
so if it was 438826 in textbox 1 I would go to "www.companywebsite.438826perferferfre.com"
438827 "www.companywebsite.438827perferferfre.com"
438828 "www.companywebsite.438828perferferfre.com" etc...
I can't seem to get the launch code to take the textbox value.
Solved! Go to Solution.
Please try using Concatenate functions inside the Launch function.
Ex:
Launch(Concatenate("https://www.bing.com/search?q=",TextInput1.Text))
or you can use '&' to form the string:
Launch("https://www.bing.com/search?q=" & TextInput1.Text)
Hi
May you check if you include http:\\ or https:\\?
example:
Launch("http:\\www.google.com")
Hope this helps.
Launch("https://companywebsite-my.sharepoint.com/personal/user_company_com/_layouts/15/onedrive.aspx?id=%Doc...438388%2Epdf&parent=%")
when I hard code it like this it works great. What I need to do is have 438388 be based on the text box.
Please try using Concatenate functions inside the Launch function.
Ex:
Launch(Concatenate("https://www.bing.com/search?q=",TextInput1.Text))
or you can use '&' to form the string:
Launch("https://www.bing.com/search?q=" & TextInput1.Text)
User | Count |
---|---|
255 | |
112 | |
92 | |
48 | |
38 |