Click here to Skip to main content
15,910,981 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Adding a new row to DataSource Pin
Floodlight17-Mar-10 19:06
Floodlight17-Mar-10 19:06 
GeneralRe: Adding a new row to DataSource Pin
Anubhava Dimri17-Mar-10 19:38
Anubhava Dimri17-Mar-10 19:38 
AnswerRe: Adding a new row to DataSource Pin
Dave Kreskowiak18-Mar-10 3:49
mveDave Kreskowiak18-Mar-10 3:49 
GeneralRe: Adding a new row to DataSource Pin
Floodlight18-Mar-10 12:40
Floodlight18-Mar-10 12:40 
QuestionMultiThreading in TabPages! Pin
dotnetme217-Mar-10 9:16
dotnetme217-Mar-10 9:16 
Answerpartial answer Pin
Luc Pattyn17-Mar-10 9:51
sitebuilderLuc Pattyn17-Mar-10 9:51 
GeneralRe: partial answer Pin
dotnetme217-Mar-10 10:30
dotnetme217-Mar-10 10:30 
QuestionUser Control Array [modified] ---- Solved Pin
Ibsy17-Mar-10 4:26
professionalIbsy17-Mar-10 4:26 
I am trying to write a user control that displays graphical squares on a drawn grid

I have the graphics side of it working fine but need to use a custom array to give me the data to plot the squares

here's my array
Public Structure SatChar
      Public SatNr As Integer
      Public SatAxim As String
      Public SatElev As String
      Public SNR As String
  End Structure
  Public Shared arrSatChars(0 To 35) As SatChar


how do i set this array into a property???

I have tried
Protected arrSatChars(0 To 35) As SatChar

   Public Property Satellites(ByVal SatNr As Integer, ByVal SatAxim As String, ByVal SatElev As String, ByVal SNR As String) As SatChar()
       Get
           Return arrSatChars
       End Get
       Set(ByVal value As SatChar())
           arrSatChars = value
           Me.Refresh()
       End Set
   End Property


but this doesnt work

im still new to vb.net and any help would be much appreciated
thank you
modified on Wednesday, March 17, 2010 9:41 PM

AnswerRe: User Control Array Pin
Dave Kreskowiak17-Mar-10 4:57
mveDave Kreskowiak17-Mar-10 4:57 
GeneralRe: User Control Array Pin
Ibsy17-Mar-10 13:47
professionalIbsy17-Mar-10 13:47 
GeneralRe: User Control Array Pin
Dave Kreskowiak17-Mar-10 14:39
mveDave Kreskowiak17-Mar-10 14:39 
Questiondecimal value in .sdf database Pin
ejaz_pk17-Mar-10 4:12
ejaz_pk17-Mar-10 4:12 
AnswerRe: decimal value in .sdf database Pin
Luc Pattyn17-Mar-10 4:18
sitebuilderLuc Pattyn17-Mar-10 4:18 
AnswerRe: decimal value in .sdf database Pin
Dave Kreskowiak17-Mar-10 4:23
mveDave Kreskowiak17-Mar-10 4:23 
AnswerRe: decimal value in .sdf database Pin
Dalek Dave17-Mar-10 4:25
professionalDalek Dave17-Mar-10 4:25 
AnswerRe: decimal value in .sdf database Pin
εїзεїзεїз17-Mar-10 6:25
εїзεїзεїз17-Mar-10 6:25 
GeneralRe: decimal value in .sdf database Pin
ejaz_pk18-Mar-10 19:40
ejaz_pk18-Mar-10 19:40 
Questiondelimitted files Pin
Daniel Engelkes16-Mar-10 17:46
Daniel Engelkes16-Mar-10 17:46 
AnswerRe: delimitted files Pin
_Damian S_16-Mar-10 18:00
professional_Damian S_16-Mar-10 18:00 
AnswerRe: delimitted files Pin
Andy_L_J16-Mar-10 19:04
Andy_L_J16-Mar-10 19:04 
GeneralRe: delimitted files Pin
Daniel Engelkes18-Mar-10 3:39
Daniel Engelkes18-Mar-10 3:39 
GeneralRe: delimitted files Pin
Andy_L_J18-Mar-10 8:45
Andy_L_J18-Mar-10 8:45 
GeneralRe: delimitted files Pin
Andy_L_J18-Mar-10 8:54
Andy_L_J18-Mar-10 8:54 
AnswerRe: delimitted files Pin
Mycroft Holmes16-Mar-10 20:59
professionalMycroft Holmes16-Mar-10 20:59 
QuestionAccess textboxes - Dynamically created Tab Pin
dotnetme216-Mar-10 9:27
dotnetme216-Mar-10 9:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.