Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Here is my code :


   Public Class Operatie

       Public Function Add(ByVal ParamArray x() As Integer) As Integer
           Dim i As Integer
           Dim sum As Integer = 0
           For Each i In x
               sum += i
           Next

           Return sum
       End Function
  End Class

 Dim proka As Operatie

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
       MessageBox.Show(proka.Add(2, 3).ToString)
   End Sub

 

 

 

and here is my error when I click that button :

An unhandled exception of type 'System.NullReferenceException' occurred in Learn VB.NET 2.0 Class 3.exe
Additional information: Object reference not set to an instance of an object.

Development & Research Department @ Elven Soft
  • *Experts*
Posted

Or make function Add "Shared" and then call it with:

MessageBox.Show(Operatie.Add(2, 3).ToString)

 

-Nerseus

"I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
Posted

Your error is caused by this :

Operatie value is NULL.

 

And you can't reference .Add of an null object ya ?

"If someone say : "Die mortal !"... don't stay to see if he isn't." - Unknown

"Learning to program is like going out with a new girl friend. There's always something that wasn't mentioned in the documentation..." - Me

"A drunk girl is like an animal... it scream at everything like a cat and roll in the grass like a dog." - Me after seeing my girlfriend drunk and some of her drunk friend.

C# TO VB TRANSLATOR

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...