Does anyone else get this error from CF when loading an array from a list.
I also get the same message when using <CFGRID> under certain circumstances.

"The data area passed to a system call is too small. "

CF 4.5.1 Enterprise - Single User
NT 4.0 Workstation SP4

Example code below:

<CFSET PagerList = #Group#>
<CFSET myArrayList = ListToArray(PagerList)>

 <cfloop index="in" from="1" to="#ArrayLen(MyArrayList)#" step="1"> 
<cfquery name="deletegroup" datasource="pagenet">
Delete * from Groups where ID=#MyArrayList[in]#
</cfquery>
<cfquery name="deleteusergroup" datasource="pagenet">
Delete * from UserGroups where GroupID=#MyArrayList[in]#
</cfquery>
</cfloop>

<html>
<head>
        <title>Delete</title>
</head>

<cflocation url="index.cfm?fuseaction=displaygroup" addtoken="No">

------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to