December 14th, 2008 09:25 PM
December 14th, 2008 09:22 PM
I have no idea what toolbar you are talking about but if codeguru has a virus they better get it fixed, I'm not coming back here until they do. Seems weird about BoardTracker.
December 13th, 2008 02:22 PM
December 13th, 2008 12:17 PM
Set is setting.
Get is getting.
December 13th, 2008 12:07 PM
December 13th, 2008 12:03 PM
Who is BoardTracker and how come they keep viewing my profile over and over again? But never post anything. Is it a spam bot?
December 13th, 2008 11:47 AM
I'll take a look at WPF then, because I need to change the UI of a ListView control myself. But its always been too much work for me to worry about right now.
December 13th, 2008 11:42 AM
Neat! I had this exact same idea but I thought it was stupid. But you just thought of the same idea so it must not be that stupid after all.
I don't think I would delete/uninstall the software for...
December 12th, 2008 10:02 PM
Opacity to 0% is the best way to do this in my opinion. I wouldn't play around with other methods that can cause bugs later.
Just make sure if you use opacity you remember to set ShowInTaskbar to...
December 12th, 2008 02:00 PM
I got it open with express edition and there were too many errors for me to worry about. Does anyone know of any newer key programs like that? Something written for C#? I have been searching for...
December 12th, 2008 11:16 AM
It looks like its in the column header to me. I think that's what he is looking for. I don't know of any Windows control that can do that. Asside from ineriting from ListView and doing it yourself....
December 12th, 2008 11:12 AM
I would be interested in getting a copy of this program attached to Post # 17 for either C# or Visual Basic .Net. I am really interested to see how it works because I am looking for this exact thing...
December 11th, 2008 12:48 PM
TheCPUWizard:
In reguard to your PM here is the new project you requested. I think this is what you needed.
December 10th, 2008 07:00 PM
You know, when Jelsoft invents the version of vB that automatically detects code and places code tags around it, they will be able to charge 3 times as much for the software.
December 10th, 2008 06:56 PM
Show me the money!!! :eek:
Heh, yep, it's not possible to do this unless you have a mistake in your coding. Close() does not effect Owners.
December 10th, 2008 06:39 PM
Well everything works except the IsValid() function right now. I have many more classes to design, and if I can get the IsValid() down first then I do not have to rewrite all those classes.
But,...
December 10th, 2008 06:02 PM
Interesting, I'll look forward to your example. I think that would be usefull in many places. Not just validation. I guess you learn something new everyday. In the mean time I'll keep working on...
December 10th, 2008 05:43 PM
Ok, I'll make the changes then. I tried to stay away from returning true because no matter what is passed into the function will always be true even if it's not valid. I figured it was safer to...
December 10th, 2008 05:25 PM
Sorry, but I don't know how to create a validator for a boolean field if I always need to have a validator assigned.
I can't even assign it to Validator class and use the default "do nothing"...
December 10th, 2008 05:13 PM
Ok, so I think you are saying instead of doing this:
public Field<bool> field1;
I just use the normal way?
December 10th, 2008 04:59 PM
Well the reason I decided not to have a validator is because some fields cannot be validated. For example:
bool Taxable;
In my Department class to tell if the class is taxable or...
December 10th, 2008 04:07 PM
OK,
I added one function to the Field<> class:
public bool IsValid()
{
if (m_validator != null)
{
December 9th, 2008 09:14 PM
Interesting, I read in a book some place. I think it was "C# CLR" that elseif statements add extra overhead because they cause the same expression to be evaluated over and over again. Where a switch...
December 9th, 2008 08:28 PM
If I modify Validate to return a bool so that statement will compile, then the class is incorrect because my override would also have to return a bool and it would not return anything because once...
December 9th, 2008 08:23 PM
Yes, however one part doesn't make sense to me.
public T Value
{
get { return this.m_Value; }
set
{
if...