Home | Forums | Contact | Search | Syndication  
 
 [login] [create account]   Thursday, June 19, 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: how to navigate thru contacts by passing the contactid to slx from third party application
Kirti
Posts: 46
 
how to navigate thru contacts by passing the contactid to slx from third party applicationYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 18 Apr 07 9:13 AM
fiogf49gjkf0d
Hi all
i have a VB program which I am trying to integrate with saleslogix V 7. I want to pass the contact id to saleslogix from my application and open the record for the contact id that I have passed.
[Reply][Quote]
Ryan Farley
Posts: 2265
slxdeveloper.com Site Administrator
Top 10 forum poster: 2265 posts
 
Re: how to navigate thru contacts by passing the contactid to slx from third party applicationYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 18 Apr 07 2:50 PM
Take a look at this article, although in C#, it does just what you're talking about: http://www.slxdeveloper.com/page.aspx?action=viewarticle&articleid=80

Basically, the code you'll need is this:

Dim slx As Object
Dim id As String

id = "CXXXX0000001"

Set slx = CreateObject("SalesLogix.SlxApplication")
slx.BasicFunctions.ShowDetails("contact", id);
Set slx = Nothing


You can also add a reference to the SalesLogix COM library to avoid the late-bound calls.

Make sense?
[Reply][Quote]
Kirti
Posts: 46
 
Re: how to navigate thru contacts by passing the contactid to slx from third party applicationYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 18 Apr 07 11:57 PM
fiogf49gjkf0d
Thanx Ryan, THis solved my problem
[Reply][Quote]
Kirti
Posts: 46
 
Re: how to navigate thru contacts by passing the contactid to slx from third party applicationYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 07 Aug 07 3:05 AM
Hi Ryan,

Will this work for SalesLogix Web 7.0 also? If not then how can I do it for the web.

Thanx
Kirt
[Reply][Quote]
Ryan Farley
Posts: 2265
slxdeveloper.com Site Administrator
Top 10 forum poster: 2265 posts
 
Re: how to navigate thru contacts by passing the contactid to slx from third party applicationYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 07 Aug 07 11:12 AM
Quote:
Originally posted by Kirti

Hi Ryan,

Will this work for SalesLogix Web 7.0 also? If not then how can I do it for the web.

Thanx
Kirt


This will not work for web. For the web client, it depends on where your code is running. If this is from an action script inside the client then you'd do something like this:

RequestSetValue "conid", "SOMECONTACTID"
DoTemplate ("conmain")


If you're doing this from an outside application you'd have to do two things. First figure out the correct URL to construct to load a contact, and second, get it loaded in the correct frame of an existing web client browser session. You'd want to get a reference to the IE window and then inject the URL into the proper frame.
[Reply][Quote]
Ryan Farley
Posts: 2265
slxdeveloper.com Site Administrator
Top 10 forum poster: 2265 posts
 
Re: how to navigate thru contacts by passing the contactid to slx from third party applicationYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 07 Aug 07 11:13 AM
Also, just to point out, getting the web client to navigate to a contact in 7.2 web is much easier.
[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/19/2025 4:52:05 PM