BC30002: Type 'EventArgs' is not defined

  • Thread starter Thread starter David Lozzi
  • Start date Start date
D

David Lozzi

This script is in the code-behind. This is a repost of a reply in "Name 'IsNumeric' is not declared??'. I wanted to post it under a different subject.

Type 'EventArgs' is not defined

at

Sub updateStore(ByVal sender As Object, ByVal e As EventArgs)


I appear to be missing somehting here?
 
Well, I got the error to stop by using System.EventArgs. BUT WHY IS THIS HAPPENING? Is this by design? If so, then fine I like it. If not, I don't like it. Also, same issue with using IsNumeric in codebehind.

HELP!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com


This script is in the code-behind. This is a repost of a reply in "Name 'IsNumeric' is not declared??'. I wanted to post it under a different subject.

Type 'EventArgs' is not defined

at

Sub updateStore(ByVal sender As Object, ByVal e As EventArgs)


I appear to be missing somehting here?
 
oi vey...... i fixed it by adding this to the top of the page

Imports Microsoft.VisualBasic

Imports System

:|



--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com


Well, I got the error to stop by using System.EventArgs. BUT WHY IS THIS HAPPENING? Is this by design? If so, then fine I like it. If not, I don't like it. Also, same issue with using IsNumeric in codebehind.

HELP!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com


This script is in the code-behind. This is a repost of a reply in "Name 'IsNumeric' is not declared??'. I wanted to post it under a different subject.

Type 'EventArgs' is not defined

at

Sub updateStore(ByVal sender As Object, ByVal e As EventArgs)


I appear to be missing somehting here?
 
Back
Top