Quibblesome
|
Registered User
|
Autodidact and mostly a managed land moron that digs architecture and development.
I end up doing a lot of Compact Framework and WinMobile development, not exactly through choice but just as a result of what people around me are involved with. It's kinda fun in a masochistic fashion, certainly makes you think more about your code (power management and transactionality anyone?) I love debate as it helps us get closer to truth (or perhaps just a more in-depth description of lies), I may occasionally come across at somewhat mean online but this is only because you're unable to see the fact that i'm grinning in a playful fashion in reality. :) As an aside, I would rather users not edit my comments to remove swearing as it somewhat dilutes and blandifys the actual intent of my communication. I think the more reasonable scenario is for those who are offended to gouge out their own eyes with a rusty spoon. Email: uchihajax@gmail.com |
|
1d |
comment |
Drawing controls with GDI on Compact Framework Well you always make them visible but "off screen". Again not pretty.... |
|
1d |
answered | Drawing controls with GDI on Compact Framework |
|
1d |
comment |
Drawing controls with GDI on Compact Framework Eh? You want to get the image that is drawn by the control? You cannot get this, unless you implement the control yourself and expose it via a property. You could do this by drawing the control on a graphics object created by Graphics.FromImage() then expose that image via a property before finally drawing the control by using Graphics.DrawImage on the "main" graphics object in the event args. You would have to re-implement every single control this way though so it would be a lot of effort. |
|
2d |
answered | Drawing controls with GDI on Compact Framework |
|
Dec 12 |
comment |
Moving a picturebox with a timer Also doublecheck with your "main app" that you're not using Windows.Forms.Timers where you could be using System.Threading.Timers. A callback in a Windws.Forms.Timer will be using the UI thread, if it is touching controls this is neccessary if it is not though then it is wasting precious UI resources. |
|
Dec 11 |
awarded | ● Notable Question |
|
Dec 11 |
comment |
How much slower is a try/catch block? I made this mistake once when "perf testing" and idiotically leaving the debugger running. WOAW, it makes a HUGE difference. :D |
|
Dec 11 |
answered | How much slower is a try/catch block? |
|
Dec 10 |
comment |
C# try/catch nightmare I would put money on this person's fault being caused by this. |
|
Dec 10 |
answered | C# try/catch nightmare |
|
Dec 8 |
comment |
Error when asynchronously waiting for process to exit I know it's ugly but you could just call the sync version on a background thread so you don't lock your main thread up. |
|
Dec 8 |
comment |
Is there a good Semaphore for XNA on the XBox 360? Wait, do you get any PInvokes on XBox? Be a little unfair to give developers CF but not allow PInvokes. To be honest a PInvoke is typically part of any "CF" solution. |
|
Dec 8 |
accepted | Moving a picturebox with a timer |
|
Dec 7 |
comment |
.NET Compact Framework: define default size to a custom control. I should add that for the Compact Framework you might need to decorate this via an .xmta file. You can use this to access design time attributes that aren't compatible with CF and it also helps keep the size of the end .exe down. blogs.msdn.com/bluecollar/archive/… |
|
Dec 7 |
comment |
Moving a picturebox with a timer Well you really want to keep your threads to a minimum with GDI+ as it is a single threaded graphics library. |
|
Dec 7 |
accepted | How in C# to pass a name of the object as a parameter to function? |
|
Dec 7 |
comment |
How in C# to pass a name of the object as a parameter to function? This is WinForm code whereas the OP is talking about WPF. |
|
Dec 7 |
answered | How in C# to pass a name of the object as a parameter to function? |
|
Dec 7 |
comment |
Moving a picturebox with a timer Is there an errent Application.DoEvents() in your code? That would explain such a delay. If you're not using that then I wonder what could be causing the problem. Can you extract it into a small but complete example? |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 5 |
comment |
Are people with certain Myers Briggs personality types drawn to careers in programming/development? Same here.... seems we're quite rare as programmers.... |
|
Dec 5 |
accepted | .NET Compact Framework: Control over a Control OnMouseDown problem. |
|
Dec 4 |
answered | Moving a picturebox with a timer |
|
Dec 4 |
comment |
.NET Compact Framework: Control over a Control OnMouseDown problem. When you click a link then you get a mouse down, then a mouse up. The problem is that mouse down happens on control 2 (the click on the link). Control 2 THEN disappears and hands control BACK to control 1. Then mouse up event then occurs. This now falls through to control number 1. The way to avoid this is to make all "action/commit" events happen on either mouse up or mouse down. I prefer mouse up myself. Try re-writing the link to use MouseUp instead. You may have to write your own link control to do this, so try just using a button first and handle MouseUP (not click). |
|
Dec 4 |
comment |
C# List<Stream> dispose/close pwetty! +1. 15chars |
|
Dec 4 |
answered | .NET Compact Framework: Control over a Control OnMouseDown problem. |
|
Dec 4 |
comment |
MsTest - Speed improvements Yup, i'm blaming MsTest and it IS the Resharper plugin that is performing the rebuild. |
|
Dec 4 |
comment |
MsTest - Speed improvements Thanks for the answer! :) Well it appears to be spending about 1:30 doing something. Mebbe its because i'm using the Resharper plugin. I'd hate to go back to the test list, that's about as helpful as a local who doesn't speak any english and thinks the train station is five miles out to sea. I will check though :). |
|
Dec 4 |
asked | MsTest - Speed improvements |
|
Dec 4 |
answered | C# List<Stream> dispose/close |
|
Dec 4 |
comment |
Bring data came from async operation to main thread. This is horrible as if the library is created on a background thread it will stop working. However, this is exactly what I do in some of my libs (where it hangs if we call SetSystemPowerState to suspend if not on the main thread) so..... it's probably the best solution. :( |
|
Dec 4 |
revised |
How do you embed app.config in C# projects? grammar, innit. |
|
Dec 4 |
accepted | How do you embed app.config in C# projects? |
|
Dec 4 |
revised |
How do you embed app.config in C# projects? added 186 characters in body; added 118 characters in body |
|
Dec 4 |
comment |
How do you embed app.config in C# projects? k, let me re-jig my answer to more correctly address your q. |
|
Dec 4 |
comment |
How can I have both abstract and virtual methods in one class? No, that is the joy of it! :) |
|
Dec 4 |
comment |
How do you embed app.config in C# projects? @aaronls - you make a good point (hence +1) however it is worth questioning the intent as you may discover that the OP is just using the feature for the wrong purpose (as he appears to be doing here). He still deserves the -1 for calling the OP an idiot though, that's just mean. |
|
Dec 4 |
comment |
How do you embed app.config in C# projects? I'm not upset. I just want to know why you think it is unprofessional. This is probably key to why people (me included) are misunderstanding the reasoning behind your question. What kind of data are you storing inside your "config" file? |
|
Dec 4 |
answered | Measuring “real” phone signal strength on a mobile phone |
|
Dec 4 |
answered | How do you embed app.config in C# projects? |
|
Dec 4 |
comment |
Multiple inheritance in C# - again Composition is elegant and is a better alternative to multiple inheritance in a lot of cases. |
|
Dec 4 |
answered | Converting C# knowledge to VB.NET any potential problems? |
|
Dec 3 |
comment |
Loading polymorphics objects - need pattern Alex Reitbort - who me? Compact Framework doesn't support ISerializable. |
|
Dec 3 |
comment |
How would you make this switch statement as fast as possible? Heh, as I read somewhere else a little while ago: The 1 in O(1) may be a value that is higher than the total of O(n), depending on your n. |
|
Dec 3 |
comment |
Loading polymorphics objects - need pattern You can also write out the fully qualified type name and then load the type via reflection using GetType(string fullyQualifiedName). As ever, with these approaches you have to be careful when updating systems already in the field that have historical data. |
|
Dec 3 |
comment |
How not to implement a function of an interface in class? IMO InvalidOperationException is always "something is wrong" exception. Whereas NotSupported/Implemented are much more specific |
|
Dec 3 |
comment |
How can catched exception be null (not NullReferenceException)? Debugger sometimes lies. I remember there is something entertaining with constants and the debugger where they appear to be empty or null when they are not in reality. |
|
Dec 3 |
revised |
How can catched exception be null (not NullReferenceException)? added 6 characters in body; added 104 characters in body |
|
Dec 3 |
answered | How can catched exception be null (not NullReferenceException)? |
|
Dec 3 |
answered | highlight_string in C# |
