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!
|
|
SLX Error
Posted: 10 Aug 06 12:38 PM
|
fiogf49gjkf0d We used SLX in my company and many times each day we encounter the error;
General: error on line: 36 – Unspecified failure Context: DataGrid @0: Basic Ticket: META Ticket Activity DataGrid WhenChange Status: 0xFFFFFFFF
Pls how do we go about resolving this problem to stop occurring. |
|
|
|
Re: SLX Error
Posted: 10 Aug 06 12:41 PM
|
fiogf49gjkf0d It references line 36 of the basic script "Ticket: META Ticket Activity DataGrid WhenChange Status". What is on line 36 (and 35) of this script? Was this script customized? |
|
|
|
Re: SLX Error
Posted: 10 Aug 06 12:45 PM
|
fiogf49gjkf0d Thread moved from "slxdeveloper.com Announcements" forum to "SalesLogix Scripting & VBScript" forum. |
|
|
|
Re: SLX Error
Posted: 11 Aug 06 8:16 AM
|
fiogf49gjkf0d I would look for a legacy form/script even if it is not released causing the error. I have seen these before caused by legacy items. Do you get the error as Admin and users or just users? |
|
|
|
Re: SLX Error
Posted: 05 Oct 06 6:59 PM
|
fiogf49gjkf0d I have checked and no changes were made. I pretty new to SLX so it took a while to navigate the forms and the scripts and vefiry this info. Line 36 is the end of the script below is the script for
Option Explicit sub main '********************************************************************************************************* ' Description: Ticket Activity DataGrid WhenChange ' Purpose : Updates the Description Memo control when an Activity record is selected by the user ' Called By : Support Views:Ticket:Support Ticket Activity DataGrid WhenChange event ' Inputs: : Current TicketActivity record ' Written : 06/2001 dbell ' Updates : '********************************************************************************************************* call slx_Specific
'********************************************************************************************************* ' place your customization code here '********************************************************************************************************* end sub
sub slx_Specific() dim strActivityID as string dim lngActivityHandle as long dim strDummy as string dim strActivitySQL as string
strActivityID = dbGridGetSelectedIDs ("DataGrid") 'the user just clicked this record
if strActivityID = "" then 'the user didn't select anything, just clear the memo field SetPropertyOf "mmComments","Text","" else 'go get TICKETACTIVITY.ACTIVITYDESC and populate the memo field strActivitySQL = "SELECT ACTIVITYDESC FROM TICKETACTIVITY WHERE TICKETACTIVITYID = '" & strActivityID & "'" lngActivityHandle = dbOpenSQL (strActivitySQL, True) 'read-only strDummy = dbMoveTo (lngActivityHandle, "LAST") SetPropertyOf "mmComments","Text", dbGetValue (lngActivityHandle, "ACTIVITYDESC") dbClose lngActivityHandle end if end sub |
|
|
|
Re: SLX Error
Posted: 05 Oct 06 7:01 PM
|
fiogf49gjkf0d We get this error as users. |
|
|
|