JOELO Posted July 6, 2020 Share Posted July 6, 2020 Hi I'm trying to complete a website using variable in the middle of the web address. The variable DATA1 have information needed to get to the correct web area. This what I have but is not working for me Global $DATA1 = ("1245692581") ShellExecute("https://npiregistry.cms.hhs.gov/registry/search-results-table?number=", $DATA1, "&addressType=ANY") Link to comment Share on other sites More sharing options...
Developers Jos Posted July 6, 2020 Developers Share Posted July 6, 2020 Moved to the appropriate forum, as the AutoIt Example Scripts forum very clearly states: Quote Share your cool AutoIt scripts, UDFs and applications with others. Do not post general support questions here, instead use the AutoIt Help and Support forums. Moderation Team JOELO 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Developers Jos Posted July 6, 2020 Developers Share Posted July 6, 2020 that should be: Global $DATA1 = "1245692581" ShellExecute("https://npiregistry.cms.hhs.gov/registry/search-results-table?number=" & $DATA1 & "&addressType=ANY") Jos JOELO 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now