User Judah Himango - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T09:20:09Zhttp://stackoverflow.com/feeds/user/536http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1813746/should-i-put-custom-code-inside-microsofts-bcl-fcl-namespaces/1813770#18137701Answer by Judah Himango for Should I put custom code inside Microsoft's BCL/FCL namespaces?Judah Himango2009-11-28T21:00:20Z2009-11-28T21:00:20Z<p>I don't see this too much. Most companies put stuff in their own namespace, e.g. Initech.Windows.Forms.</p>
<p>Having your code inside the namespace of the .NET framework is allowed, but I don't see any good reason to, and it may confuse developers. I don't recommend this.</p>
http://stackoverflow.com/questions/945537/read-firefox-bookmarks-using-c2Read Firefox bookmarks using C#Judah Himango2009-06-03T15:54:40Z2009-11-28T16:08:08Z
<p>Using C#, I need to get all Firefox bookmarks for importing them into our database. How can I do this?</p>
<p>I'm aware of the SO question, <a href="http://stackoverflow.com/questions/81132/read-firefox-3-bookmarks">Read FF 3 bookmarks in Java</a>, but the answers there all seem to revolve around Java database drivers, and I'm not sure that some of those answers aren't Java-specific.</p>
<p><strong>My primary question is</strong>, "How can I read Firefox bookmarks in C#?" </p>
<p>Secondary questions: I see \%user profile%\application data\mozilla\firefox\profiles\bookmarkbackups\bookmarks-[date].json files -- can I just parse that? If so, are there any existing parsers for that? </p>
<p>Rhetorical lamenting question: Why can't this be as easy as IE, where I just read the .url files in \%user profile%\favorites? Bah.</p>
http://stackoverflow.com/questions/1809555/net-existence-chicken-and-eggs/1809583#18095834Answer by Judah Himango for .Net existence: chicken and eggs?Judah Himango2009-11-27T16:15:35Z2009-11-27T16:15:35Z<p>No, C# cannot check for the existence of .NET. It's like asking if you can write a program to check if the computer is turned on.</p>
<p>You'd need to write native code to check this, or more preferably, an installer that checks this.</p>
http://stackoverflow.com/questions/1770643/is-there-a-difference-between-serializable-and-serializable-in-c/1770674#177067414Answer by Judah Himango for is there a difference between [Serializable] and [Serializable()] in c#?Judah Himango2009-11-20T14:11:29Z2009-11-20T14:11:29Z<p>Nope, no functional difference.</p>
<p>Why the 2 different styles, you ask? The first notation is allowed for brevity. The 2nd notation is allowed because some attributes take parameters:</p>
<pre><code>[Category("Foobar related methods.")]
public void Foo()
{
}
</code></pre>
<p>Also note that [Serializable] is really just short-hand for [SerializableAttribute()] - C# lets you omit the Attribute suffix as well as the empty constructor parens.</p>
http://stackoverflow.com/questions/1742218/how-to-make-entire-window-aero-glass-in-java/1742416#17424162Answer by Judah Himango for How to make entire window aero glass in Java?Judah Himango2009-11-16T14:14:05Z2009-11-16T16:21:44Z<p>Assuming Java SWT and friends do not have built-in support for Windows Aero technology, you're going to have to call a native API via JNI. The native API you'll need to call is </p>
<pre><code>DwmExtendFrameIntoClientArea(int windowHandle, MARGINS margins);
</code></pre>
<p>This native API is found in the DWMAPI.dll native library in Windows Vista and Windows 7, and is <a href="http://msdn.microsoft.com/en-us/library/aa969512%28VS.85%29.aspx" rel="nofollow">documented on MSDN</a>.</p>
<p>There's lot of documentation on the web about how to call this function. For example, here's an article on <a href="http://www.codeproject.com/KB/vista/AeroGlassForms.aspx" rel="nofollow">doing this in C#</a>. That should get you started.</p>
http://stackoverflow.com/questions/1726665/why-does-net-read-values-of-unaffected-properties-on-reception-of-inotifypropert/1726726#17267262Answer by Judah Himango for Why does .NET read values of unaffected properties on reception of INotifyPropertyChanged.PropertyChanged event?Judah Himango2009-11-13T02:19:11Z2009-11-13T02:19:11Z<p>It may be a naive consumer of observable objects. Naive consumers of INotifyPropertyChangedObjects may ignore the property name and just reevaluate the whole thing. One might imagine the class looking like:</p>
<pre><code>class NaiveConsumer
{
void Foo(INotifyPropertyChanged observable)
{
observable.PropertyChanged += PropertyChangedHandler;
}
void PropertyChangedHandler(object sender, PropertyChangedEventArgs e)
{
// Evaluate all properties, even though only 1 prop changed.
this.NameTextBox.Text = observable.Name;
this.AgeTextBox.Text = observable.Age;
}
}
</code></pre>
http://stackoverflow.com/questions/1689089/db4o-query-find-all-objects-with-id-anything-in-array2Db4o query: find all objects with ID = {anything in array}Judah Himango2009-11-06T17:29:05Z2009-11-12T22:24:12Z
<p>I've stored 30,000 SimpleObjects in my database:</p>
<pre><code>class SimpleObject
{
public int Id { get; set; }
}
</code></pre>
<p>I want to run a query on DB4O that finds all SimpleObjects with any of the specified IDs:</p>
<pre><code>public IEnumerable<SimpleObject> GetMatches(int[] matchingIds)
{
// OH NOOOOOOES! This activates all 30,000 SimpleObjects. TOO SLOW!
var query = from SimpleObject simple in db
join id in matchingIds on simple.Id equals id
select simple;
return query.ToArray();
}
</code></pre>
<p>How do I write this query so that DB4O doesn't activate all 30,000 objects?</p>
http://stackoverflow.com/questions/1654304/is-visual-studio-2010-beta-2-usable/1719882#17198821Answer by Judah Himango for Is Visual Studio 2010 Beta 2 usable?Judah Himango2009-11-12T04:29:44Z2009-11-12T04:29:44Z<p>I found it usable. The WPF designer was unstable, crashing as I typed in XAML. Outside of that, I haven't had any negative experiences, which is much more than I can say for Beta 1.</p>
http://stackoverflow.com/questions/1713313/winform-textbox-cangrow/1713319#17133190Answer by Judah Himango for Winform Textbox CanGrow ? Judah Himango2009-11-11T05:52:02Z2009-11-11T05:52:02Z<p>I'm not familiar with CanGrow. Are you looking for Anchor property perhaps?</p>
http://stackoverflow.com/questions/1701126/error-provider-in-wpf/1701172#17011721Answer by Judah Himango for Error Provider in WPFJudah Himango2009-11-09T14:07:00Z2009-11-09T14:07:00Z<p>.NET 3.5 added WPF support for IDataErrorInfo: <a href="http://blogs.msdn.com/wpfsdk/archive/2007/10/02/data-validation-in-3-5.aspx" rel="nofollow">Data validation in .NET 3.5</a>.</p>
http://stackoverflow.com/questions/1694451/cannot-use-pinvoke-to-send-wmclose-to-a-windows-explorer-window/1694577#16945770Answer by Judah Himango for Cannot use pinvoke to send WM_CLOSE to a Windows Explorer windowJudah Himango2009-11-07T21:59:48Z2009-11-07T21:59:48Z<p>One way to close explorer is to find the explorer.exe process via Process.GetProcesses(), then calling Kill() on the process. However, I suspect Windows has some built-in mechanism to restart explorer if it is killed.</p>
<p>A better question might be, why do you need to close explorer?</p>
http://stackoverflow.com/questions/1651213/strategy-for-syncing-data-with-mobile-phones1Strategy for syncing data with mobile phones?Judah Himango2009-10-30T17:25:24Z2009-10-31T16:27:36Z
<p>We built a .NET server application that hosts data (contacts, email, etc.). <strong>We'd like to sync our data to mobile devices</strong>: iPhone, Windows Mobile, Blackberry, etc.</p>
<p>How should we go about doing this?</p>
<ul>
<li><p>Build several mobile apps, one for each platform (e.g. app for iPhone, app for Blackberry, etc.), each app syncs with our server.</p></li>
<li><p>License Microsoft Exchange protocol technology from Microsoft, so that our server application pretends to be an Exchange server, thus making syncing work automatically on all the different platforms (As we understand it, iPhone, Windows Mobile, Blackberry, etc. all have built-in syncing capability with Microsoft Exchange).</p></li>
</ul>
<p>Are there other options to consider?</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1643870/unit-testing-a-windows-scheduled-task-console-app/1644044#16440440Answer by Judah Himango for Unit Testing a Windows Scheduled Task Console AppJudah Himango2009-10-29T14:15:13Z2009-10-29T14:20:17Z<p>I'm not sure why Main wouldn't be visible from your tests, unless VB.NET does some behind-the-curtains stuff to hide it.</p>
<p>In any case, why not move your code into its own class(es)? Then you can run unit tests against each class at a time, rather than executing the whole thing at once.</p>
<p>Unit tests usually execute against individual classes, rather than executing the Main entry point of an app.</p>
http://stackoverflow.com/questions/97459/automatically-select-all-text-on-focus-in-winforms-textbox9Automatically select all text on focus in WinForms TextBoxJudah Himango2008-09-18T22:02:18Z2009-10-26T15:19:32Z
<p>When a C# WinForms text box receives focus, I want to select all the text in the textbox.</p>
<p>To see what I mean, click in your web browser's address bar. See how all text was selected? I want to do that.</p>
<p><strong>FASTEST GUN ALERT: please read the following before answering!</strong> Thanks guys. :-)</p>
<blockquote>
<p>Calling <strong>.SelectAll() during
the .Enter or .GotFocus events won't
work</strong> because if the user clicked the
textbox, the caret will be placed
where he clicked, thus deselecting all
text.</p>
<p>Also, <strong>calling .SelectAll() during the .Click event won't work</strong> because the user won't be able to select any text with the mouse; the .SelectAll() call will keep overwriting the user's text selection.
)</p>
</blockquote>
http://stackoverflow.com/questions/1619505/wpf-openfiledialog-with-the-mvvm-pattern2WPF OpenFileDialog with the MVVM pattern?Judah Himango2009-10-24T23:36:35Z2009-10-26T08:39:24Z
<p>I just started learning the MVVM pattern for WPF. I hit a wall: <strong>what do you do when you need to show an OpenFileDialog</strong>?</p>
<p>Here's an example UI I'm trying to use it on:</p>
<p><img src="http://www.freeimagehosting.net/uploads/0910bd9d61.png" alt="alt text" /></p>
<p>When the browse button is clicked, an OpenFileDialog should be shown. When the user selects a file from the OpenFileDialog, the file path should be displayed in the textbox.</p>
<p>How can I do this with MVVM?</p>
<p><strong>Update</strong>: How can I do this with MVVM and make it unit test-able? The solution below doesn't work for unit testing.</p>
http://stackoverflow.com/questions/1622573/windows-media-player-device-sync-in-vb-net-using-wmplib/1622869#16228690Answer by Judah Himango for Windows Media Player Device Sync in VB.NET using WMPLIBJudah Himango2009-10-26T02:43:29Z2009-10-26T02:43:29Z<p>I don't know of any existing wrapper. Maybe others can help out with that. </p>
<p>Have you tried C++/CLI? You can write a simple C++/CLI project that can interop with C/C++, but its functions are visible from other .NET languages, just like C# or VB.NET. We've had a lot of success wrapping C++ code using C++/CLI, I recommend it.</p>
http://stackoverflow.com/questions/1303905/java-swt-interop-with-com-putting-a-float-into-a-variant5Java SWT interop with COM - putting a float[] into a Variant?Judah Himango2009-08-20T04:09:02Z2009-10-24T21:21:13Z
<p>In my Java SWT application I'm hosting an 3rd party ActiveX control. I'm using OleClientSite to do this.</p>
<pre><code>// Ah, this works. :-)
OleAutomation comObject = new OleAutomation(...);
</code></pre>
<p>There are 2 easy little functions I want to call from Java. Here are the COM function definitions:</p>
<pre><code>[id(5)]
void easyFoo([in] int blah);
[id(20)]
void problemFoo([in] VARIANT floatArray);
</code></pre>
<p>Easy, right? Here's my pretend code:</p>
<pre><code>// Ah, this works. :-)
OleAutomation comObject = new OleAutomation("Some3rdPartyControlHere");
// Call easyFoo(42). This works. :-)
int easyFooId = 5;
comObject.invoke(easyFooId, new Variant[] { new Variant(42) });
// Call problemFoo(new float[] { 4.2, 7.0 }). This doesn't work. :-(
int problemFooId = 20;
comObject.invoke(problemFooId, [ACK! What goes here?]);
</code></pre>
<p>The problem is on the last line: <strong>how do I pass a float array to the 3rd party COM object?</strong> HELP!</p>
http://stackoverflow.com/questions/1618670/winforms-why-arent-my-exceptions-caught/1618719#16187191Answer by Judah Himango for WinForms - why aren't my exceptions caught?Judah Himango2009-10-24T18:37:56Z2009-10-24T18:55:30Z<p>To answer your question, we need more information about the error that was thrown. Does it originate from your code? Let's see the stack trace.</p>
<p>Also, if you call Application.Run(...) before setting up the ThreadException, it won't catch any exceptions.</p>
http://stackoverflow.com/questions/1618302/is-there-a-net-wrapper-for-firefox-or-chrome-to-crawl-webpages/1618326#16183260Answer by Judah Himango for Is there a .Net wrapper for Firefox or Chrome to crawl webpages?Judah Himango2009-10-24T15:45:36Z2009-10-24T15:45:36Z<p>The Mono project has a .NET webbrowser that allows you to use either the Gecko (Firefox) or Webkit (Chrome, Safari) rendering engines under the hood, exposing either as a clean, well-designed .NET API. See <a href="http://www.mono-project.com/WebBrowser" rel="nofollow">Mono.WebBrowser</a>.</p>
http://stackoverflow.com/questions/19353/detecting-audio-silence-in-wav-files-using-c5Detecting audio silence in WAV files using C#Judah Himango2008-08-21T04:56:33Z2009-10-22T12:55:43Z
<p>I'm tasked with building a .NET client app to detect silence in a WAV files.</p>
<p>Is this possible with the built-in Windows APIs? Or alternately, any good libraries out there to help with this?</p>
http://stackoverflow.com/questions/1072952/recording-interaction-on-an-inflection-point-using-mocking-framework-moq/1589099#15890990Answer by Judah Himango for Recording interaction on an inflection point using mocking framework. MoqJudah Himango2009-10-19T14:46:09Z2009-10-19T14:46:09Z<p>Mock frameworks weren't designed for this problem. I don't see how you can make this work with either Moq or RhinoMocks. Even the powerful TypeMock may not be able to do what you're asking. Mock frameworks weren't built for this.</p>
<p>Instead, use an aspect-oriented programming (AOP) tool to weave pre- and post- method invocation calls. This will do exactly what you want: see all interactions for a particular type. For example, in the <a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a> AOP framework, you simply specify methods you'd like called before and after a method call on some other object:</p>
<pre><code>public class Component2TracerAttribute : OnMethodBoundaryAspect
{
public override void OnEntry( MethodExecutionEventArgs eventArgs)
{
if (eventArgs.Method == somethingOnComponent2) // Pseudo-code
{
Trace.TraceInformation("Entering {0}.", eventArgs.Method);
}
}
public override void OnExit(MethodExecutionEventArgs eventArgs)
{
if (eventArgs.Method == somethingOnComponent2) // Pseudo-code
{
Trace.TraceInformation("Leaving {0}.", eventArgs.Method);
}
}
}
</code></pre>
<p>That will log all the methods that are called on component 2.</p>
http://stackoverflow.com/questions/1072952/recording-interaction-on-an-inflection-point-using-mocking-framework-moq/1584102#15841020Answer by Judah Himango for Recording interaction on an inflection point using mocking framework. MoqJudah Himango2009-10-18T05:35:02Z2009-10-18T05:35:02Z<p>Yes, this is possible. If you use a strict mock and run a unit test that exercises the mock, the test will fail, telling you which unexpected method was called. </p>
<p>Is this what you're looking for?</p>
http://stackoverflow.com/questions/775529/how-to-debug-nhibernate-rhinomocks-typeinitializer-exception/820365#8203650Answer by Judah Himango for How to debug nHibernate/RhinoMocks TypeInitializer exceptionJudah Himango2009-05-04T14:35:47Z2009-10-18T05:29:13Z<p>Errors like this usually indicate versioning issues.</p>
<p>What I suspect may be happening is that both RhinoMocks and NHibernate are making use of Castle.DynamicProxy type, but they are asking for different versions of that type.</p>
<p>Did you recently uprade RhinoMocks or NHibernate to a newer version?</p>
<p>If this isn't the issue, then more information would be helpful - do all tests fail, or just this particular one?</p>
<p><em>edit</em> You may also wish to try adding these lines to your Properties\AssemblyInfo.cs file:</p>
<pre><code>[assembly: InternalsVisibleTo("Rhino.Mocks")]
[assembly: InternalsVisibleTo("Castle.DynamicProxy")]
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
</code></pre>
http://stackoverflow.com/questions/1506649/passing-func-from-method-parameter-into-a-linq-method-generic-types/1506705#15067050Answer by Judah Himango for Passing func from method parameter into a LINQ method (generic types)Judah Himango2009-10-01T21:48:57Z2009-10-01T21:48:57Z<blockquote>
<p>In LINQ, which method (from
IEnumerable) will let me pass in a
Func from the method parameter to the
LINQ query?</p>
</blockquote>
<p>That question is a little fuzzy to me. If you're looking for a filter algorithm that returns only the matches specified by the Func, use the .Where method:</p>
<pre><code>public void Method (Func<string, bool> func)
{
return find.GetAllByTagName<T>().Where(func);
}
</code></pre>
<p>Does that answer your question? If not, please clarify what you're trying to do.</p>
http://stackoverflow.com/questions/1485307/java-midi-getting-data-from-piano0Java MIDI - getting data from piano?Judah Himango2009-09-28T03:39:49Z2009-09-28T03:54:03Z
<p>I've inherited a Java project that used <a href="http://www.softsynth.com/javamidi/" rel="nofollow">an old C++ dll to receive MIDI data</a> from a piano connected to the computer.</p>
<p>Now that Java has built-in support for MIDI devices, I want to get rid of the legacy C++ dll and just use pure Java. <strong>Does Java support receiving data from a piano connected to the computer?</strong> I've searched Google for examples to no avail.</p>
http://stackoverflow.com/questions/1419333/j-to-java-how-to-migrate-from-rni-to-jni2J++ to Java: how to migrate from RNI to JNI?Judah Himango2009-09-14T01:32:24Z2009-09-21T00:17:23Z
<p>I've inherited a legacy J++ project. I've upgraded this project to standard Sun Java successfully.</p>
<p>However, this project includes a native C++ dll which the Java code talks to via the Microsoft-specific <a href="http://en.wikipedia.org/wiki/Java%5FNative%5FInterface#Microsoft.27s%5FRNI" rel="nofollow">RNI framework</a>.</p>
<p>Needless to say, calling System.loadLibrary("myRniNativeDll") now throws a UnsatisifiedLinkError, saying one of the dependencies couldn't be found.</p>
<p>I'm totally clueless how to migrate a C++ RNI dll to a JNI dll; I've no idea where to begin. I have the C++ source code, but I don't know how to build a JNI dll. <strong>Are there any tips/tutorials/online materials you Java experts can point me to?</strong></p>
http://stackoverflow.com/questions/1242722/java-unsatisfiedlinkerror-when-mixing-awt-and-swt0Java UnsatisfiedLinkError when mixing AWT and SWT?Judah Himango2009-08-07T03:22:17Z2009-09-20T09:20:35Z
<p>I'm an Eclipse newbie and I'm trying to build a mixed AWT/SWT application. Here's my code:</p>
<pre><code>public class HelloWorldSWT {
public static void main(String[] args) {
Frame frame = new Frame("My AWT Frame"); // java.awt.Frame
frame.setLayout( new BorderLayout() );
Canvas canvas = new Canvas(); // java.awt.Canvas
frame.add(canvas, BorderLayout.CENTER);
frame.setVisible(true);
Display display = new Display(); // display object to manage SWT lifecycle.
Shell swtShell = SWT_AWT.new_Shell(display, canvas);
Button m_button = new Button(swtShell, SWT.PUSH);
m_button.setText( "button" );
// invoke the AWT frame rendering by making the frame visible
// This starts the EDT
frame.setVisible(true);
// standard SWT dispatch loop
while(!swtShell.isDisposed())
{
if(!display.readAndDispatch())
display.sleep();
}
swtShell.dispose();
}
}
</code></pre>
<p>This compiles fine, but when I run it as application in Eclipse, I get the following error:</p>
<blockquote>
<p>Exception in thread "main"
java.lang.UnsatisfiedLinkError:
sun.awt.SunToolkit.getAppContext(Ljava/lang/Object;)Lsun/awt/AppContext;
at
sun.awt.SunToolkit.getAppContext(Native
Method) at
sun.awt.SunToolkit.targetToAppContext(Unknown
Source) at
sun.awt.windows.WComponentPeer.postEvent(Unknown
Source) at
sun.awt.windows.WComponentPeer.postPaintIfNecessary(Unknown
Source) at
sun.awt.windows.WComponentPeer.handlePaint(Unknown
Source) at
sun.java2d.d3d.D3DScreenUpdateManager.repaintPeerTarget(Unknown
Source) at
sun.java2d.d3d.D3DScreenUpdateManager.createScreenSurface(Unknown
Source) at
sun.awt.windows.WComponentPeer.replaceSurfaceData(Unknown
Source) at
sun.awt.windows.WComponentPeer.replaceSurfaceData(Unknown
Source) at
sun.awt.windows.WComponentPeer.setBounds(Unknown
Source) at
sun.awt.windows.WWindowPeer.setBounds(Unknown
Source) at
sun.awt.windows.WComponentPeer.initialize(Unknown
Source) at
sun.awt.windows.WCanvasPeer.initialize(Unknown
Source) at
sun.awt.windows.WPanelPeer.initialize(Unknown
Source) at
sun.awt.windows.WWindowPeer.initialize(Unknown
Source) at
sun.awt.windows.WFramePeer.initialize(Unknown
Source) at
sun.awt.windows.WComponentPeer.(Unknown
Source) at
sun.awt.windows.WCanvasPeer.(Unknown
Source) at
sun.awt.windows.WPanelPeer.(Unknown
Source) at
sun.awt.windows.WWindowPeer.(Unknown
Source) at
sun.awt.windows.WFramePeer.(Unknown
Source) at
sun.awt.windows.WToolkit.createFrame(Unknown
Source) at
java.awt.Frame.addNotify(Unknown
Source) at
java.awt.Window.show(Unknown Source)
at java.awt.Component.show(Unknown
Source) at
java.awt.Component.setVisible(Unknown
Source) at
java.awt.Window.setVisible(Unknown
Source) at
HelloWorldSWT.main(HelloWorldSWT.java:20)</p>
</blockquote>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1445117/is-the-class-nativemethods-handled-specially-in-net/1445130#14451300Answer by Judah Himango for Is the class NativeMethods handled specially in .NET?Judah Himango2009-09-18T15:04:15Z2009-09-18T15:04:15Z<p>They aren't handled specially by the CLR. It's simply recommended practice to have your P/Invokes inside a class named NativeMethods, SafeNativeMethods, or UnsafeNativeMethods.</p>
<p>You'll see this recommendation come into play if you run FxCop on your assemblies.</p>
http://stackoverflow.com/questions/1436262/what-is-an-easy-deployment-approach-for-windows-form-app-that-facilitates-online/1436334#14363343Answer by Judah Himango for What is an easy deployment approach for Windows Form app that facilitates online updates and entry into StartUpMenu?Judah Himango2009-09-17T01:37:05Z2009-09-17T01:54:21Z<p>ClickOnce apps can (and automatically are) placed in the start menu. You can optionally have a shortcut placed to them on the desktop as well.</p>
<p>ClickOnce apps cannot be installed in the "system <strong>start up</strong>" folder; that is, cause them to start when Windows starts. Don't confuse the "start up" folder with the Start Menu.</p>
<p>If you're just starting out with .NET, I'd recommend ClickOnce. It saves lots of installation headaches and automates everything from updates, to start menu shortcuts, to desktop shortcuts, to file associations. It's a decent technology. The deployment couldn't be simpler. In Visual Studio, just click Build->Deploy, specify where you want to deploy to (FTP, network share, etc.) and you're all set.</p>
http://stackoverflow.com/questions/1397132/java-applet-as-stand-alone-windows-application0Java applet as stand-alone Windows application?Judah Himango2009-09-09T01:20:11Z2009-09-09T13:03:19Z
<p>I have a Java applet that is meant to run only on Windows. (It uses a 3rd party COM object; it is not cross-platform.)</p>
<p>Is there a way to run a Java applet as a stand-alone application on Windows?</p>
http://stackoverflow.com/questions/1813676/how-can-i-write-an-exif-header-without-recompressing-the-jpg-in-netComment by Judah Himango on How can I write an EXIF header without recompressing the JPG, in .Net?Judah Himango2009-11-28T22:38:01Z2009-11-28T22:38:01ZClosing as exact duplicate of <a href="http://stackoverflow.com/questions/1038206/net-c-library-for-lossless-exif-rewriting" rel="nofollow" title="net c library for lossless exif rewriting">stackoverflow.com/questions/1038206/…</a>http://stackoverflow.com/questions/1008040/cant-instantiate-com-component-in-c-error-80070002Comment by Judah Himango on Can't instantiate COM component in C# - error 80070002Judah Himango2009-11-25T21:39:28Z2009-11-25T21:39:28ZIf I recall right, I searched the registry for the ID, then looked up the object in OleView. From there, I started to realize it was pointing to a preview handler for an old Windows Media Player format we had been using. Deleting that component from the registry fixed the issue.http://stackoverflow.com/questions/1008040/cant-instantiate-com-component-in-c-error-80070002Comment by Judah Himango on Can't instantiate COM component in C# - error 80070002Judah Himango2009-11-24T16:05:18Z2009-11-24T16:05:18ZThe problem turned out to be something really specific to our company. Basically, our software had installed a Windows Media preview handler that later was uninstalled, but left some registry keys in place. This preview handler was gone - hence File Not Found error - but some registry keys were left, causing this issue.http://stackoverflow.com/questions/1044460/unhandled-exceptions-in-backgroundworker/1044610#1044610Comment by Judah Himango on Unhandled exceptions in BackgroundWorkerJudah Himango2009-11-18T16:44:09Z2009-11-18T16:44:09Z@Ibrar, are you always checking for e.Error inside your RunWorkerCompleted event handler? Make sure you check that before you do anything. All catchable exceptions will be reported there.http://stackoverflow.com/questions/1742218/how-to-make-entire-window-aero-glass-in-java/1742416#1742416Comment by Judah Himango on How to make entire window aero glass in Java?Judah Himango2009-11-17T04:38:17Z2009-11-17T04:38:17ZIt should be noted that SWT has some internal APIs for calling DwmExtendFrameIntoClientArea. That might be a starting point for figuring this out.http://stackoverflow.com/questions/1737072/whats-wrong-with-this-programComment by Judah Himango on What's wrong with this program?Judah Himango2009-11-15T16:12:10Z2009-11-15T16:12:10ZThis sounds suspiciously like a homework question. If it is homework, we can help you, but you should be the one to actually solve it.http://stackoverflow.com/questions/1689089/db4o-query-find-all-objects-with-id-anything-in-array/1691265#1691265Comment by Judah Himango on Db4o query: find all objects with ID = {anything in array}Judah Himango2009-11-07T18:30:51Z2009-11-07T18:30:51ZId property is indexed, yeah. I'll try turning on diagnostics. Thanks for the help.http://stackoverflow.com/questions/1116720/how-to-read-a-singly-linked-list-backwards/1155084#1155084Comment by Judah Himango on How to read a singly linked list backwards? Judah Himango2009-11-04T23:22:34Z2009-11-04T23:22:34ZReverse is lazily-loaded, executed when the items are requested. It's not the same as the OP.http://stackoverflow.com/questions/1619505/wpf-openfiledialog-with-the-mvvm-patternComment by Judah Himango on WPF OpenFileDialog with the MVVM pattern?Judah Himango2009-11-02T16:16:45Z2009-11-02T16:16:45ZI've voted to close this question, as it is an exact duplicate.http://stackoverflow.com/questions/1619505/wpf-openfiledialog-with-the-mvvm-patternComment by Judah Himango on WPF OpenFileDialog with the MVVM pattern?Judah Himango2009-11-02T16:16:07Z2009-11-02T16:16:07ZSure is. :-) I did some searches on SO before posting this question, it didn't come up. Oh well.http://stackoverflow.com/questions/1643870/unit-testing-a-windows-scheduled-task-console-app/1644044#1644044Comment by Judah Himango on Unit Testing a Windows Scheduled Task Console AppJudah Himango2009-10-30T02:19:45Z2009-10-30T02:19:45ZCool. Since this led you in the right direction, are you going to mark this as the answer? (Or at least give me an upvote?) Appreciate it!http://stackoverflow.com/questions/97459/automatically-select-all-text-on-focus-in-winforms-textbox/1625439#1625439Comment by Judah Himango on Automatically select all text on focus in WinForms TextBoxJudah Himango2009-10-27T01:23:03Z2009-10-27T01:23:03ZYeah, see the other answers (and comments) for why this doesn't work in all scenarios.http://stackoverflow.com/questions/1619505/wpf-openfiledialog-with-the-mvvm-pattern/1622980#1622980Comment by Judah Himango on WPF OpenFileDialog with the MVVM pattern?Judah Himango2009-10-26T05:19:37Z2009-10-26T05:19:37ZThis makes sense to me: have some service that does dialogs like this and use that service via an interface in the ViewModel. Excellent, thank you. (p.s. I'll be testing with RhinoMocks, FYI, but I can figure that part out no problem.)http://stackoverflow.com/questions/1619505/wpf-openfiledialog-with-the-mvvm-pattern/1619673#1619673Comment by Judah Himango on WPF OpenFileDialog with the MVVM pattern?Judah Himango2009-10-26T00:09:25Z2009-10-26T00:09:25ZI should rephrase: how can I make this unit-testable? Your solution would pop up a dialog when running the unit tests.http://stackoverflow.com/questions/1303905/java-swt-interop-with-com-putting-a-float-into-a-variant/1619169#1619169Comment by Judah Himango on Java SWT interop with COM - putting a float[] into a Variant?Judah Himango2009-10-24T22:48:00Z2009-10-24T22:48:00ZThanks for the answer. I've seen the "reading and writing to safe array" in Java article that you link to. I've adapted that code to work for floats, and it appears to work. I'll post the results shortly.