in reply to Calling Server Side ActiveX DLL

Just to make sure... I threw together this...

<%@ Language='VBScript' %> <% Dim strReturn Dim strLabels strLabels = "first,second,third" Dim strAverages strAverages = "3,4,5" Dim strMaxes strMaxes = "6,7,8" Dim strMins strMins = "1,2,3" Dim objChart Set objChart = Server.CreateObject("WCP.WCPCharts") objChart.CreateBarChart strReturn, strLabels, strAverages %> <%=strReturn%>

It works. The DLL returns a subscript error, but that is okay, the ASP is getting that message in the strReturn and displaying it on the page like it is supposed to. I can fix the subscript problem.

-Travis