Home | Forums | Contact | Search | Syndication  
 
 [login] [create account]   Wednesday, June 18, 2025 
 
slxdeveloper.com Community Forums  
   
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
 Architect Forums - SalesLogix Scripting & Customization
Forum to discuss writing script in Architect plugins for SalesLogix & general SalesLogix customization topics (for Windows client only). View the code of conduct for posting guidelines.
Forums RSS Feed


 Back to Forum List | Back to SalesLogix Scripting & Customization | New ThreadView:  Search:  
 Author  Thread: WebOpen() issue with FireFox
John Gundrum
Posts: 632
Top 10 forum poster: 632 posts
 
WebOpen() issue with FireFoxYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 19 Apr 07 12:23 PM
fiogf49gjkf0d
We have several buttons added to forms that use the WebOpen() function to call a web page with specific parameters. Basically the call looks like this.

Application.BasicFunctions.WebOpen(strURL)

All works fine when IE is your default browser. But if your default browser is FireFox this is the problem we are running into when it opens FireFox.

Firefox can't find the file at /C:/Program Files/Common Files/SYSTEM/MSMAPI/1033/-requestPending http://www.somurl.com/search/index.xhtml?query_string=Business

Any ideas why this is happening or how to fix the issues?

Thanks,
John G.
[Reply][Quote]
Ryan Farley
Posts: 2265
slxdeveloper.com Site Administrator
Top 10 forum poster: 2265 posts
 
Re: WebOpen() issue with FireFoxYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 19 Apr 07 12:32 PM
OK. That is bizzare.

An alternative to using WebOpen is to use the Shell object to basically "Run" the URL. This will cause Windows to open the URL is whatever the default browser is.

See http://saleslogixblog.com/rfarley/archive/2004/02/10/331.aspx

ie:

Sub Main
Run "http://www.google.com/search?q=slxdeveloper.com"
End Sub

Sub Run(ByVal sFile)
Dim shell

Set shell = CreateObject("WScript.Shell")
shell.Run Chr(34) & sFile & Chr(34), 1, false
Set shell = Nothing
End Sub


It might or might not give the same result, but at least this way you'd have more control over what is happening.
[Reply][Quote]
Lawrence Reid
Posts: 63
 
Re: WebOpen() issue with FireFoxYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 30 May 07 9:28 AM
The code that keeps on giving. Thanks so much for this code sample. I have used it in several ways today. Skip Google. This is now my first stop information.
[Reply][Quote]
 Page 1 of 1 
  You can subscribe to receive a daily forum digest in your user profile. View the site code of conduct for posting guidelines.

   Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
 

 
 slxdeveloper.com is brought to you courtesy of Ryan Farley & Customer FX Corporation.
 This site, and all contents herein, are Copyright © 2025 Customer FX Corporation. The information and opinions expressed here are not endorsed by Sage Software.

code of conduct | Subscribe to the slxdeveloper.com Latest Article RSS feed
   
 
page cache (param): 6/18/2025 2:26:09 PM