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
https://forums.phpfreaks.com/topic/199647-deleting-element-from-structure-vbnet/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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