4
votes
5answers
210 views
BaseType of a Basetype
Hello, this is my first question here so I hope I can articulate it well and hopefully it won't be too mind-numbingly easy.
I have the following class SubSim which extends Sim …
3
votes
8answers
392 views
Back to basics; for-loops, arrays/vectors/lists, and optimization
I was working on some code recently and came across a method that had 3 for-loops that worked on 2 different arrays.
Basically, what was happening was a foreach loop would walk through a v …
0
votes
2answers
31 views
Is there a way to overlay text onto NotifyIcon?
I'm currently writing an application that has a NotifyIcon and I'm trying to figure out a way to overlay text on to it. So for example, if the icon indicates the number of files open, it has the ic …
0
votes
BaseType of a Basetype
The 'is' option didn't work for me. It gave me the warning; "The given expression is never of the provided ('MainSim') type", I do believe however, the warning had more to do with the framework we …
1
vote
Back to basics; for-loops, arrays/vectors/lists, and optimization
I apologize for not responding sooner and providing any kind of code. I got sidetracked on my project and had to work on something else.
To answer anyone still monitoring this question; …
0
votes
Back to basics; for-loops, arrays/vectors/lists, and optimization
Thank you every one for the information. Thinking in terms of Big-O and how to optimize has never been my strong point. I believe I am going to put the code back to the way it was, I should have tr …
1
vote
How to add things to a menustrip programatically?
It's rather straight forward. You can do the following:
ToolStripMenuItem menuItem
foreach (string text in collectionOfText)
{
ToolStripMenuItem foo = new ToolStripMenuItem(tex …
1
vote
Is there a way to overlay text onto NotifyIcon?
Well, I didn't figure out a good way of doing this, but in the end it didn't matter. I ended up using the BalloonTip which allowed me to provide information.
…
