Trying to use Web Services Epicor example and getting error

Add a line that just says:
using System.Collections;

*John Driggers*
**
*Chief Data Wrangler*
*
*
*I have an Epicor blog <http://usdoingstuff.com/>. How useful is that?*
*
*:: 904.404.9233
:: waffqle@...
:: http://www.usdoingstuff.com <http://www.usdoingstuff.com/>

*

*



On Thu, Jul 26, 2012 at 11:57 AM, DaveO <daveolender@...> wrote:

> **
>
>
> This is what I have at the top of the code:
>
> using System;
> using System.Collections.Generic;
> using System.ComponentModel;
> using System.Data;
> using System.Drawing;
> using System.Text;
> using System.Windows.Forms;
>
> using WindowsApplication4.EpiPartService;
> using Microsoft.Web.Services3;
> using Microsoft.Web.Services3.Design;
> using Microsoft.Web.Services3.Security;
> using Microsoft.Web.Services3.Security.Tokens;
>
> DaveO
>
>
> --- In vantage@yahoogroups.com, "bw2868bond" <bwalker@...> wrote:
> >
> > Sounds like you need Imports System.Collections; At the top of your
> code...
> >
> > --- In vantage@yahoogroups.com, "DaveO" <daveolender@> wrote:
> > >
> > > I am trying to use VS2005 to setup the Web Service example provided by
> epicor.
> > >
> > > The example has a combo box that runs a GetList of the PartService and
> returns a list of "Manufactured" parts.
> > >
> > > I am NOT a C# programmer, so I'm struggling with how to debug the
> error.
> > >
> > > The error i'm getting when I try to debg is:
> > >
> > > private ArrayList partsList = new ArrayList();
> > >
> > > Debugger says:
> > >
> > > The type or namespace name 'ArrayList' could not be found (are you
> missing a using directive or an assembly reference?)
> > >
> > > If anyone could help, I would really appreciate it.
> > >
> > > Thanks,
> > >
> > > DaveO
> > >
> >
>
>
>


[Non-text portions of this message have been removed]
I am trying to use VS2005 to setup the Web Service example provided by epicor.

The example has a combo box that runs a GetList of the PartService and returns a list of "Manufactured" parts.

I am NOT a C# programmer, so I'm struggling with how to debug the error.

The error i'm getting when I try to debg is:

private ArrayList partsList = new ArrayList();

Debugger says:

The type or namespace name 'ArrayList' could not be found (are you missing a using directive or an assembly reference?)

If anyone could help, I would really appreciate it.

Thanks,

DaveO
Sounds like you need Imports System.Collections; At the top of your code...

--- In vantage@yahoogroups.com, "DaveO" <daveolender@...> wrote:
>
> I am trying to use VS2005 to setup the Web Service example provided by epicor.
>
> The example has a combo box that runs a GetList of the PartService and returns a list of "Manufactured" parts.
>
> I am NOT a C# programmer, so I'm struggling with how to debug the error.
>
> The error i'm getting when I try to debg is:
>
> private ArrayList partsList = new ArrayList();
>
> Debugger says:
>
> The type or namespace name 'ArrayList' could not be found (are you missing a using directive or an assembly reference?)
>
> If anyone could help, I would really appreciate it.
>
> Thanks,
>
> DaveO
>
This is what I have at the top of the code:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

using WindowsApplication4.EpiPartService;
using Microsoft.Web.Services3;
using Microsoft.Web.Services3.Design;
using Microsoft.Web.Services3.Security;
using Microsoft.Web.Services3.Security.Tokens;

DaveO

--- In vantage@yahoogroups.com, "bw2868bond" <bwalker@...> wrote:
>
> Sounds like you need Imports System.Collections; At the top of your code...
>
> --- In vantage@yahoogroups.com, "DaveO" <daveolender@> wrote:
> >
> > I am trying to use VS2005 to setup the Web Service example provided by epicor.
> >
> > The example has a combo box that runs a GetList of the PartService and returns a list of "Manufactured" parts.
> >
> > I am NOT a C# programmer, so I'm struggling with how to debug the error.
> >
> > The error i'm getting when I try to debg is:
> >
> > private ArrayList partsList = new ArrayList();
> >
> > Debugger says:
> >
> > The type or namespace name 'ArrayList' could not be found (are you missing a using directive or an assembly reference?)
> >
> > If anyone could help, I would really appreciate it.
> >
> > Thanks,
> >
> > DaveO
> >
>