Jump to content

deleting element from structure - VB.NET


samoi

Recommended Posts

Hello my friends.

I'm running into deep trouble with this structure variable!

 

this is the structure

 Structure StuRec
        Dim strName As String
        Dim strMNum As String
        Dim ArrScores() As Decimal
        Dim decAvg As Decimal
        Dim strLetter As String
    End Structure


dim gBook(20) as StuRec

'
' ## handling and filling gBook() with 14 records let's say!
'

' By now gBook() has 14 records!

' I need to delete one record of gBook(). Say I need to delete gBook(3) for example!

' I did this
dim Temp() as StuRec

For i as integer = 0 To 14
      if i = 3 then continue For
      temp(i).strName = gBook(i).strName
      'strMNum as well and the others
      'ArrScore(0) is number of scores that student got!
      temp(i).ArrScore(0) = gBook(i).ArrScore(0)
      For c as integer = 1 To gBook(i).ArrScore(0)
      
      temp(i).ArrScore(c) = gBook(i).ArrScore(c)
      
      Next c
Next i

 

the ArrScores() has maximum elements of 10 subscripts

 

so i need to delete one recored of them. but it doesn't really seems to be working :S

 

Your help is much much appreciated !

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.   Restore formatting

  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...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.