Login / Register  search  syndication  about

          SalesLogix Questions & Answers

Your place to get answers to your SalesLogix related questions.

 Home  |   Subscribe via RSS  |   Subscribe via E-mail  |   

I would like to disable a SalesLogix button if the image url does not exist, is there any way of checking the URL when the form opens?

Question:

I've created a new form within which users can view product details. In most cases there is an accompanying image for the product stored on our web site.

As such, I've created a button that when clicked opens a web browser and displays the image.

 I would like to disable the button if the image does not exist, is there any way of checking the URL when the form opens, and disabling the button if the image is not there? 

Answer:

1) Copy this function and either place it in your form script or in a library that it references (preferable, as you can use it again elsewhere)

Function Web_ValidateURL(strURL)

Dim objHTTP
Set objHTTP = CreateObject("Microsoft.XmlHttp")
objHTTP.open "HEAD", strURL, FALSE
objHTTP.send ""

if objHTTP.Status = "200" then
Web_ValidateURL = True
else
Web_ValidateURL = False
end if

set objHTTP = nothing

End Function

2) In the script for your form, or wherever you want to check a URL...

if Web_ValidateURL("http://www.yourwebaddress/yourjpgfolder/xyz.jpg") = True then
btnImages.Enabled = True
btnImages.Caption = "Images"
else
btnImages.Enabled = False
btnImages.Caption = "No Image"
end if

... you will obviously need to change the code to suit your circumstances but hopefully the above is simple enough to understand.

 

What's This?
  
Bookmark and Share

About SalesLogix Support

   Your SalesLogix Business Partner for SalesLogix Support.


Related Content
   Is there an issue with the SalesLogix Web Administrator version 8.0 in regards to adding users to Team Membership?
Question: In my database, it appears two users belonging to the same teams, have access to a different am
Posted on May 22, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   FREE Open Source Add-ons for SalesLogix version 8 web
SalesLogix is developing a number of FREE add-on solutions for SalesLogix version 8 web. Some of the
Posted on May 22, 2013 by Scott Weber to SalesLogix Product Blog
 
   What is the best way to delete unused Groups in SalesLogix?
After several years of using SalesLogix – we have hundreds of groups, most of which are no longer used as
Posted on May 21, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Can the SalesLogix Application architect's build process be automated?
Can the SalesLogix Application architect's build process be automated, or called from a batch file? W
Posted on May 16, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Is it possible to Sync SalesLogix Attachments based on Account Manager?
Is it possible to only sync SalesLogix Attachments from the accounts where the user is the account manag
Posted on May 15, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
Comments

No Comments
All contents Copyright © 2013 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register