User ageektrapped - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T03:12:00Zhttp://stackoverflow.com/feeds/user/631http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1668585/referencing-code-in-appcode-from-web-config0Referencing code in App_Code from web.configageektrapped2009-11-03T16:45:29Z2009-11-05T19:59:33Z
<p>I have a type in my App_Code folder from a Web Site project that I want to refer to in Web.config. The type attribute is requiring me to put in an assembly name. The internets is failing me with what to put in for the assembly. </p>
<p>Specifically in, </p>
<pre><code><system.web>
<webServices>
<soapExtensionReflectorTypes>
<add type="MyType, $App_Code$" />
</soapExtensionReflectorTypes>
</webServices>
</system.web>
</code></pre>
<p>What do I put in $App_Code$ to make it compile? I've tried _ _ code, App _code, App _Code (Markdown is failing here: those type names don't have spaces in them)</p>
http://stackoverflow.com/questions/1668585/referencing-code-in-appcode-from-web-config/1683148#16831480Answer by ageektrapped for Referencing code in App_Code from web.configageektrapped2009-11-05T19:59:33Z2009-11-05T19:59:33Z<p>OK, I found the answer on some obscure MSDN forum: you can't do that in a Web Site project for system.web/webservices/soapExtensionReflectorTypes. Only a Web Application Project will suffice.</p>
http://stackoverflow.com/questions/907134/how-do-i-set-a-listviewsubitem-backcolor-in-windows-mobile0How do I set a ListViewSubItem BackColor in Windows Mobile?ageektrapped2009-05-25T15:22:01Z2009-09-29T09:47:09Z
<p>I'd like to change the BackgroundColor of a ListViewSubItem in a ListView in Windows Mobile. I'm using the Compact Framework ListView, whose ListViewItems only allow setting the BackColor on the entire row, which I don't want.</p>
<p>I have two questions: </p>
<ol>
<li>Is this possible?</li>
<li>If this is possible, I <em>know</em> I have to P/Invoke to get this to work (because ListView.ListViewSubItem only offers a Text property), or send the right Windows message. What's the right function to call, or the right message to send?</li>
</ol>
<p>Even just a pointer in the right direction would be appreciated.</p>
http://stackoverflow.com/questions/1132854/managing-xml-files-in-a-visual-studio-project-2-instances/1132870#11328702Answer by ageektrapped for Managing XML files in a Visual Studio project (2 instances)ageektrapped2009-07-15T17:45:38Z2009-07-15T17:45:38Z<p>On the properties pane when you have the file selected, choose "Always copy" (or whatever it is) for the Copy to Output Directory setting.</p>
http://stackoverflow.com/questions/1119255/windows-mobile-cab-setup-to-detect-net-cf-3-5-and-install-it/1119304#11193041Answer by ageektrapped for Windows Mobile Cab Setup to detect .NET CF 3.5 and Install Itageektrapped2009-07-13T13:00:10Z2009-07-13T13:00:10Z<p>In WM 6, I believe (it could have been WM 5), they disallowed running a cab from within another cab. The only way to do it all in one go is through an MSI from the desktop. There are MSDN samples on how to get that started.</p>
<p>What I do in my app is detect the .NET CF version in my cab. If they don't have the right one, I fail the install and tell the user to install from the desktop. It's not the greatest solution, but MS doesn't really give us a choice.</p>
http://stackoverflow.com/questions/1094374/form-visible-must-be-true-to-read-left-and-top/1094403#10944030Answer by ageektrapped for Form.visible must be true to read .left and .top?ageektrapped2009-07-07T19:43:09Z2009-07-07T19:43:09Z<p>What about saving the form location when the form is closed by the user, rather than when the application closes?</p>
http://stackoverflow.com/questions/1082055/write-wpf-output-to-image-file/1082079#10820794Answer by ageektrapped for Write WPF output to image file.ageektrapped2009-07-04T12:03:15Z2009-07-07T17:44:35Z<p>I have a blog post all about this <a href="http://www.ageektrapped.com/blog/how-to-save-xaml-as-an-image/" rel="nofollow">here</a>. Here's the code from the article:</p>
<pre><code> Rect rect = new Rect(canvas.RenderSize);
RenderTargetBitmap rtb = new RenderTargetBitmap((int)rect.Right,
(int)rect.Bottom, 96d, 96d, System.Windows.Media.PixelFormats.Default);
rtb.Render(canvas);
//encode as PNG
BitmapEncoder pngEncoder = new PngBitmapEncoder();
pngEncoder.Frames.Add(BitmapFrame.Create(rtb));
//save to memory stream
System.IO.MemoryStream ms = new System.IO.MemoryStream();
pngEncoder.Save(ms);
ms.Close();
System.IO.File.WriteAllBytes("logo.png", ms.ToArray());
Console.WriteLine("Done");
</code></pre>
http://stackoverflow.com/questions/683782/is-there-a-way-to-detect-type-of-keyboard-on-window-mobile1Is there a way to detect type of keyboard on Window Mobile?ageektrapped2009-03-25T22:30:39Z2009-06-22T08:24:14Z
<p>I would like to be able to detect which type of keyboard a WM phone has, either 12-key or QWERTY to dynamically change the UI of my application.</p>
<p>Is there a way to detect this reliably?</p>
<p>Managed code solutions preferred.</p>
http://stackoverflow.com/questions/1010053/c-eventhandler-beautiful-code-how-to/1010155#10101551Answer by ageektrapped for C# EventHandler Beautiful Code (How To?)ageektrapped2009-06-18T00:19:12Z2009-06-18T00:19:12Z<p>Since you're using known events from the .NET framework (as opposed to a third party) and from the code it looks like you're only using those methods for specific classes (i.e. ListBoxItems and ListBoxes), there are a few things you <em>know</em> to be true:</p>
<ul>
<li><code>sender</code> will never be null</li>
<li><code>sender</code> will always be a ListBoxItem, or ListBox, respectively</li>
</ul>
<p>So why use the <code>as</code> operator? Just cast!</p>
<p>Then the first snippet becomes</p>
<pre><code>private void listBoxItem_PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
var listBoxItem = (ListBoxItem)sender;
var clickObject = (ClickObject)listBoxItem.DataContext;
clickObject.SingleClick();
}
</code></pre>
<p>Note this isn't true in the general case (you wouldn't do this if you were handling all PreviewMouseDown events in that one handler for all Control types), but for event handling code like this, especially in UI code, you can be as certain as you can be of anything, that sender will not be null and sender will be of the type you expect.</p>
http://stackoverflow.com/questions/988664/how-do-i-get-to-show-up-as-text-in-a-menuitem1How do I get '&' to show up as text in a MenuItemageektrapped2009-06-12T19:41:17Z2009-06-13T00:15:34Z
<p>I want to have a MenuItem with the Text property set to "Tom & Jerry" but, as you all know, the '&' before a character tells Windows that the next character is the keyboard shortcut.</p>
<p>So how does one escape the '&' to show up as text in the MenuItem?</p>
http://stackoverflow.com/questions/115328/how-can-i-do-databinding-in-c/115351#11535111Answer by ageektrapped for How can I do Databinding in c#?ageektrapped2008-09-22T15:05:02Z2009-05-25T01:03:00Z<p>You want</p>
<pre><code>editBox.DataBindings.Add("Text", car, "Name");
</code></pre>
<p>The first parameter is the name of the property on the control that you want to be databound, the second is the data source, the third parameter is the property on the data source that you want to bind to.</p>
http://stackoverflow.com/questions/416714/setting-up-mobile-junit-tests-to-run-under-junit3Setting up Mobile JUnit tests to run under JUnitageektrapped2009-01-06T14:21:33Z2009-05-18T20:46:44Z
<p>I'm using Mobile JUnit, released by Sony Ericsson for unit testing for my J2ME project. I read in the documentation that one can run the tests under regular junit with the help of a few wrapper classes. The documentation, in fact, recommends that you do this if you want to generate reports for CI builds, etc. which is exactly what I want. </p>
<p>Unfortunately, the documentation is a little terse on how to do this. Has anyone had any luck with this aspect of Mobile JUnit?</p>
http://stackoverflow.com/questions/92100/is-it-possible-to-set-code-behind-a-resource-dictionary-in-wpf-for-event-handling/98422#984225Answer by ageektrapped for Is it possible to set code behind a resource dictionary in WPF for event handling?ageektrapped2008-09-19T00:45:08Z2009-04-09T17:34:00Z<p>I think what you're asking is you want a code-behind file for a ResourceDictionary. You can totally do this! In fact, you do it the same way as for a Window:</p>
<p>Say you have a ResourceDictionary called MyResourceDictionary. In your MyResourceDictionary.xaml file, put the x:Class attribute in the root element, like so:</p>
<pre><code><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="MyCompany.MyProject.MyResourceDictionary"
x:ClassModifier="public">
</code></pre>
<p>Then, create a code behind file called MyResourceDictionary.xaml.cs with the following declaration:</p>
<pre><code>namespace MyCompany.MyProject
{
partial class MyResourceDictionary { ... }
}
</code></pre>
<p>And you're done. You can put whatever you wish in the code behind: methods, properties and event handlers.</p>
http://stackoverflow.com/questions/616898/does-process-startinfo-filename-accept-long-file-names/616919#6169190Answer by ageektrapped for Does Process.StartInfo.FileName accept long file names?ageektrapped2009-03-05T22:21:13Z2009-03-05T22:21:13Z<p>Try this:</p>
<pre><code>Process runScripts = new Process();
runScripts.StartInfo.FileName = @"""C:\long file path\run.cmd""";
runScripts.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
runScripts.StartInfo.UseShellExecute = true;
runScripts.StartInfo.RedirectStandardOutput = false;
runScripts.Start();
</code></pre>
<p>I.e. use a quoted string for FileName when FileName has spaces.</p>
http://stackoverflow.com/questions/600441/add-databinding-for-attached-property-per-code-behind/600578#6005780Answer by ageektrapped for Add DataBinding for attached Property per Code Behindageektrapped2009-03-01T21:36:49Z2009-03-01T21:58:25Z<p>It's somewhat unclear from your question ,but I think you're asking how one would bind to the attached property Canvas.Left and show it in a TextBox. I'll assume you want it for a control other than the TextBox.</p>
<pre><code><Canvas>
<TextBox x:Name="textBox" Text="{Binding ElementName=button, Path=(Canvas.Left)}" />
<Button x:Name="button" Content="Press me" />
</Canvas>
</code></pre>
<p>Note the brackets around the attached property.</p>
<p>EDIT:
To do the equivalent in code, use the following:</p>
<pre><code>Binding binding = new Binding();
binding.Source = button;
binding.Path = new PropertyPath("Canvas.Left");
textBox.SetBinding(TextBlock.TextProperty, binding);
</code></pre>
http://stackoverflow.com/questions/519135/timer-on-wallpaper-cycler/539838#5398380Answer by ageektrapped for Timer on Wallpaper Cyclerageektrapped2009-02-12T03:10:17Z2009-02-12T03:10:17Z<p>I've written something like this before myself. System.Timers.Timer is overkill for this. You should probably use System.Windows.Forms.Timer, for a couple of reasons:</p>
<ol>
<li>You're doing something that doesn't have to be too precise. The Windows timer is just a WM_TIMER message sent to your windows app's message pump, so you're not getting super great precision, but changing your wallpaper once a second is unrealistic. (I wrote mine to change every 6 hours or so)</li>
<li>When using a Windows Forms app that does some kind of timer-based task, you're going to run into all kinds of thread affinity issues if you go with System.Timers.Timer. Any Windows control has an affinity for the thread on which it was created, meaning that you can only modify the control on that thread. A Windows.Forms.Timer will do all that stuff for you. (For future nitpickers, changing wallpaper doesn't really count, cause it's a registry value change, but the rule holds generally)</li>
</ol>
http://stackoverflow.com/questions/511991/what-are-the-things-c-got-right/514384#5143843Answer by ageektrapped for What are the things C# got right?ageektrapped2009-02-05T03:04:33Z2009-02-05T03:04:33Z<p>Having been stuck developing in J2ME lately after my whole career in C#: Properties and delegates/events.</p>
http://stackoverflow.com/questions/495591/what-advantage-do-you-get-with-a-collection-over-listof-t-in-net-2-0/495636#495636-1Answer by ageektrapped for What advantage do you get with a collection over List(Of T) in .NET 2.0+ageektrapped2009-01-30T14:20:10Z2009-01-30T19:50:43Z<p>Inheriting from Collection(Of T) is recommended by Microsoft. The List(Of T) API is not guaranteed to remain the same from version to version. So, if you use List(Of T) in your public interfaces, your code may break when running on new versions of the CLR.</p>
<p>Krzysztof Cwalina, one of the designers of the BCL, has this to say about List<T>:</p>
<blockquote>
<p>Why we don’t recommend using List<T> in public APIs</p>
<p>We don’t recommend using List<T> in public APIs for two reasons.</p>
<ul>
<li>List<T> is not designed to be extended. i.e. you cannot override any members. This for example means that an object returning List<T> from a property won’t be able to get notified when the collection is modified. Collection<T> lets you overrides SetItem protected member to get “notified” when a new items is added or an existing item is changed.</li>
<li>List<T> has lots of members that are not relevant in many scenarios. We say that List<T> is too “busy” for public object models. Imagine ListView.Items property returning List<T> with all its richness. Now, look at the actual ListView.Items return type; it’s way simpler and similar to Collection<T> or ReadOnlyCollection<T>.</li>
</ul>
</blockquote>
<p><a href="http://blogs.msdn.com/kcwalina/archive/2005/09/26/474010.aspx" rel="nofollow">Source</a></p>
http://stackoverflow.com/questions/424997/is-there-a-way-to-remove-private-members-from-content-assist-in-eclipse1Is there a way to remove private members from Content Assist in Eclipseageektrapped2009-01-08T16:45:48Z2009-01-14T17:17:55Z
<p>I'm in Eclipse writing Java. I come from Visual Studio with Resharper writing C#.</p>
<p>When Content Assist comes up, I see all the private members of a class, even though I'm not editing that class. Is there a way I can turn that off?</p>
<p>It's really distracting.</p>
http://stackoverflow.com/questions/240184/freeing-memory-on-the-heap-should-i-and-how1Freeing memory on the heap. Should I and how?ageektrapped2008-10-27T14:57:53Z2008-12-09T19:19:38Z
<p>I'm writing a CESetup.dll for a Windows Mobile app. It must be unmanaged, which I have little experience with. So I'm unsure of whether I should free the memory I allocate and how I do it.</p>
<p>Here's the function I've written:</p>
<pre><code> Uninstall_Init(
HWND hwndParent,
LPCTSTR pszInstallDir
)
{
LPTSTR folderPath = new TCHAR[256];
_stprintf(folderPath, _T("%s\\cache"), pszInstallDir);
EmptyDirectory(folderPath);
RemoveDirectory(folderPath);
_stprintf(folderPath, _T("%s\\mobileadmin.dat"), pszInstallDir);
DeleteFile(folderPath);
// To continue uninstallation, return codeUNINSTALL_INIT_CONTINUE
// If you want to cancel installation,
// return codeUNINSTALL_INIT_CANCEL
return codeUNINSTALL_INIT_CONTINUE;
}
</code></pre>
<p>As I understand it, folderPath is allocated on the heap. EmptyDirectory() is my own function that removes all content in the directory. RemoveDirectory() and DeleteFile() are system calls.</p>
<p>My question is should I deallocate <code>folderPath</code> before the function exits? If I should, how do I do it?</p>
http://stackoverflow.com/questions/249721/how-to-convert-datetime-from-json-to-c/251845#2518450Answer by ageektrapped for How to convert DateTime from JSON to C#?ageektrapped2008-10-30T21:27:43Z2008-10-30T21:27:43Z<p>What you want is the following:</p>
<pre><code>DateTime unixEpoch = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
DateTime dotnetTime = unixEpoch.AddSeconds(Convert.ToDouble(ticks));
</code></pre>
<p>where <code>ticks</code> is the value passed to you by PHP.</p>
http://stackoverflow.com/questions/225545/detecting-running-in-main-thread-in-c-library/225556#2255563Answer by ageektrapped for Detecting running in Main Thread in C# libraryageektrapped2008-10-22T12:35:53Z2008-10-22T12:35:53Z<p>An easy solution in this case is to declare a static control in the library assembly that is created on the Main UI thread. If you want to detect if the library is called from the main thread, then use the following</p>
<pre><code>if (MyLibraryControl.InvokeRequired)
//do you thing here
</code></pre>
http://stackoverflow.com/questions/220382/how-can-a-windows-service-programmatically-restart-itself/223166#2231660Answer by ageektrapped for How can a windows service programmatically restart itself?ageektrapped2008-10-21T19:31:05Z2008-10-21T19:31:05Z<p>Is this what you're looking for? If you want to put this in the service, you needn't get the ServiceController.</p>
<pre><code>public void RestartService(string name)
{
ServiceController service = new ServiceController(name);
service.Stop();
Thread.Sleep(2500);
service.Start();
Thread.Sleep(2500);
}
</code></pre>
http://stackoverflow.com/questions/221783/udpclient-receive-right-after-send-does-not-work/222503#2225031Answer by ageektrapped for UdpClient, Receive() right after Send() does not work?ageektrapped2008-10-21T16:20:33Z2008-10-21T16:20:33Z<p>You probably want to setup two UdpClients: one for listening, one for sending.</p>
<p>For the receiving UdpClient, use the constructor that takes a port.</p>
http://stackoverflow.com/questions/185349/can-i-specify-a-generic-type-in-xaml/185589#1855895Answer by ageektrapped for Can I specify a generic type in XAML?ageektrapped2008-10-09T01:26:00Z2008-10-09T01:26:00Z<p>Not out of the box, no; but there are enterprising developers out there who have done so.</p>
<p>Mike Hillberg at Microsoft played with it in <a href="http://blogs.msdn.com/mikehillberg/archive/2006/10/06/LimitedGenericsSupportInXaml.aspx" rel="nofollow">this post</a>, for example. Google has others of course.</p>
http://stackoverflow.com/questions/6904/getting-directorynotfoundexception-when-trying-to-connect-to-device-with-corecon1Getting DirectoryNotFoundException when trying to Connect to Device with CoreCon APIageektrapped2008-08-09T20:22:19Z2008-09-24T15:31:38Z
<p>I'm trying to use the CoreCon API in Visual Studio 2008 to programmatically launch device emulators. When I call device.Connect(), I inexplicably get a DirectoryNotFoundException. I get it if I try it in PowerShell or in C# Console Application. Here's the code I'm using:</p>
<pre><code> static void Main(string[] args)
{
DatastoreManager dm = new DatastoreManager(1033);
Collection<Platform> platforms = dm.GetPlatforms();
foreach (var p in platforms)
{
Console.WriteLine("{0} {1}", p.Name, p.Id);
}
Platform platform = platforms[3];
Console.WriteLine("Selected {0}", platform.Name);
Device device = platform.GetDevices()[0];
device.Connect();
Console.WriteLine("Device Connected");
SystemInfo info = device.GetSystemInfo();
Console.WriteLine("System OS Version:{0}.{1}.{2}",
info.OSMajor, info.OSMinor, info.OSBuildNo);
Console.ReadLine();
}
</code></pre>
<p>My question: Does anyone know why I'm getting this error? I'm running this on WinXP 32-bit, plain jane Visual Studio 2008 Pro. I imagine it's some config issue since I can't do it from a Console app or PowerShell.</p>
<p>Here's the stack trace as requested:</p>
<pre><code>System.IO.DirectoryNotFoundException was unhandled
Message="The system cannot find the path specified.\r\n"
Source="Device Connection Manager"
StackTrace:
at Microsoft.VisualStudio.DeviceConnectivity.Interop.ConManServerClass.ConnectDevice()
at Microsoft.SmartDevice.Connectivity.Device.Connect()
at ConsoleApplication1.Program.Main(String[] args) in C:\Documents and Settings\Thomas\Local Settings\Application Data\Temporary Projects\ConsoleApplication1\Program.cs:line 23
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
</code></pre>
<p>InnerException: </p>
http://stackoverflow.com/questions/14497/has-anyone-used-nunitlite-with-any-success0Has anyone used NUnitLite with any success?ageektrapped2008-08-18T12:10:52Z2008-09-24T15:29:13Z
<p>I've recently started work on the Compact Framework and I was wondering if anyone had some recommendations for unit testing beyond what's in VS 2008. MSTest is <em>ok</em>, but debugging the tests is a nightmare and the test runner is <em>so</em> slow.</p>
<p>I see that NUnitLite on codeplex is an option, but it doesn't look very active; it's also in the roadmap for NUnit 3.0, but who knows when that will come out. Has anyone had any success with it?</p>
http://stackoverflow.com/questions/58743/databinding-an-enum-property-to-a-combobox-in-wpf/98464#984644Answer by ageektrapped for Databinding an enum property to a ComboBox in WPFageektrapped2008-09-19T00:52:56Z2008-09-19T00:52:56Z<p>I explored this and have a solution that you can use (complete with localization) in WPF located <a href="http://www.ageektrapped.com/blog/the-missing-net-7-displaying-enums-in-wpf/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/92287/sending-a-4-byte-message-header-from-c-client-to-a-java-server/93238#932380Answer by ageektrapped for Sending a 4 byte message header from C# client to a Java Serverageektrapped2008-09-18T14:48:09Z2008-09-18T14:48:09Z<p>The Sysetm.Net.IPAddress class has two static helper methods: HostToNetworkOrder() and NetworkToHostOrder() that do the conversion for you. You can use it with a BinaryWriter over the stream to write the proper value:</p>
<pre><code>using (Socket socket = new Socket())
using (NetworkStream stream = new NetworkStream(socket))
using (BinaryWriter writer = new BinaryWriter(stream))
{
int myValue = 42;
writer.Write(IPAddress.HostToNetworkOrder(myValue));
}
</code></pre>
http://stackoverflow.com/questions/85222/linking-net-assemblies/85244#852446Answer by ageektrapped for Linking .Net Assembliesageektrapped2008-09-17T16:50:21Z2008-09-17T16:50:21Z<p>There's ILMerge. <a href="http://research.microsoft.com/~mbarnett/ILMerge.aspx" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/9401#9401Comment by ageektrapped on Hidden Features of C#?ageektrapped2009-11-16T13:30:31Z2009-11-16T13:30:31ZParams support is coming in .NET 4.0. Thankfullyhttp://stackoverflow.com/questions/1119255/windows-mobile-cab-setup-to-detect-net-cf-3-5-and-install-it/1119304#1119304Comment by ageektrapped on Windows Mobile Cab Setup to detect .NET CF 3.5 and Install Itageektrapped2009-07-15T01:37:24Z2009-07-15T01:37:24ZI modified the code provided in this sample <a href="http://msdn.microsoft.com/en-us/library/aa446531.aspx#netcfdepl_topic3" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/988664/how-do-i-get-to-show-up-as-text-in-a-menuitem/988672#988672Comment by ageektrapped on How do I get '&' to show up as text in a MenuItemageektrapped2009-06-13T00:42:49Z2009-06-13T00:42:49ZThat is truly bizarre. But it works! Nice one.http://stackoverflow.com/questions/988664/how-do-i-get-to-show-up-as-text-in-a-menuitem/988672#988672Comment by ageektrapped on How do I get '&' to show up as text in a MenuItemageektrapped2009-06-12T19:55:24Z2009-06-12T19:55:24Z&& shows up correctly in the designer, no underscore; but when I run it in the emulator I get a _ still. Maybe it's not possible on Windows Mobile? It works on Windows, though. Henk gets the answer unless someone can chime in for Windows Mobile.http://stackoverflow.com/questions/416714/setting-up-mobile-junit-tests-to-run-under-junit/879753#879753Comment by ageektrapped on Setting up Mobile JUnit tests to run under JUnitageektrapped2009-05-18T21:22:29Z2009-05-18T21:22:29ZI used the one at <a href="http://www.microemu.org/" rel="nofollow">microemu.org</a>. The docs aren't the greatest in the world and you can't emulate everything; I had to change the way I used RecordStore to get the tests to work. But if you put that jar in your classpath when you run the tests, it works quite effectively.http://stackoverflow.com/questions/829080/how-to-build-a-query-string-for-a-url-in-c/829146#829146Comment by ageektrapped on How to build a query string for a URL in C#?ageektrapped2009-05-06T11:32:55Z2009-05-06T11:32:55ZThe Uri class is good <i>once you have a URI built including the query.</i> Uri is immutable so you can't add to it once it's created. There is the UriBuilder class, but IIRC it doesn't have a method for query string; it's still left to the programmer to create it.
The Uri class is good once you have it constructed for things like proper escaping.http://stackoverflow.com/questions/661688/wpf-listbox-problem-with-resolutionComment by ageektrapped on WPF ListBox problem with resolutionageektrapped2009-03-19T10:40:25Z2009-03-19T10:40:25ZI agree, your problem could be what type of panel you have your listbox in. Could we see some code?http://stackoverflow.com/questions/616898/does-process-startinfo-filename-accept-long-file-names/616919#616919Comment by ageektrapped on Does Process.StartInfo.FileName accept long file names?ageektrapped2009-03-06T17:50:00Z2009-03-06T17:50:00ZAre you sure you have the path right?http://stackoverflow.com/questions/416714/setting-up-mobile-junit-tests-to-run-under-junitComment by ageektrapped on Setting up Mobile JUnit tests to run under JUnitageektrapped2009-02-12T03:17:41Z2009-02-12T03:17:41ZActually, I gave up. I now have an ant build script that compiles to J2SE to run the junit tests and compiles to run it as J2ME MIDlet. I use the microemulator to get the J2ME classes to compile on J2SEhttp://stackoverflow.com/questions/424997/is-there-a-way-to-remove-private-members-from-content-assist-in-eclipse/425046#425046Comment by ageektrapped on Is there a way to remove private members from Content Assist in Eclipseageektrapped2009-01-08T18:16:41Z2009-01-08T18:16:41ZThat doesn't seem to work for me. Others in the office said the same thing, and it works for them, but not for me.http://stackoverflow.com/questions/240184/freeing-memory-on-the-heap-should-i-and-how/240297#240297Comment by ageektrapped on Freeing memory on the heap. Should I and how?ageektrapped2008-10-27T15:42:56Z2008-10-27T15:42:56ZDoes that work on Windows Mobile devices? What do I have to include?http://stackoverflow.com/questions/240184/freeing-memory-on-the-heap-should-i-and-how/240234#240234Comment by ageektrapped on Freeing memory on the heap. Should I and how?ageektrapped2008-10-27T15:32:52Z2008-10-27T15:32:52ZAh. Much better! Thanks.
C++\Win32 is such a pain.http://stackoverflow.com/questions/240184/freeing-memory-on-the-heap-should-i-and-how/240234#240234Comment by ageektrapped on Freeing memory on the heap. Should I and how?ageektrapped2008-10-27T15:20:51Z2008-10-27T15:20:51ZI get errors like "DeleteFileW: cannot convert parameter 1 from 'LPTSTR[256]' to 'LPCWSTR'"http://stackoverflow.com/questions/240184/freeing-memory-on-the-heap-should-i-and-how/240234#240234Comment by ageektrapped on Freeing memory on the heap. Should I and how?ageektrapped2008-10-27T15:19:14Z2008-10-27T15:19:14ZYou're absolutely right. But I tried that and it wouldn't compile for me.