User Adam Tegen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T06:18:20Zhttp://stackoverflow.com/feeds/user/4066http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/102714/what-was-your-first-home-computer91What was your first home computer?Adam Tegen2008-09-19T15:18:57Z2009-11-25T05:04:19Z
<p>What was your first home computer? The one that made you "fall in love" with programming.</p>
<p><hr /></p>
<p><strong>There are 300+ entries, many (most?) of which are duplicates.</strong></p>
<p>As with all StackOverflow Poll type Q&As, please make certain your answer is NOT listed already before adding a new answer - searching doesn't always find it (model naming variations, I assume). </p>
<ul>
<li><p><em>If it already exists</em>, vote that one up so we see what the most popular answer is, rather than duplicating an existing entry.</p></li>
<li><p><em>If you see a duplicate</em>, vote it down so the top entries have only one of each model listed.</p></li>
<li><p><em>If you have interesting or additional information to add</em>, use a comment or edit the original entry rather than creating a duplicate.</p></li>
</ul>
http://stackoverflow.com/questions/734484/process-timeout-without-showing-any-error-in-test-execution-using-cc-net/1646919#16469190Answer by Adam Tegen for Process timeout without showing any error in test execution using cc.netAdam Tegen2009-10-29T22:11:52Z2009-10-29T22:11:52Z<p>I've seen this happen if a test has an assertion, e.g. Debug.Assert(something here). When this happens to me in CC.Net, the CC.Net build pops up a message box for the assertion. Since no one closes out the message box on the build server, the NUnit test times out.</p>
http://stackoverflow.com/questions/1498379/msflexgrid-unicode0msflexgrid UnicodeAdam Tegen2009-09-30T14:12:43Z2009-10-22T05:00:04Z
<p>I have an old project that I am trying to Unicode enable. I am trying to put Unicode data into an msflexgrid, but it comes out as question marks.</p>
<p>Is there some trick to getting MSFlexGrid to work with Unicode data? Will it work at all? If not, is there a good OCX replacement that I could use?</p>
http://stackoverflow.com/questions/223438/how-do-i-update-an-environment-variable-in-a-visual-studio-deployment-project1How do I update an Environment Variable in a Visual Studio Deployment ProjectAdam Tegen2008-10-21T20:43:52Z2009-10-20T21:45:34Z
<p>I would like to append a path to the PATH environment variable in a Visual Studio 2005 deployment project. How does one do this?</p>
http://stackoverflow.com/questions/1106065/xpath-support-in-xerces-c0XPath support in Xerces-CAdam Tegen2009-07-09T19:46:15Z2009-10-20T08:48:06Z
<p>I am supporting a legacy C++ application which uses Xerces-C for XML parsing. I've been spoiled by .Net and am used to using XPath to select nodes from a DOM tree.</p>
<p>Is there any way to get access some limited XPath functionality in Xerces-C? I'm looking for something like selectNodes("/for/bar/baz"). I could do this manually, but XPath is so nice by comparison.</p>
http://stackoverflow.com/questions/1591700/how-to-execute-a-wix-custom-action-dll-with-dependencies0How to execute a WiX Custom Action dll with dependenciesAdam Tegen2009-10-19T23:26:42Z2009-10-20T07:31:00Z
<p>I want to create a CustomAction C# dll that depends on a third party .Net DLL (in this specific case, its MySql.Data.dll). I have the C# custom action dll working with the WiX fragment below. I'm just trying to figure out how to safely add a dependency to the Custom Action. Note: I don't actually need this 3rd party dll for the installed application to run.</p>
<pre><code> <Binary Id="MyCustomAction.dll" SourceFile="MyCustomAction.CA.dll" />
<CustomAction Id="FixupConfigForMysql" Return="check" />
<InstallExecuteSequence>
<Custom Action='FixupConfigForMysql' After='InstallFiles'>NOT Installed</Custom>
</InstallExecuteSequence>
</code></pre>
<p>Do I need to install the 3rd party dll (MySql.Data.dll) in order to get the custom action to run?</p>
<p>Can I just add another Binary tag with the 3rd party dll?</p>
http://stackoverflow.com/questions/1498379/msflexgrid-unicode/1504137#15041370Answer by Adam Tegen for msflexgrid UnicodeAdam Tegen2009-10-01T14:00:09Z2009-10-01T14:20:58Z<p><strong>Does MS Flex Grid support Unicode?</strong> No.</p>
<p><strong>Is there a suitable replacement?</strong> Yes.</p>
<p>The MS Hierarchical Flexgrid (MSHFLXGD.OCX) appears to have the same API and supports UNICODE. <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;275201" rel="nofollow">http://support.microsoft.com/default.aspx?scid=kb;en-us;275201</a></p>
<p>I have confirmed that you can send unicode data to this OCX.</p>
<p><strong>Where can I get MS Hierarchical Flexgrid?</strong> VS6SP6.</p>
<p>MSHFLXGD.OCX comes with Visual Studio 6. The latest version is 6.0.88.4, which can be found in <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=A8494EDB-2E89-4676-A16A-5C5477CB9713&displaylang=en" rel="nofollow">Visual Studio 6 Service Pack 6</a>.</p>
<p>If you don't have the ancient Visual Studio 6, you can do the following:</p>
<ol>
<li>Download <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=A8494EDB-2E89-4676-A16A-5C5477CB9713&displaylang=en" rel="nofollow">Visual Studio 6 Service Pack 6</a> (Vs6sp6.exe)</li>
<li>Extract MSHFlxGd.CAB from Vs6sp6.exe</li>
<li>Extract the contents of MSHFlxGd.CAD.</li>
<li>Install MSHFLXGD.INF by right-clicking on it and pressing install. (This copies MSHFlxGd.ocx to c:\windows\system32)</li>
<li>#4 didn't register the OCX for me, so I manually called regsvr32 on the ocx.</li>
</ol>
http://stackoverflow.com/questions/1494399/how-do-i-search-find-and-replace-in-an-stl-string3How do I Search/Find and Replace in an STL stringAdam Tegen2009-09-29T19:13:41Z2009-09-29T19:47:37Z
<p>Is there a way to replace all occurrences of a substring with another string in std::string?</p>
<p>For instance:</p>
<pre><code>void SomeFunction(std::string& str)
{
str = str.replace("hello", "world"); //< I'm looking for something nice like this
}
</code></pre>
http://stackoverflow.com/questions/1494399/how-do-i-search-find-and-replace-in-an-stl-string/1494453#14944530Answer by Adam Tegen for How do I Search/Find and Replace in an STL stringAdam Tegen2009-09-29T19:26:00Z2009-09-29T19:26:00Z<p>I believe this would work</p>
<p>It takes const char*'s as a parameter.</p>
<pre><code>//params find and replace cannot be NULL
void FindAndReplace( std::string& source, const char* find, const char* replace )
{
//ASSERT(find != NULL);
//ASSERT(replace != NULL);
size_t findLen = strlen(find);
size_t replaceLen = strlen(replace);
size_t pos = 0;
//search for the next occurrence of find within source
while ((pos = source.find( it, pos)) != std::string::npos)
{
//replace the found string with the replacement
source.replace( pos, findLen, replace );
//the next line keeps you from searching your replace string,
//so your could replace "hello" with "hello world"
//and not have it blow chunks.
pos += replaceLen;
}
}
</code></pre>
http://stackoverflow.com/questions/198852/visual-studio-2003-merge-modules2Visual Studio 2003 Merge ModulesAdam Tegen2008-10-13T20:07:32Z2009-09-22T14:06:02Z
<p>I am using Visual Studio 2005 to make an install. The application has a dependency on a DLL that was built with MFC 7.1 (from Visual Studio 2003).</p>
<p>Are there merge modules for MFC 7.1 or other redistributables like there are for MFC 8? Where could they be found?</p>
http://stackoverflow.com/questions/1395022/how-to-get-a-long-date-format-from-datetime-without-a-weekday0How to get a Long Date format from DateTime without a weekdayAdam Tegen2009-09-08T16:45:54Z2009-09-08T19:22:40Z
<p>I'm looking for a locale-aware way of acquiring a long date time without the weekday. Just such a beast exist?</p>
<p>Below is the code I use to get the long date format including the weekday:</p>
<pre><code>DateTime time = ...
String formattedDate = time.ToLongDateString();
</code></pre>
<p><strong>Edit</strong></p>
<p>Examples of what I would like to see:</p>
<ul>
<li>en-us: December 5, 2009</li>
<li>fr-fr: 5 décembre 2009</li>
<li>es-es: 05 de diciembre de 2009</li>
</ul>
<p>ToLongDateString() returns the following:</p>
<ul>
<li>en-us: Saturday, December 5, 2009</li>
<li>fr-fr: samedi 5 décembre 2009</li>
<li>es-es: sábado, 05 de diciembre de 2009</li>
</ul>
http://stackoverflow.com/questions/1395022/how-to-get-a-long-date-format-from-datetime-without-a-weekday/1395674#13956742Answer by Adam Tegen for How to get a Long Date format from DateTime without a weekdayAdam Tegen2009-09-08T18:50:39Z2009-09-08T18:50:39Z<p>This seemed to do the trick. </p>
<ol>
<li>Enumerate all valid datetime patterns: CultureInfo.DateTimeFormat.GetAllDateTimePatterns</li>
<li>Select longest pattern (presumably this is the best match) that:
<ul>
<li>Is a substring of the CultureInfo.DateTimeFormat.LongDatePattern</li>
<li>Does not contain "ddd" (short day name)</li>
<li>Does not contain "dddd" (long day name)</li>
</ul></li>
</ol>
<p>This appears to come up with the strings I was looking for.</p>
<p>See code below:</p>
<pre><code>class DateTest
{
static private string GetDatePatternWithoutWeekday(CultureInfo cultureInfo)
{
string[] patterns = cultureInfo e.DateTimeFormat.GetAllDateTimePatterns();
string longPattern = cultureInfo.DateTimeFormat.LongDatePattern;
string acceptablePattern = String.Empty;
foreach (string pattern in patterns)
{
if (longPattern.Contains(pattern) && !pattern.Contains("ddd") && !pattern.Contains("dddd"))
{
if (pattern.Length > acceptablePattern.Length)
{
acceptablePattern = pattern;
}
}
}
if (String.IsNullOrEmpty(acceptablePattern))
{
return longPattern;
}
return acceptablePattern;
}
static private void Test(string locale)
{
DateTime dateTime = new DateTime(2009, 12, 5);
Thread.CurrentThread.CurrentCulture = new CultureInfo(locale);
string format = GetDatePatternWithoutWeekday(Thread.CurrentThread.CurrentCulture);
string result = dateTime.ToString(format);
MessageBox.Show(result);
}
}
</code></pre>
<p>Technically, it probably wouldn't work if a long format had the name of the day sandwiched in the middle. For that, I should choose the pattern with longest common substring instead of longest exact match.</p>
http://stackoverflow.com/questions/456063/adding-button-into-a-listview-in-winforms0Adding button into a Listview in WinFormsAdam Tegen2009-01-18T22:50:33Z2009-08-31T06:00:02Z
<p>Is there a way to add a button control to a cell in inside a ListView in a WinForms app?</p>
http://stackoverflow.com/questions/1322801/piecewise-conversion-of-an-mfc-app-to-unicode-mbcs0Piecewise conversion of an MFC app to Unicode/MBCSAdam Tegen2009-08-24T14:39:48Z2009-08-24T15:58:50Z
<p>I have a large MFC application that I am extending to allow for multi-lingual input. At the moment I need to allow the user to enter Unicode data in edit boxes on a single dialog.</p>
<p>Is there a way to do this without turning UNICODE or MBCS on for the entire application? I only need a small part of the application converted at the moment. Is it possible to do this piecewise, and if so, how?</p>
<p><hr /></p>
<p>Clarification: I could use ::GetWindowTextW() to get Unicode information out of the window. I am trying to figure out how to allow the user to enter Unicode text in the window. Currently, <strong>characters the user types</strong> outside of the windows-1252 codepage show up as '?'. Is there a way to fix this?</p>
http://stackoverflow.com/questions/1239712/entering-unicode-data-in-visual-studio-c1Entering Unicode data in Visual Studio, C#Adam Tegen2009-08-06T15:32:06Z2009-08-06T15:38:16Z
<p>Is there a good way to type Unicode symbols in a C# file?</p>
<p>I'm looking for something to the effect of:</p>
<ol>
<li>Press ALT</li>
<li>Type Unicode Hex</li>
<li>Release Alt</li>
</ol>
<p>Currently, I'm having to type the symbol into word and copy-paste it into my source file.</p>
http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache1CruiseControl.Net Dashboard + ApacheAdam Tegen2009-01-22T23:24:28Z2009-07-31T19:59:34Z
<p>I'm trying to get cc.net dashboard running on a build machine that also has apache on it.</p>
<p>I've tried installing mod_aspdotnet as described <a href="http://weblogs.asp.net/israelio/archive/2005/09/11/424852.aspx" rel="nofollow">here</a>. I can run the sample aspx page, but I am unable to get cc.net to run. Is there some magic I need to do?</p>
<p>For what it's worth, <a href="http://localhost/ccnet" rel="nofollow">http://localhost/ccnet</a> manages to redirect me to <a href="http://localhost/ccnet/ViewFarmReport.aspx" rel="nofollow">http://localhost/ccnet/ViewFarmReport.aspx</a> but that gives me a 404 error.</p>
<p>Below is the relevant httpd.conf section:</p>
<pre><code>#asp.net
LoadModule aspdotnet_module "modules/mod_aspdotnet.so"
AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo
<IfModule mod_aspdotnet.cpp>
# Mount the ASP.NET /asp application
AspNetMount /ccnet "C:/Program Files/CruiseControl.NET/webdashboard"
#/SampleASP is the alias name for asp.net to execute
# Map all requests for /asp to the application files
Alias /ccnet "C:/Program Files/CruiseControl.NET/webdashboard"
#maps /ccnet request to "C:/Program Files/CruiseControl.NET/webdashboard"
#now to get to the /ccnet type http://localhost/ccnet
#It'll redirect http://localhost/ccnet to "C:/Program Files/CruiseControl.NET/webdashboard"
# Allow asp.net scripts to be executed in the /SampleASP example
<Directory "C:/Program Files/CruiseControl.NET/webdashboard">
Options FollowSymlinks ExecCGI
Order allow,deny
Allow from all
DirectoryIndex index.htm index.aspx default.aspx
#default the index page to .htm and .aspx
</Directory>
# For all virtual ASP.NET webs, we need the aspnet_client files
# to serve the client-side helper scripts.
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
<Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</IfModule>
#asp.net
</code></pre>
http://stackoverflow.com/questions/1186415/wix-search-and-replace-on-a-configuration-file1WiX Search and Replace on a configuration fileAdam Tegen2009-07-27T04:21:08Z2009-07-27T23:41:29Z
<p>I'm trying to make an install using WiX and I need to modify a configuration file (not XML or INI) with entries that a customized WiX dialog.</p>
<p>Is there a good way to do this? Do I need to make a VB script custom action, perhaps?</p>
<p>Below is the relevant bits of the wxs file:</p>
<pre><code> <Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLLOCATION" Name="MyApp">
<Component Id="ap_cfg" KeyPath="yes" Guid="...">
<File Id="CONFIGFILE" Source="myConfig.cfg" />
</Component>
</Directory>
</Directory>
</Directory>
</code></pre>
http://stackoverflow.com/questions/1190017/should-i-use-vcredist-exe-or-the-msms-to-install-the-visual-c-runtime-library5Should I use vcredist.exe or the msm's to install the Visual C++ runtime libraryAdam Tegen2009-07-27T19:09:59Z2009-07-27T21:03:08Z
<p>What are the pluses and minuses to using the vcredist.exe versus the msm files to install the Visual C++ 8.0 runtime libraries?</p>
http://stackoverflow.com/questions/1184989/how-do-i-get-the-location-of-a-file-in-a-wix-script0How do I get the location of a file in a WiX ScriptAdam Tegen2009-07-26T16:46:21Z2009-07-26T16:56:44Z
<p>How do I make a custom action that references a file on the command line?</p>
<p>I have the custom action accessing the MYSQL properties correctly, but I haven't figured out the incantation to access the path to the installed sql script.</p>
<p>Below are the relevant sections of the WiX script. I am trying to get the custom action to reference the path to MYSQL_SCRIPTS file.</p>
<pre><code><Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLLOCATION" Name="MyProgram">
<Directory Id="DbSetupDir" Name="DbSetup">
<Component Id="SqlScripts" Guid="MYGUID">
<File Id="MYSQL_EXE" Source="mysql.exe" Vital="yes" />
<File Id="MYSQL_SCRIPTS" Source="MYSQL_SCRIPTS.sql" Vital="yes" />
</Component>
</Directory>
</Directory>
</Directory>
...
<CustomAction Id='LaunchFile'
FileKey='MYSQL_EXE'
ExeCommand='--host=[MYSQL_SERVER]
-u [MYSQL_USERNAME]
-P [MYSQL_PORT]
--password=[MYSQL_PASSWORD]
-e [DbSetupDir]\ALS_Scripts.sql'
Return='check'/>
</code></pre>
http://stackoverflow.com/questions/134224/generating-an-xml-serialization-assembly-as-part-of-my-build3Generating an Xml Serialization assembly as part of my build.Adam Tegen2008-09-25T16:06:16Z2009-07-20T17:38:58Z
<p>This code produces a FileNotFoundException, but ultimately runs without issue:</p>
<pre><code>void ReadXml()
{
XmlSerializer serializer = new XmlSerializer(typeof(MyClass));
//...
}
</code></pre>
<p>Here is the exception:</p>
<p><hr /></p>
<p>A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll</p>
<p>Additional information: Could not load file or assembly 'MyAssembly.XmlSerializers, Version=1.4.3190.15950, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.</p>
<p><hr /></p>
<p><strong>It appears that the framework automatically generates the serialization assembly if it isn't found.</strong> I can generate it manually using sgen.exe, which alleviates the exception. </p>
<p><strong>How do I get visual studio to generate the XML Serialization assembly automatically?</strong></p>
<p><hr /></p>
<p><strong>Update: The Generate Serialization Assembly: On setting doesn't appear to do anything.</strong></p>
http://stackoverflow.com/questions/1053180/loadlibrary-error-code-1271LoadLibrary() error code 127Adam Tegen2009-06-27T16:52:57Z2009-06-27T18:08:08Z
<p>I'm having trouble with LoadLibrary() and getting an error that doesn't make sense to me:</p>
<pre><code> ::SetLastError(0);
m_hDll = ::LoadLibrary(szName);
if (m_hDll == NULL) // Failure to load the DLL.
{
DWORD err = GetLastError();
}
</code></pre>
<p>The error is 127 ("The specified procedure could not be found.") <strong>That doesn't make any sense to me on a call to LoadLibrary().</strong> I haven't called GetProcaddress() yet. </p>
<p>The DLL (and the application) are both compiled with VS++ 2005 SP1.</p>
<p>What could be going wrong?</p>
http://stackoverflow.com/questions/1013817/wpf-fade-animation0WPF Fade AnimationAdam Tegen2009-06-18T16:43:47Z2009-06-18T23:03:55Z
<p>How would I make a control fade in/out when it becomes Visible. </p>
<p>Below is my failed attempt:</p>
<pre><code><Window x:Class="WadFileTester.Form1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Name="MyWindow" Title="WAD File SI Checker" Height="386" Width="563" WindowStyle="SingleBorderWindow" DragEnter="Window_DragEnter" DragLeave="Window_DragLeave" DragOver="Window_DragOver" Drop="Window_Drop" AllowDrop="True">
<Window.Resources>
<Style TargetType="ListView" x:Key="animatedList">
<Style.Triggers>
<DataTrigger Binding="{Binding Visibility}" Value="Visible">
<DataTrigger.EnterActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation
Storyboard.TargetProperty="Opacity"
From="0.0" To="1.0" Duration="0:0:5"
/>
</Storyboard>
</BeginStoryboard>
</DataTrigger.EnterActions>
<DataTrigger.ExitActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation
Storyboard.TargetProperty="Opacity"
From="1.0" To="0.0" Duration="0:0:5"
/>
</Storyboard>
</BeginStoryboard>
</DataTrigger.ExitActions>
</DataTrigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Grid>
<ListView Name="listView1" Style="{StaticResource animatedList}" TabIndex="1" Margin="12,41,12,12" Visibility="Hidden">
</ListView>
</Grid>
</Window>
</code></pre>
http://stackoverflow.com/questions/1013358/wpf-databinding-checkbox-ischecked0WPF Databinding CheckBox.IsCheckedAdam Tegen2009-06-18T15:27:48Z2009-06-18T17:38:40Z
<p>How would I bind the IsChecked member of a CheckBox to a member variable in my form? </p>
<p>(I realize I can access it directly, but I am trying to learn about databinding and WPF)</p>
<p>Below is my failed attempt to get this working.</p>
<p>XAML:</p>
<pre><code><Window x:Class="MyProject.Form1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Title" Height="386" Width="563" WindowStyle="SingleBorderWindow">
<Grid>
<CheckBox Name="checkBoxShowPending" TabIndex="2" Margin="0,12,30,0" Checked="checkBoxShowPending_CheckedChanged" Height="17" VerticalAlignment="Top" HorizontalAlignment="Right" Width="92" Content="Show Pending" IsChecked="{Binding ShowPending}">
</CheckBox>
</Grid>
</Window>
</code></pre>
<p>Code:</p>
<pre><code>namespace MyProject
{
public partial class Form1 : Window
{
private ListViewColumnSorter lvwColumnSorter;
public bool? ShowPending
{
get { return this.showPending; }
set { this.showPending = value; }
}
private bool showPending = false;
private void checkBoxShowPending_CheckedChanged(object sender, EventArgs e)
{
//checking showPending.Value here. It's always false
}
}
}
</code></pre>
http://stackoverflow.com/questions/269423/how-to-generate-wix-xml-from-a-reg-file6How to generate WiX XML from a .reg file?Adam Tegen2008-11-06T16:54:33Z2009-06-09T15:19:16Z
<p><strong>Is there a tool to generate WiX XML given a .reg file?</strong></p>
<p><hr /></p>
<p>In 2.0, you were supposed to be able to run tallow to generate registry XML:</p>
<pre><code>tallow -r my.reg
</code></pre>
<p>For what it's worth, the version of tallow I have is producing empty XML.</p>
<p>In 3.0, tallow has been replaced with heat, but I can't figure out how to get it to produce output from a .reg file.</p>
<p>Is there a way to do this in 3.0?</p>
http://stackoverflow.com/questions/227731/int128-in-net2Int128 in .Net?Adam Tegen2008-10-22T22:17:19Z2009-06-01T16:45:24Z
<p>I need to do some large integer math. Are there any classes or structs out there that represent a 128-bit integer and implement all of the usual operators?</p>
<p>BTW, I realize that decimal can be used to represent a 96-bit int.</p>
http://stackoverflow.com/questions/452323/pdf-generation-library-supporting-gradient-fills0PDF Generation library supporting gradient fillsAdam Tegen2009-01-16T22:45:35Z2009-05-24T23:18:27Z
<p>Are there any libraries out there (python, .net, c++, anything...) that can generate PDF libraries that also includes features like gradient shading?</p>
http://stackoverflow.com/questions/821839/mfc-why-does-my-spin-control-work-backwards1MFC: Why does my spin control work backwardsAdam Tegen2009-05-04T20:18:34Z2009-05-04T20:25:34Z
<p>Using MS Visual Studio, I have attached a spin control to an edit control using the "auto buddy" property. </p>
<p>The spin control alters the edit box, but the up button decrements the value and the down button increments the value. </p>
<p>How do you fix this?</p>
http://stackoverflow.com/questions/93770/eefileloadexception-when-using-c-classes-in-cwin32-app2EEFileLoadException when using C# classes in C++(win32 app)Adam Tegen2008-09-18T15:49:31Z2009-04-25T13:56:50Z
<p>For deployment reasons, I am trying to use IJW to wrap a C# assembly in C++ instead of using a COM Callable Wrapper. </p>
<p>I've done it on other projects, but on this one, I am getting an EEFileLoadException. Any help would be appreciated!</p>
<p>Managed C++ wrapper code (this is in a DLL):</p>
<pre><code>extern "C" __declspec(dllexport) IMyObject* CreateMyObject(void)
{
//this class references c# in the constructor
return new CMyWrapper( );
}
extern "C" __declspec(dllexport) void DeleteMyObject(IMyObject* pConfigFile)
{
delete pConfigFile;
}
extern "C" __declspec(dllexport) void TestFunction(void)
{
::MessageBox(NULL, _T("My Message Box"), _T("Test"), MB_OK);
}
</code></pre>
<p>Test Code (this is an EXE):</p>
<pre><code>typedef void* (*CreateObjectPtr)();
typedef void (*TestFunctionPtr)();
int _tmain testwrapper(int argc, TCHAR* argv[], TCHAR* envp[])
{
HMODULE hModule = ::LoadLibrary(_T("MyWrapper"));
_ASSERT(hModule != NULL);
PVOID pFunc1 = ::GetProcAddress(hModule, "TestFunction");
_ASSERT(pFunc1 != NULL);
TestFunctionPtr pTest = (TestFunctionPtr)pFunc1;
PVOID pFunc2 = ::GetProcAddress(hModule, "CreateMyObject");
_ASSERT(pFunc2 != NULL);
CreateObjectPtr pCreateObjectFunc = (CreateObjectPtr)pFunc2;
(*pTest)(); //this successfully pops up a message box
(*pCreateObjectFunc)(); //this tosses an EEFileLoadException
return 0;
}
</code></pre>
<p>For what it's worth, the Event Log reports the following:
.NET Runtime version 2.0.50727.143 -
Fatal Execution Engine Error (79F97075) (80131506)</p>
<p>Unfortunately, Microsoft has no information on that error.</p>
http://stackoverflow.com/questions/97388/what-is-the-best-exercise-for-good-posture5What is the Best Exercise for Good Posture?Adam Tegen2008-09-18T21:54:10Z2009-03-24T21:26:08Z
<p>I sit in an office chair all day long. I try to keep good posture, but I find myself in any number of bad positions throughout the day.</p>
<p>Is there any particular exercise that would help maintain good posture for longer periods of time?</p>
http://stackoverflow.com/questions/338950/what-is-the-managed-c-equivalent-to-the-c-using-statement2What is the Managed C++ equivalent to the C# using statementAdam Tegen2008-12-03T22:16:21Z2009-03-24T18:17:43Z
<p>How would one code the following C# code in Managed C++</p>
<pre><code>void Foo()
{
using (SqlConnection con = new SqlConnection("connectionStringGoesHere"))
{
//do stuff
}
}
</code></pre>
<p><strong>Clarificaton:</strong>
For managed objects.</p>
http://stackoverflow.com/questions/164926/c-how-do-i-round-a-decimal-value-to-2-decimal-places-for-output-on-a-page/164934#164934Comment by Adam Tegen on c# - How do I round a decimal value to 2 decimal places (for output on a page)Adam Tegen2009-11-30T20:41:21Z2009-11-30T20:41:21ZTechinically, for a decimal, it would be 123.4567m, yes? Without the "m" suffix, it's a double
http://stackoverflow.com/questions/1591700/how-to-execute-a-wix-custom-action-dll-with-dependencies/1592405#1592405Comment by Adam Tegen on How to execute a WiX Custom Action dll with dependenciesAdam Tegen2009-10-20T16:59:18Z2009-10-20T16:59:18ZThis did appear to just work, possibly because of the custom action build process handles adding these dependencies. If I understand it correctly, they become part of the .CA.dll that is generated by the Custom Action build.
<a href="http://blogs.msdn.com/jasongin/archive/2008/05/23/custom-action-project-templates.aspx" rel="nofollow">blogs.msdn.com/jasongin/archive/…</a>http://stackoverflow.com/questions/244268/free-coderush-express-worth-the-time/447304#447304Comment by Adam Tegen on Free CodeRush Express: worth the time?Adam Tegen2009-10-13T13:41:39Z2009-10-13T13:41:39ZI also had issues with memory and CPU issues with the 2009.2.4 version and had to uninstall.http://stackoverflow.com/questions/1395022/how-to-get-a-long-date-format-from-datetime-without-a-weekday/1395632#1395632Comment by Adam Tegen on How to get a Long Date format from DateTime without a weekdayAdam Tegen2009-09-08T21:01:21Z2009-09-08T21:01:21ZI think adding that to the regex would help, yes.http://stackoverflow.com/questions/1395022/how-to-get-a-long-date-format-from-datetime-without-a-weekday/1395632#1395632Comment by Adam Tegen on How to get a Long Date format from DateTime without a weekdayAdam Tegen2009-09-08T19:01:03Z2009-09-08T19:01:03ZThis is nice and simple, but doesn't handle <i>all</i> cases. For instance ka-GE is "yyyy 'წლის' dd MM, dddd". This answer would leave the trailing commahttp://stackoverflow.com/questions/1322801/piecewise-conversion-of-an-mfc-app-to-unicode-mbcs/1322928#1322928Comment by Adam Tegen on Piecewise conversion of an MFC app to Unicode/MBCSAdam Tegen2009-08-24T15:07:14Z2009-08-24T15:07:14ZI can't to that in this case. There would be tens of thousands of calls to hunt down and convert.http://stackoverflow.com/questions/1184989/how-do-i-get-the-location-of-a-file-in-a-wix-script/1184999#1184999Comment by Adam Tegen on How do I get the location of a file in a WiX ScriptAdam Tegen2009-07-27T04:51:37Z2009-07-27T04:51:37ZThanks. The solution worked and the link was exactly what I was looking for.http://stackoverflow.com/questions/1106065/xpath-support-in-xerces-c/1106131#1106131Comment by Adam Tegen on XPath support in Xerces-CAdam Tegen2009-07-09T20:35:44Z2009-07-09T20:35:44ZHas anyone used this functionality? Has it worked? If so, for what versions of Xerces-C?http://stackoverflow.com/questions/1053180/loadlibrary-error-code-127/1053208#1053208Comment by Adam Tegen on LoadLibrary() error code 127Adam Tegen2009-06-27T17:22:02Z2009-06-27T17:22:02ZI haven't called GetProcAddress() yet. What export could be missing?http://stackoverflow.com/questions/269423/how-to-generate-wix-xml-from-a-reg-file/739612#739612Comment by Adam Tegen on How to generate WiX XML from a .reg file?Adam Tegen2009-04-24T20:46:03Z2009-04-24T20:46:03ZWas this a recent addition to Wix3? Is this now in heat?http://stackoverflow.com/questions/356023/what-technology-do-you-use-to-build-your-installer/356040#356040Comment by Adam Tegen on What technology do you use to build your installer?Adam Tegen2009-03-05T20:40:58Z2009-03-05T20:40:58Z+1 WiX. Documentation isn't great, but it creates great installershttp://stackoverflow.com/questions/269423/how-to-generate-wix-xml-from-a-reg-file/270442#270442Comment by Adam Tegen on How to generate WiX XML from a .reg file?Adam Tegen2009-02-27T23:38:53Z2009-02-27T23:38:53ZI'm glad I could help!http://stackoverflow.com/questions/595791/managed-c-how-do-i-get-my-unmanaged-verison-number-to-match-my-assembly-versio/595824#595824Comment by Adam Tegen on Managed C++: How do I get my unmanaged verison number to match my assembly version numberAdam Tegen2009-02-27T18:04:55Z2009-02-27T18:04:55ZWill this magically translate into version information, even in a Managed C++ DLL? http://stackoverflow.com/questions/366768/convert-bitmap-to-png-in-memory-in-c-win32Comment by Adam Tegen on Convert bitmap to PNG in-memory in C++ (win32)Adam Tegen2009-02-12T23:43:17Z2009-02-12T23:43:17ZI've used libpng to do in-memory encodinghttp://stackoverflow.com/questions/366768/convert-bitmap-to-png-in-memory-in-c-win32/540786#540786Comment by Adam Tegen on Convert bitmap to PNG in-memory in C++ (win32)Adam Tegen2009-02-12T23:42:26Z2009-02-12T23:42:26ZI'm pretty sure this uses libpng