473,804 Members | 3,447 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

A "basic" question - I think!

I have an object called ColumnSection which represents a reinforced concrete
column. This object contains an arraylist called Diagrams which contains
Graph2D objects which are essentially X-Y plots. The Graph2D object has 2
public methods - Draw, which draws the plot on a bitmap in memory and
DisplayGraph which blits the bitmap on to a Panel or PictureBox.

I have a public ReadOnly property in the ColumnSection called
InteractionDiag rams which returns the Diagrams arraylist. I want to be able
to get the arraylist in a form with a PictureBox.

Questions:

1. Should the InteractionDiag rams property return the Diagrams arraylist or
a clone of the Diagrams arraylist? Are there any issues either way?

2. Is there anything wrong in calling either the Draw or DisplayGraph
methods of the Graph2D objects in the Diagrams arraylist from the form with
the PictureBox?

Any thoughts would be greatly appreciated.

Keith.
Nov 21 '05 #1
3 1201
Keith,

Regarding (1): What will your code do with the Diagrams ArrayList?

Regarding (2): Not quite clear what you mean. Can you provide sample code?
--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"Keith Rebello" <kr**@gecinc.co m> wrote in message
news:Xv******** ***********@new sread1.mlpsca01 .us.to.verio.ne t...
I have an object called ColumnSection which represents a reinforced
concrete
column. This object contains an arraylist called Diagrams which contains
Graph2D objects which are essentially X-Y plots. The Graph2D object has 2
public methods - Draw, which draws the plot on a bitmap in memory and
DisplayGraph which blits the bitmap on to a Panel or PictureBox.

I have a public ReadOnly property in the ColumnSection called
InteractionDiag rams which returns the Diagrams arraylist. I want to be
able
to get the arraylist in a form with a PictureBox.

Questions:

1. Should the InteractionDiag rams property return the Diagrams arraylist
or
a clone of the Diagrams arraylist? Are there any issues either way?

2. Is there anything wrong in calling either the Draw or DisplayGraph
methods of the Graph2D objects in the Diagrams arraylist from the form
with
the PictureBox?

Any thoughts would be greatly appreciated.

Keith.

Nov 21 '05 #2
Mike,

The InteractionDiag rams property will be one of the following:

Get
Return Diagrams
or
Return Diagrams.Clone
End Get

My question is which "Return" should I use.

Once I have the Diagrams arraylist in my calling form (the one with the
PictureBox), I want to be able to do:

Dim Gr2D as Graph2D
Gr2D= Diagrams(i)
Gr2D.DisplayGra ph

Is this permissible?

"Mike McIntyre" <mi****@dotnets howandtell.com> wrote in message
news:eu******** ******@TK2MSFTN GP10.phx.gbl...
Keith,

Regarding (1): What will your code do with the Diagrams ArrayList?

Regarding (2): Not quite clear what you mean. Can you provide sample code?

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"Keith Rebello" <kr**@gecinc.co m> wrote in message
news:Xv******** ***********@new sread1.mlpsca01 .us.to.verio.ne t...
I have an object called ColumnSection which represents a reinforced
concrete
column. This object contains an arraylist called Diagrams which contains Graph2D objects which are essentially X-Y plots. The Graph2D object has 2 public methods - Draw, which draws the plot on a bitmap in memory and
DisplayGraph which blits the bitmap on to a Panel or PictureBox.

I have a public ReadOnly property in the ColumnSection called
InteractionDiag rams which returns the Diagrams arraylist. I want to be
able
to get the arraylist in a form with a PictureBox.

Questions:

1. Should the InteractionDiag rams property return the Diagrams arraylist or
a clone of the Diagrams arraylist? Are there any issues either way?

2. Is there anything wrong in calling either the Draw or DisplayGraph
methods of the Graph2D objects in the Diagrams arraylist from the form
with
the PictureBox?

Any thoughts would be greatly appreciated.

Keith.


Nov 21 '05 #3
Keith,

In this scenario there appears to be no reason to Clone.

Mike
"Keith Rebello" <kr**@gecinc.co m> wrote in message
news:HW******** ***********@new sread1.mlpsca01 .us.to.verio.ne t...
Mike,

The InteractionDiag rams property will be one of the following:

Get
Return Diagrams
or
Return Diagrams.Clone
End Get

My question is which "Return" should I use.

Once I have the Diagrams arraylist in my calling form (the one with the
PictureBox), I want to be able to do:

Dim Gr2D as Graph2D
Gr2D= Diagrams(i)
Gr2D.DisplayGra ph

Is this permissible?

"Mike McIntyre" <mi****@dotnets howandtell.com> wrote in message
news:eu******** ******@TK2MSFTN GP10.phx.gbl...
Keith,

Regarding (1): What will your code do with the Diagrams ArrayList?

Regarding (2): Not quite clear what you mean. Can you provide sample

code?


--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"Keith Rebello" <kr**@gecinc.co m> wrote in message
news:Xv******** ***********@new sread1.mlpsca01 .us.to.verio.ne t...
>I have an object called ColumnSection which represents a reinforced
>concrete
> column. This object contains an arraylist called Diagrams which contains > Graph2D objects which are essentially X-Y plots. The Graph2D object
> has 2 > public methods - Draw, which draws the plot on a bitmap in memory and
> DisplayGraph which blits the bitmap on to a Panel or PictureBox.
>
> I have a public ReadOnly property in the ColumnSection called
> InteractionDiag rams which returns the Diagrams arraylist. I want to be
> able
> to get the arraylist in a form with a PictureBox.
>
> Questions:
>
> 1. Should the InteractionDiag rams property return the Diagrams arraylist > or
> a clone of the Diagrams arraylist? Are there any issues either way?
>
> 2. Is there anything wrong in calling either the Draw or DisplayGraph
> methods of the Graph2D objects in the Diagrams arraylist from the form
> with
> the PictureBox?
>
> Any thoughts would be greatly appreciated.
>
> Keith.
>
>



Nov 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1832
by: bidalah | last post by:
Hello, I am looking for basic info on installing and using MSDE. I am trying to install and play with MSDE on my PC (Win2000). I finally managed to work my way through installation, and named instances but I am finding no information on how to simply START the database engine and get to a sql prompt! I have manually started the MSSQL and SQLAGENT services, and tried running sqlservr.exe and osql.exe (just guessing) without success. ...
18
2134
by: steve | last post by:
I'm trying to create a structure of three pointers to doubles. For which I have: typedef struct { double *lst_t, *lst_vc, *lst_ic; } last_values; I then need to allocate space for last_values as well as assign the value of a pointer to the assigned space. Which I think I'm doing by using:
12
1278
by: pmclinn | last post by:
What is the difference between these declarations: Dim strMyData() as string and Dim strMyData as string() -Peter
1
7775
by: Ottavio | last post by:
Hello, I'm having some problems with the authentication during a web service call I know I have to add the "Authorization: Basic xxxxxxxx" in the http header (not soap header) but I can't find a way to add it. I've tryed to use ethereal to watch what I'm sending and I can see all the header (Accept-Language,Accept-Encoding,User-Agent,Host,Connection,..) and the SOAP xml message but there is no "Authorization: Basic ......" at all.
43
2409
by: Bill H | last post by:
25 years ago every computer came with some form of Basic interpreter so you could use yoru computer without having to buy more software. Is Javascript (teamed with HTML) set to become the new Basic, where anyone with a computer can start writing code without having to purchase any expensive languages? Bill H
0
9711
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10343
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10331
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10087
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9166
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6861
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4306
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3831
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3001
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.