esac

1,553
Reputation
427 views

Registered User

Name esac
Member for 7 months
Seen 1 hour ago
Website
Location Seattle, WA
Age 31
I am a software developer primarily focused on WinForms development in C#. I have been in development for 10 years.
1h
asked How to convert std::wstring to a TCHAR*
4h
comment How to create an autocomplete list in ViM?
Thanks, looks like what I was looking for.
13h
asked How to create an autocomplete list in ViM?
Nov
20
comment How to detect when screen brightness or system volume changed?
I know it is usually OEM specific, but windows has a volume bar, and when you change the volume via the hotkeys, Windows adjusts its volume accordingly.
Nov
20
asked How to detect when screen brightness or system volume changed?
Nov
19
comment How to add a view for current user details in MVC?
Far from the same question. The one you linked to is 'how to get the current user'. I want to generate a controller action and view that displays the details about the user.
Nov
19
asked How to add a view for current user details in MVC?
Nov
12
asked How to handle JSON in C#?
Nov
6
accepted How to call a custom Visual Studio Wizard from Command Line?
Nov
6
answered How to call a custom Visual Studio Wizard from Command Line?
Nov
4
comment How to call a custom Visual Studio Wizard from Command Line?
Update: looked at all of the command line options, don't see anything for executing a wizard, so I would need to move the whole wizard to a command line version which doesn't seem to work with EnvDTE.
Nov
4
comment How to call a custom Visual Studio Wizard from Command Line?
I will have to look into /Command option. Bootstrapping the entire Visual Studio is fine, I care more about automating the process than anything. I ideally would like it to be part of the build itself (build produces code that then gets built). I wouldn't mind rewriting it for CodeDom but I only have 2 days allocated to this whole project, and rewriting this amount of code generation would take a week.
Nov
4
asked How to call a custom Visual Studio Wizard from Command Line?
Oct
20
comment How to find out if there are any duplicates in one list versus another?
@Matt: I think you answered your own question if all you could do is point me to a generic search term and not a duplicate. But no, I looked, the closest it comes is removing duplicates from a list, not comparison of 2 lists.
Oct
20
asked How to find out if there are any duplicates in one list versus another?
Oct
13
asked How do I check when the computer is being put to sleep or wakes up?
Oct
13
comment How do I make my form transparent, but what I draw on it not?
This goes back to the same issue below. Color.Transparent isn't supported unless I can set 'SupportsTransparentBackColor' which isn't allows unless the parent is a Control. For the Main form, there is no parent: SetStyle(ControlStyles.SupportsTransparentBackColor, true); this.TransparencyKey = Color.Transparent; this.BackColor = Color.Transparent;
Oct
12
asked What is a good statistical math package for .Net?
Oct
12
comment How do I make my form transparent, but what I draw on it not?
I just tried this, and I am getting an opaque background through the transparent container, and it happens to be the color I am setting the TransparencyKey to. For example, I set the TransparencyKey to pink, and then I put a 80% opaque black background panel on, and what I see is a pinkish/black opaque background.
Oct
11
asked Does Windows support metadata for every file?
Oct
11
revised How do I make my form transparent, but what I draw on it not?
added 319 characters in body; edited tags
Oct
10
revised What are ways of improving build/compile time?
added 65 characters in body
Oct
9
comment How do I make my form transparent, but what I draw on it not?
I am thinking this won't work , from MSDN: If true, the control accepts a BackColor with an alpha component of less than 255 to simulate transparency. Transparency will be simulated only if the UserPaint bit is set to true and the parent control is derived from Control. I am guessing that since the main form has no parent that it fails the last test.
Oct
9
comment How do I make my form transparent, but what I draw on it not?
Hm, this sounds like what I want, however I am getting a gray box, and it seems that anything I draw on top if it is not showing. I tried Color.Transparent and this.BackColor = Color.FromArgb(180, 0, 0, 0);
Oct
9
comment How do I make my form transparent, but what I draw on it not?
This isn't the same, what this says is that when you draw whatever color this key is set to, it will show as transparent, which means 0% Opaque (or fully transparent depending on if you are a cup half full guy). It doesn't allow you to set it to 50% transparent.
Oct
9
asked How do I make my form transparent, but what I draw on it not?
Oct
8
comment What are ways of improving build/compile time?
This isn't always the case. I have a project at work that I just upgraded from 2.83GHz last-gen to 3.2GHz processors, both quad core. I double the amount of memory from 8GB to 16GB. I switched from RAID0 7200RPM to RAID0 15K SAS, and I still do not see an improvement in build time. There seem to be other factors to take into consideration.
Oct
8
comment What are ways of improving build/compile time?
I'm just curious if this is simply due to writing them to a logfile that causes the slowdown, so if you have few warnings, or there is no bottleneck, it will not really matter?
Oct
8
comment What are ways of improving build/compile time?
True, but my question is more of how to improve performance in different compilers, environments, languages, etc.. I generally use Visual Studio, but sometimes msbuild, perl, etc..
Oct
8
asked What are ways of improving build/compile time?
Oct
8
comment How to draw directly on the Windows desktop, C#?
FYI for those who say you can't, this did work for me, although moving any window over it repaints it immediately :(
Oct
8
asked How to draw directly on the Windows desktop, C#?
Oct
7
asked How do I listen for a keyboard combination globally?
Oct
7
comment What Ticketing System Do You Recommend?
Agreed, tons of questions and answers about bug tracking, just look at the 'related' sidebar
Oct
7
awarded  
Oct
6
comment How to move a form while the mouse is being held down?
That worked great, just curious what it is doing?
Oct
6
revised How to move a form while the mouse is being held down?
added 501 characters in body
Oct
6
asked How to move a form while the mouse is being held down?
Oct
6
comment How do I create an extension method (F#)?
darn, that's what I wanted.
Oct
6
asked How do I create an extension method (F#)?
Oct
5
comment How do I write to a file immediately?
This method was the only one that worked 100% of the time, thanks.
Oct
5
asked How do I write to a file immediately?
Oct
4
comment How to stop Visual Studio adding using statements?
Thanks, the other options below are nice, but this was exactly what I wanted.
Oct
4
asked How to compile against .Net Framework 4.0 in Visual Studio 2008?
Oct
4
asked How to stop Visual Studio adding using statements?
Oct
2
comment AV while iterating through hash_map?
Marking this answer since it was closest to the problem. When the class was being created, it was being created as its base type rather than my class. So when it was running 'cleanup' I was casting the base type to MyClass which gave the iterator garbage.
Oct
2
comment Any bug tracking addin for Visual Studio?
I think this requires Tools->Connect to Server, and it is this 'server' portion that I don't have.
Oct
2
comment Any bug tracking addin for Visual Studio?
I do not use source control per se for my personal projects such as this. I keep my dev folder on Dropbox which gets file revisions, just not 'named' revisions like I would like.
Oct
2
comment Any bug tracking addin for Visual Studio?
Thanks, I think this is closest to what I want, if it supported SQL compact framework files so that the database is portable it would be near perfect.
Oct
2
revised Any bug tracking addin for Visual Studio?
added 225 characters in body