User Adam Haile - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-07T19:55:06Z
http://stackoverflow.com/feeds/user/194
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/1826050/license-and-distribution-rights-for-windows-resource-instsrv-exe
0
License and Distribution rights for Windows Resource (instsrv.exe)
Adam Haile
2009-12-01T12:59:09Z
2009-12-04T05:24:03Z
<p>I have a service installation that in order to get it to work on Win2k, I had to include instsrv.exe in the installer, since Win2k doesn't include sc.exe (which I use for XP and up) and instsrv.exe is not always installed...so I cannot count on it being there. (instsrv and sc are both used to create/install the service on the system).</p>
<p>I have not been able to find the license terms or distribution rights for instsrv however. Is there going to be a legal issue with me including this Microsoft exe in my own installer and therefore distributing it to the customers of the product? If you can point me to an actual license document for this exe it would be greatly appreciated.</p>
http://stackoverflow.com/questions/1408780/mono-compatible-networking-socket-library
1
Mono Compatible Networking/Socket Library
Adam Haile
2009-09-11T03:05:36Z
2009-12-01T15:58:58Z
<p>Are there any Mono (C#) compatible networking / socket libraries out there?</p>
<p>Preferably something that is:</p>
<ul>
<li>Multi Threaded</li>
<li>Event Driven</li>
<li>Capable of multiple connections</li>
<li>Handles client and server pieces</li>
<li>Runs on Mono and MS .NET runtimes</li>
<li>Very simple</li>
<li>Free (And usable in commercial software)</li>
</ul>
<p>It would also be really great if it was:</p>
<ul>
<li>.NET Compact Framework (Windows Mobile) compatible</li>
<li>MonoTouch (iPhone) compatible</li>
</ul>
<p><strong>Edit:</strong></p>
<p>To clarify more, what I meant by my "one level above TCP/IP" comment was that I want something that is basically a self contained server / client. I don't want to have to deal with writing the threading code, handling each connection, etc. For example, I would love for the code to look like this:</p>
<pre><code>Server s = new Server(8080);
s.NewConnection += new ConnectionEventHandler(NewConnection);
s.DataRecieved += new DataEventHandler(NewData);
s.Start();
void NewConnection(object sender, EventArgs e)
{
s.Send((Connection)sender, "Hello World!"); //(Connection)sender is the connection instance so the server knows which to send the response to
}
void NewData(object sender, EventArgs e)
{
s.Send((Connection)sender, e.Data); //Echo back
}
</code></pre>
<p>Not the cleanest code, but I think it gives the basic idea.</p>
http://stackoverflow.com/questions/149553/best-format-for-a-software-engineers-resume
43
Best Format for a Software Engineer's Resume
Adam Haile
2008-09-29T16:43:10Z
2009-12-01T06:29:13Z
<p>I am looking for good, objective ideas and examples of a resume for a Software Engineer. By all means, post a link to your own resume if you are comfortable with doing so. </p>
<p>Mostly I am looking at how it should be formatted and what kind of information should be included (and in what order on the resume.)</p>
http://stackoverflow.com/questions/3305/asp-net-hosting-options
14
ASP.NET Hosting Options
Adam Haile
2008-08-06T12:01:40Z
2009-11-18T21:45:26Z
<p><strong>I'm not trying to start a "which language is better" argument here, so please don't go there.</strong> <br>
I typically use PHP for most of my web development (mostly because hosting is cheap), but for various reasons I'm looking to use ASP.NET for a couple new projects. But one of the major reasons I've stayed away from ASP.NET up until now is the cost. I've seen some budget hosting options, but they always seem a little sketchy to me. From what I've generally found, that's just the way the hosting scene looks for ASP.NET unless you want to go dedicated.</p>
<p>Does anyone have any good suggestions for a solid ASP.NET host with a good feature set and reliability for my money? Also, are there any options out there along the lines of Amazon's Elastic Compute Cloud? And yes, I know... Mono. I'm talking about <em>Windows</em> based "grid" hosting options? </p>
http://stackoverflow.com/questions/1341575/c-retrieve-names-of-installed-screen-savers
7
C#: Retrieve Names of Installed Screen Savers
Adam Haile
2009-08-27T14:44:20Z
2009-11-15T15:23:53Z
<p>I want to be able to show basically the same list that the Windows Screen Saver dialog shows, with the name of each screen saver. The problem I've run into however is that the names that show up in the drop down list on the dialog don't seem to correspond to the filename, embedded file information, anything in the registry, etc.</p>
<p>For example, the 3D FlowerBox screen saver has a file description of Direct3D FlowerBox. And I can't find just "3D FlowerBox" anywhere.</p>
<p>Where is this information stored?
And How can I retrieve it.</p>
http://stackoverflow.com/questions/1715157/microsoft-vc-runtime-requirement-and-sxs-error-for-setup-custom-action-in-vista
0
Microsoft VC Runtime Requirement and SXS error for Setup Custom Action in Vista
Adam Haile
2009-11-11T13:27:02Z
2009-11-11T14:29:38Z
<p>I created a setup project with VS2005 for an application that I'm developing, which installs fine on Windows 2000 and XP, but when I try to run the installer on Vista, it gives the following error:</p>
<blockquote>
<p>There is a problem with this Windows
Installer package. A program required
for this install to complete could not
be run.</p>
</blockquote>
<p>This error occurs at the very end of the install process, after it has already copied all of the files over to the disk, and it's occurring when it tries to run my custom actions executable. </p>
<p>The custom actions binary is a file called InstallCustom.exe, and is written in C++. It is very basic, and just handles the Install, Commit, Uninstall, and Rollback actions and does nothing more than set some registry entries and fire off a couple batch scripts to finalize the install.</p>
<p>I ran SXSTrace during the install to see what it was failing on and got the following trace:</p>
<pre><code>=================
Begin Activation Context Generation.
Input Parameter:
Flags = 0
ProcessorArchitecture = x86
CultureFallBacks = en-US;en
ManifestPath = C:\Program Files\MyApp\InstallCustom.exe
AssemblyDirectory = C:\Program Files\MyApp\
Application Config File =
-----------------
INFO: Parsing Manifest File C:\Program Files\MyApp\InstallCustom.exe.
INFO: Manifest Definition Identity is (null).
INFO: Reference: Microsoft.VC80.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053"
INFO: Resolving reference Microsoft.VC80.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053".
INFO: Resolving reference for ProcessorArchitecture x86.
INFO: Resolving reference for culture Neutral.
INFO: Applying Binding Policy.
INFO: Find publisher policy at C:\Windows\WinSxS\manifests\x86_policy.8.0.microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.1434_none_516c10c30f4aae68.manifest
INFO: No binding policy redirect found.
INFO: Begin assembly probing.
INFO: Did not find the assembly in WinSxS.
INFO: Attempt to probe manifest at C:\Windows\assembly\GAC_32\Microsoft.VC80.CRT\8.0.50727.4053__1fc8b3b9a1e18e3b\Microsoft.VC80.CRT.DLL.
INFO: Attempt to probe manifest at C:\Program Files\MyApp\Microsoft.VC80.CRT.DLL.
INFO: Attempt to probe manifest at C:\Program Files\MyApp\Microsoft.VC80.CRT.MANIFEST.
INFO: Attempt to probe manifest at C:\Program Files\MyApp\Microsoft.VC80.CRT\Microsoft.VC80.CRT.DLL.
INFO: Attempt to probe manifest at C:\Program Files\MyApp\Microsoft.VC80.CRT\Microsoft.VC80.CRT.MANIFEST.
INFO: Did not find manifest for culture Neutral.
INFO: End assembly probing.
ERROR: Cannot resolve reference Microsoft.VC80.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053".
ERROR: Activation Context generation failed.
End Activation Context Generation.
=================
Begin Activation Context Generation.
Input Parameter:
Flags = 0
ProcessorArchitecture = x86
CultureFallBacks = en-US;en
ManifestPath = C:\Program Files\MyApp\InstallCustom.exe
AssemblyDirectory = C:\Program Files\MyApp\
Application Config File =
-----------------
INFO: Parsing Manifest File C:\Program Files\MyApp\InstallCustom.exe.
INFO: Manifest Definition Identity is (null).
INFO: Reference: Microsoft.VC80.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053"
INFO: Resolving reference Microsoft.VC80.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053".
INFO: Resolving reference for ProcessorArchitecture x86.
INFO: Resolving reference for culture Neutral.
INFO: Applying Binding Policy.
INFO: Find publisher policy at C:\Windows\WinSxS\manifests\x86_policy.8.0.microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.1434_none_516c10c30f4aae68.manifest
INFO: No binding policy redirect found.
INFO: Begin assembly probing.
INFO: Did not find the assembly in WinSxS.
INFO: Attempt to probe manifest at C:\Windows\assembly\GAC_32\Microsoft.VC80.CRT\8.0.50727.4053__1fc8b3b9a1e18e3b\Microsoft.VC80.CRT.DLL.
INFO: Attempt to probe manifest at C:\Program Files\MyApp\Microsoft.VC80.CRT.DLL.
INFO: Attempt to probe manifest at C:\Program Files\MyApp\Microsoft.VC80.CRT.MANIFEST.
INFO: Attempt to probe manifest at C:\Program Files\MyApp\Microsoft.VC80.CRT\Microsoft.VC80.CRT.DLL.
INFO: Attempt to probe manifest at C:\Program Files\MyApp\Microsoft.VC80.CRT\Microsoft.VC80.CRT.MANIFEST.
INFO: Did not find manifest for culture Neutral.
INFO: End assembly probing.
ERROR: Cannot resolve reference Microsoft.VC80.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053".
ERROR: Activation Context generation failed.
End Activation Context Generation.
</code></pre>
<p>As you can see, it is failing to find Microsoft.VC80.CRT, the Visual C++ runtime dll.</p>
<p>The weird thing is that this runtime is already included in the installer, by adding the merge modules: "Microsoft_VC80_CRT_x86.msm" and "policy_8_0_microsoft_vc80_crt_x86.msm"</p>
<p>However, I suspect that these merge modules don't actually get applied until after this error is occurring...<br>
But I have not been able to figure out how to include these needed files <em>before</em> the InstallCustom.exe runs. I've even tried copying the runtime over to the directory that file is in before the install.</p>
<p>Is there anyway to fix this issue? And why would this <em>not</em> be an issue on XP and 2000, but on Vista...I would think it should have this runtime.</p>
http://stackoverflow.com/questions/1667291/get-custom-file-version-info-from-a-native-binary-using-c
0
Get Custom File Version Info from a Native binary using C#
Adam Haile
2009-11-03T13:17:47Z
2009-11-03T15:12:43Z
<p>I've got a bunch of native (C++) binaries that I want to scan and retrieve version information about from a C# console application. Using System.Diagnostics.FileVersionInfo I am able to get the actual version strings, company name, etc. However there is a "Build Date" string in there (which is shown by the Windows File Properties "Version" tab), and it is not being retrieved by FileVersionInfo.</p>
<p>It seems that "Build Date" is technically custom data placed in the file, which I guess would be why I FileVersionInfo does not automatically grab this data, but is there any way to get these custom values?</p>
<p>In the native binaries, the "Build Date" string is included via an .RC file, using the following section:</p>
<pre><code>BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904e4"
BEGIN
VALUE "Build Date", "11/03/2009"
VALUE "CompanyName", "My Company "
VALUE "FileDescription", "My DLL"
VALUE "FileVersion", VERSTR
VALUE "InternalName", "MyCode.dll"
VALUE "LegalCopyright", "Copyright © Me"
VALUE "ProductVersion", VERSTR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END
</code></pre>
<p>I am then trying to retrieve the information in C# like this:</p>
<pre><code>FileVersionInfo ver = FileVersionInfo.GetVersionInfo(path);
Console.WriteLine(ver.ToString());
</code></pre>
http://stackoverflow.com/questions/1641102/targeting-android-1-5-and-1-6-from-the-2-0-sdk
2
Targeting Android 1.5 and 1.6 from the 2.0 SDK
Adam Haile
2009-10-29T01:11:14Z
2009-10-29T01:25:39Z
<p>I'm interested in learning Android development.... but if I install the latest 2.0 SDK, will I still be able to target 1.5 and 1.6 devices? (since there is only one 2.0 device right now)
Basically I'm wondering if it will tell me if I'm doing something that won't work on older versions of the OS</p>
http://stackoverflow.com/questions/879033/closesocket-fails-with-wsaeopnotsupp
0
closesocket() fails with WSAEOPNOTSUPP
Adam Haile
2009-05-18T18:07:03Z
2009-10-27T11:20:32Z
<p>I've got an application using sockets (which I did not write, so bear with me) and when I try to close a socket, closesocket() fails with error WSAEOPNOTSUPP and the socket sticks around...as in, it is not fully deleted.</p>
<p>The socket is created as follows:</p>
<pre><code>bool Socket::CreateConnection()
{
int error;
struct addrinfo hints;
struct addrinfo *list = NULL;
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;
error = getaddrinfo(socketAddress.c_str(), socketPort.c_str(), &hints, &list);
if (error)
{
Log().RecordError("Unable to initialize connection to server", WSAGetLastError(), EventTypeError);
}
for (struct addrinfo *ptr = list; ptr != NULL; ptr = ptr->ai_next)
{
connection = socket(ptr->ai_family, ptr->ai_socktype, ptr->ai_protocol);
if (connection == INVALID_SOCKET)
{
Log().RecordError("Unable to initialize socket connection", WSAGetLastError(), EventTypeError);
break;
}
error = connect(connection, ptr->ai_addr, (int)ptr->ai_addrlen);
if (error == SOCKET_ERROR)
{
closesocket(connection);
connection = INVALID_SOCKET;
continue;
}
break;
}
freeaddrinfo(list);
return connection != INVALID_SOCKET;
}
</code></pre>
<p>And the destructor for the class:</p>
<pre><code>Socket::~Socket()
{
int error;
if (connection != INVALID_SOCKET)
{
continueReading = false;
error = shutdown(connection, SD_SEND);
if (error != SOCKET_ERROR)
{
/* Finish any necessary receives to politely close the socket */
int length;
do
{
char buffer[1024];
length = recv(connection, buffer, sizeof(buffer)/sizeof(*buffer), MSG_WAITALL);
} while (length > 0);
}
else
{
Log().RecordError("Error shutting down connection to server", WSAGetLastError(), EventTypeError);
}
closesocket(connection); //Fails HERE
int wsa_err = WSAGetLastError();
if(wsa_err)
Log().RecordError("closesocket() error", wsa_err, EventTypeError);
}
if (winsockInitialized)
{
WSACleanup();
}
}
</code></pre>
<p>Anyone have a clue why this would happen??</p>
http://stackoverflow.com/questions/278237/keep-window-on-top-and-steal-focus-in-winforms
2
Keep window on top and steal focus in WinForms
Adam Haile
2008-11-10T15:56:14Z
2009-10-23T19:15:26Z
<p>I realize that this would be COMPLETELY bad practice in normal situations, but this is just for a test app that needs to be taking input from a bar code scanner (emulating a keyboard). The problem is that I need to start up some scripts while scanning, so I need to window to regain focus directly after I click the script to run it. I've tried using Activate(), BringToFront(), Focus() as well as some Win32 calls like SetForegroundWindow(), Setcapture() and SetActiveWindow()....however the best I can get any of them to do is to make the taskbar item start blinking to tell me that it <em>wants</em> to have focus, but something is stopping it. BTW, I'm running this on XP SP2 and using .NET 2.0</p>
<p>Is this possible?</p>
<p>Edit: To clarify, I am running the scripts by double-clicking on them in explorer. So I need it to steal focus back from explorer and to the test app.</p>
http://stackoverflow.com/questions/1075204/when-using-a-settings-settings-file-in-net-where-is-the-config-actually-stored
7
When using a Settings.settings file in .NET, where is the config actually stored?
Adam Haile
2009-07-02T15:55:23Z
2009-10-20T13:37:50Z
<p>When using a Settings.settings file in .NET, where is the config actually stored?
I want to delete the saved settings to go back to the default state, but can't find where it's stored... any ideas?</p>
http://stackoverflow.com/questions/6067/finding-good-small-software-companies
33
Finding good small software companies
Adam Haile
2008-08-08T15:26:31Z
2009-10-10T18:14:36Z
<p>Anyone have any advice for finding good small software companies to work for?
I've found that they rarely seem to advertise job openings, or basically will wait for someone to come to them...which I get since they are small are obviously wouldn't be that way if they were hiring a lot.
I'm talking about some place a lot like Joel's FogCreek...there's just no way I'm moving to NYC.
And specifically, does anyone know of any in the Carolina's?</p>
http://stackoverflow.com/questions/1525095/chain-uninstallation-of-msis
0
Chain Uninstallation of MSIs
Adam Haile
2009-10-06T11:45:28Z
2009-10-06T11:45:28Z
<p>I've got an MSI installer that includes another MSI for an SDK that it installs during it's own installation. Both MSI's have been created with the Visual Studio deployment tools.
The installation works fine, but when I uninstall the main component it does not automatically uninstall the SDK. I tried to create a custom uninstall action that calls the uninstall on the SDK, but it will not let it run because Windows Installer is already running.</p>
<p>Is there any way to handle the uninstallation of BOTH when using MSIs?</p>
http://stackoverflow.com/questions/1402120/winforms-application-in-monodevelop
2
WinForms Application in MonoDevelop
Adam Haile
2009-09-09T21:08:49Z
2009-10-05T06:22:58Z
<p>I just installed the new MonoDevelop Windows beta, but when trying to create a C# windows application the only option was GTK#. Since Mono supports WinForms, why is this not an option in MonoDevelop. I would like to not have the GTK# dependency in my applications.</p>
http://stackoverflow.com/questions/430280/render-pdf-in-itextsharp-from-html-with-css
1
Render PDF in iTextSharp from HTML with CSS
Adam Haile
2009-01-10T00:45:15Z
2009-09-27T14:44:19Z
<p>Any idea how to render a PDF using iTextSharp so that it renders the page using CSS. The css can either be embedded in the HTML or passed in separately, I don't really care, just want it to work. </p>
<p>Specific code examples would be <em>greatly</em> appreciated.</p>
<p>Also, I would really like to stick with iTextSharp, though if you do have suggestions for something else, it's got to be free, open source, and have a license that permits using it in commercial software.</p>
http://stackoverflow.com/questions/1449136/enumerate-recording-devices-in-naudio
0
Enumerate Recording Devices in NAudio
Adam Haile
2009-09-19T18:10:43Z
2009-09-20T06:03:24Z
<p>How can you get a list of all the recording devices on a computer using NAudio? When you want to record, you have to give it the index of the device you want to use, but there's no way of knowing what device that is. I'd like to be able to select from Mic, Stereo Mix, etc.</p>
http://stackoverflow.com/questions/894329/synchronizing-version-resources-in-visual-studio-c-win32-projects
1
Synchronizing Version Resources in Visual Studio C++ (Win32) Projects
Adam Haile
2009-05-21T18:20:36Z
2009-09-12T03:38:15Z
<p>I've got a solution with about 8 separate projects in it and every time I do a release build of the entire solution I need to make sure that the version string for the binary output of each project is the same. Is there an easy way to synchronize the VS_VERSION_INFO section of a project's resources file?</p>
http://stackoverflow.com/questions/1341575/c-retrieve-names-of-installed-screen-savers/1402837#1402837
0
Answer by Adam Haile for C#: Retrieve Names of Installed Screen Savers
Adam Haile
2009-09-10T00:30:56Z
2009-09-10T00:30:56Z
<p>I searched all over the system... checked the registry, searched the contents of every file for the names, opened the .scr files in a hex viewer, but never could find the names anywhere... I also then tried installing other screen savers and noticed that the always showed up in the settings as the file name. Whatever I changed the file name to, showed up there. So for the non-standard screen savers it's not looking for any special names... this lead me to believe that the names of the built in screen savers were somehow hard coded into the settings dialog as special cases.</p>
<p>So I did the same thing in my app...just made an array of all the special cases and handled accordingly. Seems to be the only option.</p>
http://stackoverflow.com/questions/8691/user-control-property-designer-properties
1
User Control Property Designer Properties
Adam Haile
2008-08-12T11:25:41Z
2009-08-28T04:23:57Z
<p>For a C# UserControl on Windows Mobile (though please answer if you know it for full Windows...it might work) how do you change what shows up in the Designer Properties window for one of the Control's public Properties. For example:</p>
<pre><code> private Color blah = Color.Black;
public Color Blah
{
get { return this.blah; }
set { this.blah = value; }
}
</code></pre>
<p>This shows up for the control, but it's in the "Misc" category and has no description or default value. I've tried using the settings in System.ComponentModel like "DesignerCategory", such as:</p>
<pre><code>[DesignerCategory("Custom")]
</code></pre>
<p>But says this is only valid for class declarations... could've sworn it was the System.ComponentModel items I used before...</p>
http://stackoverflow.com/questions/1331536/video-codecs-supported-in-upnp-av
0
Video Codecs supported in UPnP AV
Adam Haile
2009-08-25T23:12:49Z
2009-08-26T01:57:31Z
<p>I'm may just be confused how this all works...in which case, please explain it to me. But, what video codecs are supported by the UPnP AV standard? Or is it on a per-device (client) basis? I want to create an app to send video data to a UPnP device (XBox, PS3, etc) but am not really sure what video codec I should target... it can be anything, I just want to know if there's a way of knowing that it will work on everything.</p>
<p>Edit: Ok, so I will clarify that I will be able to choose whatever video format I want, and once I do that will be all I plan on supporting, therefore I don't need transcoding. My main point was that I was hoping there was some "standard" format used that would be supported on ALL devices so that I could just pick that and be done with it... Obviously this is not the case... but is there any sort of <em>unofficial</em> codec that <em>most</em> devices support? Is there a list of devices and supported codecs anywhere?</p>
<p>Also, how does DLNA work into this...if I understand correctly it's sort of a subset of UPnP AV (but plus some other stuff...) And most UPnP devices I've seen are also DLNA compliant...so would just using whatever codecs DLNA supports be a way to have a common ground?</p>
http://stackoverflow.com/questions/7719/capture-mousedown-event-for-net-textbox
0
Capture MouseDown event for .NET TextBox
Adam Haile
2008-08-11T12:36:20Z
2009-08-10T14:38:56Z
<p>Is there any way to capture the MouseDown even from the .NET 2.0 TextBox control?
I know the inherited Control class has the event, but it's not exposed in TextBox.
Is there a way to override the event handler?</p>
<p>I also tried the OpenNETCF TextBox2 control which does have the MouseDown event exposed, but no matter what I do, it doesn't fire the handler.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1219295/net-mono-database-engine
4
.NET / Mono Database Engine
Adam Haile
2009-08-02T17:10:30Z
2009-08-09T18:09:03Z
<p>Are there any DB engines that are implemented entirely in .NET and Mono compatible?
I would like to have a DB solution that will run on all platforms via Mono so that I don't have to worry about having separate native binaries for each platform.</p>
http://stackoverflow.com/questions/1219228/mono-compatible-raw-image-decoders
2
Mono Compatible RAW Image Decoders
Adam Haile
2009-08-02T16:35:28Z
2009-08-02T18:20:21Z
<p>I would like to be able to decode and preview all manner of RAW image files from within an application written in C#/Mono. Preferably something that is fully implemented in C# as I need to to run cross-platform and would rather not have to have platform specific binaries just for the raw decoding...
Anyone know of any libraries that do this?</p>
http://stackoverflow.com/questions/429380/using-xmlserializer-with-private-and-public-const-properties
3
Using XmlSerializer with private and public const properties
Adam Haile
2009-01-09T19:32:50Z
2009-07-28T21:47:21Z
<p>What's the simplest way to get XmlSerializer to also serialize private and "public const" properties of a class or struct? Right not all it will output for me is things that are only public. Making it private or adding const is causing the values to not be serialized.</p>
http://stackoverflow.com/questions/276319/create-zip-archive-from-multiple-in-memory-files-in-c
1
Create Zip archive from multiple in memory files in C#
Adam Haile
2008-11-09T19:04:00Z
2009-07-27T20:39:18Z
<p>Is there a way to create a Zip archive that contains multiple files, when the files are currently in memory? The files I want to save are really just text only and are stored in a string class in my application. But I would like to save multiple files in a single self-contained archive. They can all be in the root of the archive.</p>
<p>It would be nice to be able to do this using SharpZipLib.</p>
http://stackoverflow.com/questions/22459/memset-causing-data-abort
4
memset() causing data abort
Adam Haile
2008-08-22T14:17:01Z
2009-07-24T07:33:15Z
<p>I'm getting some strange, intermittent, data aborts (< 5% of the time) in some of my code, when calling memset. The problem is that is usually doesn't happen unless the code is running for a couple days, so it's hard to catch it in the act.</p>
<p>I'm using the following code:</p>
<pre><code>char *msg = (char*)malloc(sizeof(char)*2048);
char *temp = (char*)malloc(sizeof(char)*1024);
memset(msg, 0, 2048);
memset(temp, 0, 1024);
char *tempstr = (char*)malloc(sizeof(char)*128);
sprintf(temp, "%s %s/%s %s%s", EZMPPOST, EZMPTAG, EZMPVER, TYPETXT, EOL);
strcat(msg, temp);
//Add Data
memset(tempstr, '\0', 128);
wcstombs(tempstr, gdevID, wcslen(gdevID));
sprintf(temp, "%s: %s%s", "DeviceID", tempstr, EOL);
strcat(msg, temp);
</code></pre>
<p>As you can see, I'm not trying to use memset with a size larger that what's originally allocated with malloc()</p>
<p>Anyone see what might be wrong with this?</p>
http://stackoverflow.com/questions/1103750/embed-fontdialog-in-another-winforms-dialog
0
Embed FontDialog in another WinForms Dialog
Adam Haile
2009-07-09T13:04:14Z
2009-07-21T21:23:52Z
<p>I would like to embed the FontDialog control into a settings dialog box for my C# WinForms application, but if I drag the control over it, of course, just adds it to the list of Dialog controls at the bottom of the designer. But instead of opening a separate dialog, I would like it to just be part of the settings dialog I already have...so I don't have to recreate the whole thing.</p>
<p>Is there anyway to do this, or is there another Font control I can use?</p>
http://stackoverflow.com/questions/1135190/completely-net-zerconf-implementation-for-xna
1
Completely .NET ZerConf Implementation for XNA
Adam Haile
2009-07-16T02:53:47Z
2009-07-16T16:49:41Z
<p>I came across Mono.ZerConf, but from what I can tell it still relies on mDNSResponder on Windows and Avahi on Linux.</p>
<p>But I'm trying to figure out if it would be possible to implement on the XBOX 360 / XNA, but I obviously can't run mDNSResponder on the 360, though if there was an implementation that was completely in .NET I may be able to get it to work.</p>
<p>Are there any implementations that are completely in .NET, preferably C#?</p>
http://stackoverflow.com/questions/1120307/free-visual-studio-build-automation-solution
2
Free Visual Studio Build Automation Solution
Adam Haile
2009-07-13T15:50:48Z
2009-07-15T12:07:52Z
<p>I'm looking for a build automation solution for use with a Visual Studio solution space containing multiple projects of mixed source types (mainly Win32 C++ and C#). Also, all the code is stored in a Subversion repository. So it needs to go all the way from pulling down a working copy of the code, to compiling the source, to building the setup files.</p>
<p>Requirements are as follows:</p>
<p><strong>Absolute Must Haves:</strong></p>
<ul>
<li>FREE </li>
<li>Easy to use GUI (I can already write a bunch of NMake scripts...this is what I <em>don't</em> want to do)</li>
<li>Subversion Integration (at the least be able to pull down the latest code) </li>
<li>Multiple source Language Support (doubt this matters as it's built with VS in the end) </li>
<li>End to End automation (one click build) </li>
<li>Build profiles (i.e. Intermediary vs Release)</li>
</ul>
<p><strong>Things I would like</strong></p>
<ul>
<li>Source file find and replace (for automatically incrementing version information in header files)</li>
<li>Email reporting</li>
<li>Automatic builds after Subversion commits</li>
<li>Web interface</li>
<li>FTP integration</li>
<li>Ability to auto-generate build file names with proper version strings</li>
</ul>
<p><strong>Things I don't need</strong></p>
<ul>
<li>Unit Testing support</li>
<li>Bug tracking integration</li>
</ul>
http://stackoverflow.com/questions/9745/open-source-windows-mobile-ocr-library
2
Open Source Windows Mobile OCR Library
Adam Haile
2008-08-13T12:57:25Z
2009-07-09T06:44:16Z
<p>Does anyone know of an OCR library that will run on Windows Mobile (5 or 6, but PPC2003SE would be great). I would imagine that OCR would be native (C/C++) code, but if it was in .NET or at least had a .NET wrapper API, that would be great.</p>
http://stackoverflow.com/questions/1341575/c-retrieve-names-of-installed-screen-savers/1737808#1737808
Comment by Adam Haile on C#: Retrieve Names of Installed Screen Savers
Adam Haile
2009-11-16T11:59:45Z
2009-11-16T11:59:45Z
Awesome..I totally didn't realize that was possible.
http://stackoverflow.com/questions/491595/best-way-to-parse-command-line-arguments-in-c/1612437#1612437
Comment by Adam Haile on Best way to parse command line arguments in C#
Adam Haile
2009-11-13T14:30:56Z
2009-11-13T14:30:56Z
You do realize this one is written in Java, right?
http://stackoverflow.com/questions/1715157/microsoft-vc-runtime-requirement-and-sxs-error-for-setup-custom-action-in-vista/1715293#1715293
Comment by Adam Haile on Microsoft VC Runtime Requirement and SXS error for Setup Custom Action in Vista
Adam Haile
2009-11-11T15:42:05Z
2009-11-11T15:42:05Z
Turns out "Multi-Threaded" was the one! Thanks!
http://stackoverflow.com/questions/1715157/microsoft-vc-runtime-requirement-and-sxs-error-for-setup-custom-action-in-vista/1715293#1715293
Comment by Adam Haile on Microsoft VC Runtime Requirement and SXS error for Setup Custom Action in Vista
Adam Haile
2009-11-11T14:48:35Z
2009-11-11T14:48:35Z
The "Runtime Library" property is set to "Multi-Threaded DLL", change it to "Multi-Threaded" ?
http://stackoverflow.com/questions/1715157/microsoft-vc-runtime-requirement-and-sxs-error-for-setup-custom-action-in-vista/1715293#1715293
Comment by Adam Haile on Microsoft VC Runtime Requirement and SXS error for Setup Custom Action in Vista
Adam Haile
2009-11-11T13:57:15Z
2009-11-11T13:57:15Z
Ok, but how do I do that. I could not find how to compile that into the binary statically.
http://stackoverflow.com/questions/1667291/get-custom-file-version-info-from-a-native-binary-using-c/1667935#1667935
Comment by Adam Haile on Get Custom File Version Info from a Native binary using C#
Adam Haile
2009-11-03T15:29:55Z
2009-11-03T15:29:55Z
Ok, and I could definitely PInvoke into these APIs, but is there absolutely no .NET API that would let me do this?
http://stackoverflow.com/questions/1408780/mono-compatible-networking-socket-library/1428430#1428430
Comment by Adam Haile on Mono Compatible Networking/Socket Library
Adam Haile
2009-09-16T13:26:44Z
2009-09-16T13:26:44Z
Strange... it just seems weird that this hasn't already been done. Every time I do something that uses sockets I end up writing basically the same code over again... figured someone would've already done it and packaged it in a nice library.
http://stackoverflow.com/questions/1408780/mono-compatible-networking-socket-library/1424222#1424222
Comment by Adam Haile on Mono Compatible Networking/Socket Library
Adam Haile
2009-09-15T14:10:36Z
2009-09-15T14:10:36Z
By "one level above" I mean that I don't want to deal with writing the threading code, handling multiple connections, etc... see updated question above...
http://stackoverflow.com/questions/1408780/mono-compatible-networking-socket-library
Comment by Adam Haile on Mono Compatible Networking/Socket Library
Adam Haile
2009-09-11T04:18:55Z
2009-09-11T04:18:55Z
Yes, I mean IP Sockets. And sure, I can use the standard socket classes, but every time I do it's the same thing over and over. I have to handle all the multi-threading / async stuff <i>again</i>
I just kind of figured that at this point that was basically done already.... I'm looking for something that is 1 level above TcpClient and TcpListener.
http://stackoverflow.com/questions/1402120/winforms-application-in-monodevelop
Comment by Adam Haile on WinForms Application in MonoDevelop
Adam Haile
2009-09-09T21:46:10Z
2009-09-09T21:46:10Z
Yeah, but that's not the point, I just want to use MonoDevelop...for a whole bunch of reasons.
http://stackoverflow.com/questions/1331536/video-codecs-supported-in-upnp-av/1331577#1331577
Comment by Adam Haile on Video Codecs supported in UPnP AV
Adam Haile
2009-08-26T01:40:45Z
2009-08-26T01:40:45Z
See edit in original question...
http://stackoverflow.com/questions/1135190/completely-net-zerconf-implementation-for-xna/1138883#1138883
Comment by Adam Haile on Completely .NET ZerConf Implementation for XNA
Adam Haile
2009-07-16T22:08:14Z
2009-07-16T22:08:14Z
Thanks for the answer, I didn't realize that XNA was limited like that.
http://stackoverflow.com/questions/1135190/completely-net-zerconf-implementation-for-xna/1138883#1138883
Comment by Adam Haile on Completely .NET ZerConf Implementation for XNA
Adam Haile
2009-07-16T17:44:40Z
2009-07-16T17:44:40Z
Really? There's no way to even do local network communication? i.e. interact with a custom server running on my home network? I though I've seen stuff like that before...
http://stackoverflow.com/questions/1120307/free-visual-studio-build-automation-solution/1120548#1120548
Comment by Adam Haile on Free Visual Studio Build Automation Solution
Adam Haile
2009-07-13T16:53:14Z
2009-07-13T16:53:14Z
Does that support building non-.NET languages though?
http://stackoverflow.com/questions/1120307/free-visual-studio-build-automation-solution
Comment by Adam Haile on Free Visual Studio Build Automation Solution
Adam Haile
2009-07-13T16:22:18Z
2009-07-13T16:22:18Z
It's for building Commercial software