Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: srgb
  • Order by date
  1. srgb

    Detect if Ax control exists, and redirect if it doesn't?

    Hey OZJIMBOB, There is an error in the second line of sub FindActiveX(). The correct is : IF NOT (IsObject(CreateObject("RXHIGHX.RxhighxCtrl.1"))) THEN sorry for the mistake.
  2. srgb

    Detect if Ax control exists, and redirect if it doesn't?

    Hey OZJIMBOB, There is an error in the second line of sub FindActiveX(). The correct is : [color]redIF NOT (IsObject(CreateObject("RXHIGHX.RxhighxCtrl.1"))) THEN sorry for the mistake.
  3. srgb

    Detecting Flash

    hi, if you want to detect if the ShockwaveFlash is installed or not with VBScript, try this... <SCRIPT LANGUAGE=&quot;VBScript&quot;> Dim FLASH SUB Window_OnLoad() FLASH = &quot;UNKNOWN&quot; FindFlash() IF FLASH = &quot;NOT INSTALLED&quot; THEN your not installed...
  4. srgb

    Detect if Ax control exists, and redirect if it doesn't?

    hi,ozjimbob try this... <SCRIPT LANGUAGE=&quot;VBScript&quot;> Dim ACTX SUB Window_OnLoad() ACTX = &quot;UNKNOWN&quot; FindActiveX() IF ACTX = &quot;NOT INSTALLED&quot; THEN your not installed code ELSE your installed code END IF END SUB SUB...

Part and Inventory Search

Back
Top