OregonGhost

8,106
Reputation
408 views

Registered User

Name OregonGhost
Member for 1 year
Seen yesterday
Website
Location Lübeck, Germany
Age 26
1d
comment Char * marshalling in C#
I don't know how it is with return values, but for parameters the following rule applies: Use string for const char*, use StringBuilder for char*. On the other hand, you are returning a pointer to a buffer that is a local variable. That does not sound like a good idea. This question may be your friend, however: stackoverflow.com/questions/370079/…
1d
comment WPF in kiosk mode - taskbar troubles
Do you know that there's a Kiosk version of Windows (I think it's XP Embedded or something)? Maybe that will suite your need :)
1d
comment How serious is your work enviroment and how can you alleviate this ?
While your advice may certainly help, I think you shouldn't have to do this outside work in a good environment. The company where I work makes even hard work feel like fun, just because everyone is friendly and even funny (funny in the real sense, not in the "I say some stupid phrases that never have been funny" way). This works especially well if under pressure from a customer project, because it removes pressure without sacrificing productivity.
2d
comment Reflection.Emit better than GetValue & SetValue :S
I guess he has some dynamically loaded objects and wants to access the property, and the question is about whether calling GetValue/SetValue or generating IL code to access the property "hard-coded" would be the better thing. I'd suggest trying with Reflection.Emit.DynamicMethod, and then just checking which one's faster. For me, GetValue/SetValue was sufficient, I just needed to generate IL code for handling events with signatures that are unknown at compile time :)
2d
revised Can I run out of virtual memory on linux?
deleted 12 characters in body
2d
revised Is there an elegant way to make/generate spaces instead of &nbsp?
added 2 characters in body
2d
comment Changing font in a Console window in .NET
Not in general, but colors can also be use to improve formatting (like PowerShell does, for example, with errors in red) :)
2d
comment Changing font in a Console window in .NET
@theraneman: Go read my answer. I don't know though how you can change the console properties programmatically (maybe via registry access), but the option I mentioned may be all you need anyway.
2d
comment Changing font in a Console window in .NET
Console.ForegroundColor changes the color of the following output, not of the entire console window. This is different from setting the default console color from the console properties page.
2d
comment Changing font in a Console window in .NET
This is only partially true. You can't change the font for single characters, but you can for the entire console.
2d
answered Changing font in a Console window in .NET
2d
comment c#: Check which project is calling class library
Isn't the executing assembly the one that contains the code that calls GetExecutingAssembly()? I.e. if you call it in your library assembly, you will get your library assembly - but there's still GetCallingAssembly, which is likely what you meant :)
2d
comment c#: Check which project is calling class library
While it's true that a good class library should be of general purpose, this is certainly not true if the class library is a part of the application and is not intended to be used elsewhere. On the other hand, even such a library should change behaviour only when given different parameters.
2d
answered c#: Check which project is calling class library
2d
comment c#: Check which project is calling class library
@Kobi: While I agree with you that Reflection may not be the answer to this problem, in general there are many problems that can be solved either only with Reflection, or with Reflection being easier. I have at least two applications here that rely on Reflection because there would be no other way. So I disagree with Reflection never being the right answer.
Nov
25
comment Wmi win32 classes on x64
Bonus point for your edit that adds why Win32 is still called Win32.
Nov
25
comment Generating .class file for JVM
Generating a .class file is what the compiler does. What's wrong with generating the code and compiling it? Or is something like Reflection.Emit or Dynamic IL generation in .NET what you want for Java?
Nov
25
revised How to smooth a histogram?
added 8 characters in body
Nov
25
comment How can I validate a field which is to be inserted into a float column in the database?
Or, no, it doesn't.
Nov
25
comment How can I validate a field which is to be inserted into a float column in the database?
It's urgent! This makes me want to answer your question faster, I can't resist...
Nov
25
comment .NET 3.5 Client Framework redistributable ?
Question: Why does it work? Shouldn't the full client profile be 39MB? :X
Nov
25
comment .NET 3.5 Client Framework redistributable ?
I just tried this on a VM with only .NET 2.0 installed. I just ran the 30 and 35 client package, and than ran an application that requires 3.5. It works, woohoo - 9/23 MB instead of 255 :D
Nov
24
comment Expression Blend Release mode
I experienced Release mode not being good enough for debugging, because too much is optimized away, so I work in Debug mode anyway. Is it too slow for you? If it's just about convenience, you may want to use a build system anyway :)
Nov
24
revised Which subdomains should I prevent from users selecting?
added 2 characters in body
Nov
24
answered Which subdomains should I prevent from users selecting?
Nov
24
comment Which subdomains should I prevent from users selecting?
xxx.company.com should probably not be allowed ;)
Nov
24
comment What does explorer use to open a file?
Just to be sure, you also checked ShellExecuteEx? :) Otherwise, just CreateProcess comes to mind...
Nov
24
comment Run EXE FROM CLIENT SIDE
Some time ago, the web installers from Windows Update and Windows SDK kind of did this. You had to install an ActiveX prior though. This is not feasible in a public environment, but may be in a closed environment, like a company-internal web site.
Nov
24
comment Turn Off Silverlight Plug-in Warning in Chrome
This may be obvious, but why not just use a browser without that problem for debugging? Firefox is fine in my experience for Silverlight 3, and you have to test a web app in all major browsers anyway :)
Nov
24
comment Can lambdas be used without Linq?
@jalf: As Jon Skeet already wrote, when targetting .NET 2.0, lambdas are available, but LINQ isn't. That's (in my opinion) the main reason.
Nov
24
answered .Net Application Hangs on Unpatched XP Machines
Nov
24
answered What is Moonlight technically?
Nov
24
comment XAML Editor hangs for 4-10 seconds driving me mad
Same here. Visual Studio is XAML, Blend is graphics :)
Nov
24
comment Can you program a pure GPU game?
Impressive it would be. However, because of the IO problems, I think that an emulator, Gameboy or not, would be a really great thing, because you could have a really generic CPU part and a really generic GPU part and yet it would run anything you want. That would be cool. Be sure to post a comment here when you have it in a runnable state ;)
Nov
24
comment Can you program a pure GPU game?
With persistant storage, I'm talking about saving data to disk. A GPU can't do that, unless it gets help from the CPU. However, if you meant retaining data during runtime, I think textures or something similar would be the way to go, but my point is that this would be crucial to any game development, so nwosh should go figure this one out before doing anything serious :)
Nov
24
answered Can you program a pure GPU game?
Nov
24
comment WinForms dialogs with TopMost = true
A note about showing the notification on the bottom right of the screen: I really hate when apps assume that the TNA is in the bottom right corner of the primary screen. My taskbar is on the left side of the primary screen (TNA bottom left) - showing the notification in the bottom left corner of the primary screen, or on the bottom right corner of the secondary screen would be the right thing to do, but most apps get it wrong. So, either make it like Outlook 2007 (make the notification window movable in preferences) or have some options. At least, consider the desktop area, not a screen.
Nov
23
comment Windows Forms Click event repeating itself
Thanks. With that additional information, your answer is the correct one (the "disable the button" bit, specifically).
Nov
23
comment What use does the *tag* attribute have in C#
Agree with quick and dirty. I think it's a legacy from Delphi (also designed by Anders Hejlsberg), and I use it myself (especially on TreeNodes or something), but it always feels like it's wrong :)
Nov
23
comment Windows Authintication in C#
That's true, Shoban. Unfortunately.
Nov
23
asked Windows Forms Click event repeating itself
Nov
23
revised Develop smart applications for Windows 7
added 139 characters in body
Nov
20
revised is it good to use Wait cursor in websites?
added 20 characters in body
Nov
20
answered What C++ tutorial would you recommend for an experienced programmer that has some patchy knowledge about the language?
Nov
20
answered Hey, Why nobody remembers who wrote Notepad?
Nov
20
answered Accessing Qt widget from different thread
Nov
20
revised Up-to-date XML-Documentation Builder for C#
added 3 characters in body; added 3 characters in body
Nov
20
answered Up-to-date XML-Documentation Builder for C#
Nov
18
answered Receive WM_COPYDATA messages in a Qt app
Nov
12
answered Good markup for writing technical design documentation