Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Azurit

Hi, I have several classes for different types of shapes (line, rectangle..etc) which all implements interface IDraw. And then I have a List<IDraw> called shapes which I want to Serialize/Deserialize. I think I got the Serialization right: [CODE] private void saveToolStripMenuItem_Click(object sender, EventArgs e) { saveFileDialog1 = new SaveFileDialog(); saveFileDialog1.InitialDirectory …

Member Avatar for code78
0
255
Member Avatar for Azurit

Hi. In my bash script I have a loop which downloads a few files in the background with 'wget'. How can I make my script wait until all downloads are complete before it goes on? I guess I have to use the 'wait' command after the loop in some way? …

Member Avatar for ennoil
0
2K
Member Avatar for Azurit

Hello, Ok. How to describe my problem :-/ I'm making a 2D drawing program. Currently working on lines. So I got a class line which holds the draw method. And I've created a list of lines + a line object. In the form I have a listbox where every line …

Member Avatar for Azurit
0
229
Member Avatar for Azurit

Hi, This is a part of my program, where I'm going to be able to draw lines, rectangles, ellipses, triangles and polygons in the end. With this code here I can draw a line on panel1, and it works nice. The downside is that I can't draw more than one …

Member Avatar for skatamatic
0
129
Member Avatar for Azurit

This is part of my code. I want to declare an array of List, and I want to be able to pass this array to the functions listed below, so that I can do work on the array (i.e. add/delete nodes). But I have problems getting my head around pointers …

Member Avatar for Azurit
0
1K