User Adam - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:42:55Zhttp://stackoverflow.com/feeds/user/1341http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/900227/how-to-use-late-binding-to-invoke-method-with-byref-parameters0How to use late binding to invoke method with ByRef parametersAdam2009-05-22T22:16:44Z2009-08-24T03:00:02Z
<p>I have a COM component that I want to call using late-binding from VB.NET (using the painful Primary Interop Assembly - PIA method)</p>
<p>My IDL signature for the COM method looks like:</p>
<pre><code>HRESULT Send([in]BSTR bstrRequestData,
[out]VARIANT *pvbstrResponseData,
[out]VARIANT *pvnExtCompCode,
[out,retval]int *pnCompletionCode);
</code></pre>
<p>So 2 'ByRef' parameters in VB.NET lingo, and a return value.</p>
<p>I attempt to invoke this method like so:</p>
<pre><code>Dim parameters(2) As Object
parameters(0) = "data"
parameters(1) = New Object()
parameters(2) = New Object()
Dim p As New ParameterModifier(3)
p(1) = True
p(2) = True
Dim parameterMods() As ParameterModifier = {p}
objReturn = MyObject.GetType().InvokeMember("Send", _
BindingFlags.InvokeMethod, _
Nothing, _
MyObject, _
parameters, _
parameterMods, _
Nothing, _
Nothing)
</code></pre>
<p>This fails spectactularly with an exception: {"Invalid callee. (Exception from HRESULT: 0x80020010 (DISP_E_BADCALLEE))"}</p>
<p>I assume this means I'm doing something wrong in my parameterMods array. Because if I comment out setting any value of the ParameterMods array to 'True' - it works. It of course doesnt update the parameters that are [out] parameters and so it's not working as intended.</p>
<p>Is there something else to consider since the method also has a return value? The <a href="http://msdn.microsoft.com/en-us/library/system.reflection.parametermodifier.aspx" rel="nofollow">MSDN example</a> pretty much does exactly what I am doing, with the exception that example did not have a return value. Any help is appreciated.</p>
http://stackoverflow.com/questions/813380/how-do-you-export-and-import-visual-studio-macros0How do you export and import Visual Studio macros?Adam2009-05-01T21:25:07Z2009-08-23T22:00:07Z
<p>I would like to export some macros that I have defined and be able to import them into another clean install of Visual Studio with the same module/naming structure that I have defined.</p>
<p>I have some menu command customizations that execute my macros - so to work in another install of VS, it needs the same macros available.</p>
<p>I would like to avoid a manual step of having to create the macro manually and copy/paste my macro code.</p>
<p>Is this possible? Doesn't seem like 'macros' is an available option to import/export through Tools > Import and Export Settings.</p>
http://stackoverflow.com/questions/12556/what-is-your-experience-using-the-tibco-general-interface4What is your experience using the TIBCO General Interface?Adam2008-08-15T18:00:04Z2009-08-05T11:22:00Z
<p>It looks interesting and I've played around with it some --- but the development IDE in a web browser seems to be nightmare eventually.</p>
<p>Does anyone have experience using it and what are your thoughts?</p>
http://stackoverflow.com/questions/1208954/c-struct-grabbing-data-by-offset/1209012#12090120Answer by Adam for c struct grabbing data by offsetAdam2009-07-30T20:04:39Z2009-07-30T20:04:39Z<p>The memory layout of a struct is defined by your compiler, your code would only work if you have 0 byte padding between struct members. Usually this is not recommended b/c 0 byte padding would have your struct overlay across the standard read sizes of most processors.</p>
<p>Some useful macros for your problem:</p>
<pre><code>#define GET_FIELD_OFFSET(type, field) ((LONG)&(((type *)0)->field))
#define GET_FIELD_SIZE(type, field) (sizeof(((type *)0)->field))
</code></pre>
<p>example:</p>
<pre><code>NUMBER_KEY key;
key.num = 55;
int nOffSetWidget = GET_FIELD_OFFSET( NUMBER_KEY, widget);
int *pKeyNumAddress = (int *) &(key.widget) - nOffSetWidget );
printf("%d", * pKeyNumAddress ); // Should print '55'
</code></pre>
http://stackoverflow.com/questions/1132927/is-mvvm-possible-viable-in-a-dhtml-ria-application-no-silverlight-wpf/1133071#11330712Answer by Adam for Is MVVM possible/viable in a DHTML RIA application (no Silverlight/WPF)?Adam2009-07-15T18:24:17Z2009-07-30T19:34:22Z<p>Take a look at the ASP.NET data binding features in .NET 4.0 - comes out with Visual Studio 2010. This is exactly what you are looking for if you are ok with MS technology.</p>
<p><a href="http://blogs.visoftinc.com/archive/2009/05/27/ASP.NET-4.0-AJAX-Preview-4-Data-Binding.aspx" rel="nofollow">Blog that details the feature</a></p>
<p>Community technology preview on <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24645" rel="nofollow">codeplex</a></p>
<p>Theoretically you could just include the ASP.NET AJAX js file from your HTML files & make the solution cross-platform.</p>
<p>So to directly answer your question - it absolutely is a viable solution to the problem of creating maintainable, loosely coupled web user interfaces. And yes, the server side of your application is doing less - it becomes more of a true service layer, where all it deals with is data exchange. This is actually a good thing, b/c it promotes reuse across clients. Imagine your WPF app and your web app using the same middle tier server to send/receive data? Clients have a lot of available processing power anyway - why not leverage it to make you solution more scalable (the less the server is doing, the more work your clients are doing, which is distributed across ALL clients)</p>
<p>The tricky part is two way binding - where you hook into the event that some object had changed, and the event that something in the user interface has changed (user typed something into an input control, for example). One way binding would still be useful.</p>
<p>It seems like Microsoft is the only company right now building a full solution in the pattern you want. Yahoo's YUI library does do data binding that is semi-coherent, but not in the same pattern as WPF/Silverlight like you have built.</p>
http://stackoverflow.com/questions/54318/any-tools-to-get-code-churn-metrics-for-a-subversion-repository5Any tools to get code churn metrics for a Subversion repository?Adam2008-09-10T15:07:18Z2009-07-16T07:54:54Z
<p>I'm looking for any tools that can give you code churn metrics (graphs and charts would be even better) for a Subversion repository.</p>
<p>One tool I know of is <a href="http://www.statsvn.org/" rel="nofollow">statsvn</a> - a Java tool that creates some HTML reports and some code churn metrics. Statsvn reports the number of lines modified (churned) by user over time, some descriptive stats on LOC per file and folder/subfolder, etc.</p>
<p>I would like to know code churn in order to get a better idea of the state of the project. Idea behind this inspired by the MS research: <a href="http://research.microsoft.com/research/pubs/view.aspx?type=Publication&id=1359" rel="nofollow">Use of Relative Code Churn Measures to Predict System Defect Density</a></p>
<p>In a nutshell, the more that source code is churning (changing, whether adding new lines, deleting, changing,etc) the higher the probability that defects are being introduced into the system. The MS research paper says that the number of defects produced can be predicted based on a number of relative code churn measures.</p>
<p>I wanted to know if there are any others that are maybe open source, extensible, etc.</p>
http://stackoverflow.com/questions/1076154/javascript-event-synchronization/1076249#10762490Answer by Adam for Javascript Event SynchronizationAdam2009-07-02T19:31:07Z2009-07-15T18:31:07Z<p>Your approach #1 is the best way, and the most natural using jQuery. Most functions that act on the user interface and do something accept a callback function parameter, which gets called after the function has executed.</p>
<p>Where you are doing things not implemented in jQuery following the same pattern will make your code more readable. dominic's answer is a good terse example:</p>
<pre><code>function steps(){
stepOne(stepTwo);
}
function stepOne(callback){
var AsyncDone = function() {
//any Synchronus Things here
callback();
}
someAsyncFunction( params, AsyncDone );
}
</code></pre>
http://stackoverflow.com/questions/254849/msbuild-isnt-making-the-build-completely-parallel1MSBuild isnt making the build completely parallelAdam2008-10-31T20:29:24Z2009-07-14T14:49:08Z
<p>I have an MSBuild project where within it I have a task that calls multiple projects where I set BuildInParallel = "true"</p>
<p>Example:</p>
<p></p>
<pre><code> <Message Text="MSBuild project list = @(ProjList)" />
<!-- Compile in parallel -->
<MSBuild Projects="@(ProjList)"
Targets="Build"
Properties="Configuration=$(Configuration)"
BuildInParallel="true" />
</code></pre>
<p></p>
<p>These sub-projects actually invoke a command-line tool to do the actual 'building' - call it compile.exe. Doing crude profiling (thank you taskmgr.exe) of the build process has the following results:</p>
<p>based on the /m setting - I see that exact number of MSBuild.exe processes started which is expected of course - the total available concurrent build processes.</p>
<p>However what I expect to see is around that many number of processes of compile.exe. Basically each MSBuild process will just turn around and invoke compile.exe. What I see is that a number of compile.exe's are started, then they slowly finish until I just see one sole compile.exe still around. The tasks that each compile.exe take a different amount of time, so it's expected that one of them takes a lot longer than the others.</p>
<p>However no other compile.exe's are spawned until the first 'batch' of them are finished. In other words if I have /m:4 - I will see 4 compile.exe's until all finish, then another 4 will be spawned.</p>
<p>This isn't exactly completely parallel to me. Has anyone else seen this behavior. Am I just misunderstanding something?</p>
http://stackoverflow.com/questions/1121492/web-page-image-effects-javascript-how-else/1121532#11215322Answer by Adam for Web page image effects - JavaScript ? how else ?Adam2009-07-13T19:21:08Z2009-07-13T19:21:08Z<p>For general effects and starting point for this type of user experience: <a href="http://jquery.com/" rel="nofollow">JQuery</a></p>
<p>From there - research jQuery plugins that do this type of thing. Good search terms may be carousel.</p>
http://stackoverflow.com/questions/1121025/sending-output-to-stdout-console-in-a-vb-net-win-form-project/1121043#11210430Answer by Adam for Sending output to stdout (console) in a VB.NET win form projectAdam2009-07-13T17:55:34Z2009-07-13T17:55:34Z<p><code>System.Console.WriteLin</code>e will also do the trick.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/zdf6yhx5.aspx" rel="nofollow">Documentation</a></p>
http://stackoverflow.com/questions/1110712/how-to-prevent-pressing-alt-in-modal-dialog-in-ie-not-switch-to-hidden-menu0How to prevent pressing ALT in modal dialog in IE not switch to hidden menuAdam2009-07-10T16:54:31Z2009-07-13T15:13:45Z
<p>When creating a dialog using window.showModalDialog (where the options do not display any addressbar or toolbar) from javascript in IE - the behavior of pressing the ALT key is doing something undesirable.</p>
<p>When you hit the ALT key when focus is on the modal dialog - the ALT key press event is handled by my javascript code fine, but whether I allow the event to continue to bubble up or not - it seems like IE is always jumping the focus to a 'hidden' menu in the modal dialog. You can get to this menu from a modal dialog by hitting ALT, and then space.</p>
<p>Sequence of events:</p>
<ol>
<li>From a modal dialog, user hits the ALT key</li>
<li>My event handling code catches this ALT key and does something</li>
<li>User hits another key</li>
<li>My event handling code (for any keyup) is not executed, seems like b/c the focus was on the alt+space menu, and the last key press jumped focus back to the modal dialog</li>
<li>User hits another key</li>
<li>My event handling code is executed as normal</li>
</ol>
<p>Here are the features I'm supplying to <code>showModalDialog</code>:</p>
<pre><code>var strFeatures = "unadorned:yes,resizable:no;scroll:yes;help:no;status:no;";
</code></pre>
<p>Is there anyway to prevent focus to the hidden menu after hitting the alt-key for modal dialogs? When creating a normal window using window.open - this behavior does NOT happen, and hitting ALT doesnt go to a hidden menu (assuming menubar is off, address bar is off, etc.)</p>
http://stackoverflow.com/questions/1076201/wpf-ui-layout-for-lob-applications/1076267#10762670Answer by Adam for WPF UI Layout for LOB ApplicationsAdam2009-07-02T19:34:25Z2009-07-02T19:34:25Z<p>What you want is Microsoft's best practices for <a href="http://msdn.microsoft.com/en-us/library/cc707819.aspx" rel="nofollow">composite client applications</a>.</p>
<p>This is probably the best thing to date as far as a framework and starting for business applications. It is what it sounds like - a framework and basis for building a larger app out of smaller components, which happens a lot when creating LOB business apps.</p>
<p>Now, very specific to WPF, is the <a href="http://msdn.microsoft.com/en-us/magazine/cc785479.aspx" rel="nofollow">prism framework</a>. Which I believe shares some of the same concepts as the above composite application blocks (CAB).</p>
http://stackoverflow.com/questions/1070835/should-i-be-encrypting-contents-of-browser-javascript-memory0Should I be encrypting contents of browser / javascript memory?Adam2009-07-01T19:14:22Z2009-07-01T19:31:41Z
<p>This is a security best practice and I'm wondering if I should even be wasting my time with this. </p>
<p>In the same vein of an initial crack of the Blu-ray movie format, hackers just inspected the memory of a player to snoop out a key value.</p>
<p>It seems like it's feasible to do the same thing with browser memory, and to look at values that the javascript interpreter has set - so should I be encrypting data that is in memory?</p>
<p>Thinking this through - it's eventually insane, b/c if my browser is displaying sensitive data on the screen, conceivable that piece of data is in memory and could be snooped. So it wouldnt matter if I had encrypting that same data in javascript somewhere.</p>
<p>I'm having a tough time explaining to my superiors of why we shouldnt go to this level of security...</p>
http://stackoverflow.com/questions/1070514/why-does-bing-obfuscate-their-javascript/1070528#10705286Answer by Adam for Why does Bing obfuscate their JavaScript?Adam2009-07-01T18:04:06Z2009-07-01T18:04:06Z<p>2 main reasons to obfuscate your code:</p>
<ul>
<li><p>Reduce the total size of the file (like you mentioned) If you replace a function called 'CallThisFunctionAndReturnAnArray' with 'C' - you've saved a lot of characters in your file.</p></li>
<li><p>Protect intellectual property - while if this is realistic is definite debatable, this is common justification for doing so. You can get around this with good tools, or if you are just really smart.</p></li>
</ul>
http://stackoverflow.com/questions/895270/visual-studio-2008-jquery-intellisense-sporadically-fails-restarting-vs-fixes/1060067#10600670Answer by Adam for Visual Studio 2008 jQuery IntelliSense sporadically fails, restarting VS fixesAdam2009-06-29T19:33:52Z2009-06-29T19:33:52Z<p>I dont know if this will help you, but I've encountered the following bug in VS 2008 JS intellisense:</p>
<p>When adding jQuery as a reference in an external file, and then I update JS I get:</p>
<p>'XmlHttpRequest is undefined' on the line:</p>
<pre><code>return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
</code></pre>
<p>It seems like the JS intellisense engine is actually executing some of the jQuery code (more than likely to inspect it so it can provide some more information about it). However it looks like window.ActiveXObject is null to the engine, and so it falls into the 'new XMLHttpRequest()' block - which also fails.</p>
<p>I hacked a workaround that breaks all browsers except IE - so not a good solution. My fix changes the following:</p>
<pre><code> xhr: function()
{
// hack to fix VS 2008 intellisense... note this breaks any browser
// except IE
var objXhr = { open: function() { },
setRequestHeader: function() { }
};
return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : objXhr;
},
</code></pre>
<p>Now my intellisense works.</p>
http://stackoverflow.com/questions/75980/best-practice-escape-or-encodeuri-encodeuricomponent10Best practice: escape, or encodeURI / encodeURIComponentAdam2008-09-16T19:24:34Z2009-06-19T09:33:31Z
<p>When encoding a query string to be sent to a web server - what is the best practice to use from javascript:</p>
<p>Use escape:</p>
<pre><code>escape("% +&=");
</code></pre>
<p>OR</p>
<p>use encodeURI() / encodeURIComponent()</p>
<pre><code>encodeURI("http://www.google.com?var1=value1&var2=value2");
encodeURIComponent("var1=value1&var2=value2");
</code></pre>
http://stackoverflow.com/questions/1002377/staffing-a-wpf-silverlight-project/1003508#10035081Answer by Adam for Staffing a WPF + Silverlight project Adam2009-06-16T19:27:03Z2009-06-17T16:32:16Z<p>I think the job position title du jour is 'Interaction Designer' - they are the ones who speak the lingo of user experience, usability, etc. In other words, the ones who are experts in 'interaction design.' You want a team of them instead of graphic designers.</p>
<p>Obligatory wikipedia article on iteraction design: <a href="http://en.wikipedia.org/wiki/Interaction%5Fdesign" rel="nofollow">here</a></p>
<p>Graphic designers are nice, but unless you are building an OS, you don't need a team of them. Just a few to build mock-ups in Blend, or Photoshop (and let your developers translate photoshop images to XAML with Visual Studio)</p>
http://stackoverflow.com/questions/210323/what-is-the-easiest-way-to-add-a-visual-studio-2008-context-menu-item1What is the easiest way to add a Visual Studio 2008 Context Menu Item?Adam2008-10-16T21:07:50Z2009-06-10T09:25:11Z
<p>I would like to add a custom menu item when you right-click a certain file extension in Visual Studio.</p>
<p>There seem to be some helper open source projects to accomplish this, but I'd like to ask if anyone has ever used them, and how easy were they - and can you help me and provide a starting point?</p>
<p>One I've researched is: <a href="http://www.codeplex.com/ManagedMenuExtension" rel="nofollow">http://www.codeplex.com/ManagedMenuExtension</a></p>
http://stackoverflow.com/questions/937681/createitem-vs-itemgroup/957142#9571420Answer by Adam for CreateItem vs ItemGroupAdam2009-06-05T17:37:29Z2009-06-05T17:37:29Z<p>I dont think the answer accepted has defined the difference.</p>
<p>The difference is:</p>
<ul>
<li><code>ItemGroup</code> is evaluated when the MSBuild script is loaded.</li>
<li><code>CreateItem</code> is evaluated when the Target is executed </li>
</ul>
<p>This can lead to different values of the Item within the script.</p>
<p>Take the example of a Task that does something with a all the files that match "*.txt" in a directory. If your MSBuild script is loaded in visual studio, only the files that existed when VS started will be in the Item if you use ItemGroup.</p>
<p>If you use CreateItem - it will do a search for all *.txt files when the target is executed.</p>
http://stackoverflow.com/questions/945980/required-tag-in-custom-msbuild-tasks/957130#9571300Answer by Adam for Required tag in Custom MSbuild TasksAdam2009-06-05T17:33:40Z2009-06-05T17:33:40Z<p>You can't tell the difference. Both will be null if the task doesnt set a default value in the task constructor.</p>
<p>I don't know if it should make a difference to the custom task. If a parameter is null or empty --- <code>String.IsNullOrEmpty()</code> --- then the task should branch into the default logic for that particular value.</p>
http://stackoverflow.com/questions/956910/how-do-i-reference-a-pia-so-my-build-works-ona-build-server/957114#9571140Answer by Adam for How do I reference a PIA so my build works ona build serverAdam2009-06-05T17:29:24Z2009-06-05T17:29:24Z<p>I would simply add a build step that installs X, Y, and Z to the GAC, and then finishes the build, runs unit tests, etc.</p>
<p>After that is complete, it uninstalls from the GAC. </p>
<p>The only way to have your build be 'self-contained' - is to stop depending on GAC installed assemblies. This isn't a build server config issue, it is a assembly architecture issue. If possible make those just regular assembly references that copied to the other project's bin folder when they are built. </p>
<p>That makes things a lot easy for end-user deployment - you can probably take advantage of Click-Once deployment without GAC installs.</p>
http://stackoverflow.com/questions/957065/which-style-of-return-should-i-use/957093#9570930Answer by Adam for Which style of return should I use?Adam2009-06-05T17:23:41Z2009-06-05T17:23:41Z<p>If the method is part of a low level library, then your standard .NET design probably dictates that you throw exceptions from your method.</p>
<p>This is how the .NET framework generally works. Your higher level callers should catch your exceptions.</p>
<p>However since you seem to be doing this from a UI thread, which has performance implications since you are responding to UI events - I do what Jay Riggs already suggested, return null, and make sure your callers check for a null return value.</p>
http://stackoverflow.com/questions/940399/how-to-call-a-com-component/940539#9405392Answer by Adam for How to call a com+ component?Adam2009-06-02T16:34:56Z2009-06-02T16:34:56Z<p>Simplest VB.NET code snippet possible:</p>
<pre><code>Dim myCom As Object
myCom = CreateObject("MyCom.ProgId")
myCom.Method(parms)
</code></pre>
<p>You need to replace "MyCom.ProgId" with the actual ProgId of your component - you can get this from the General tab of the properties of the component in the Component Services admin tool (sounds like you've already got a grasp of that)</p>
<p>myCom.Method(parms) </p>
<p>is simply a place holder for whatever method you want to invoke, with the parameters that method takes.</p>
<p>Here's a link to some examples of the VB.NET syntax:</p>
<p><a href="http://msdn.microsoft.com/library/de...eateObject.asp" rel="nofollow">http://msdn.microsoft.com/library/de...eateObject.asp</a></p>
<p><a href="http://www.samspublishing.com/articl...le.asp?p=25857" rel="nofollow">http://www.samspublishing.com/articl...le.asp?p=25857</a></p>
<p><a href="http://msdn.microsoft.com/library/en...asp?frame=true" rel="nofollow">http://msdn.microsoft.com/library/en...asp?frame=true</a></p>
http://stackoverflow.com/questions/939963/how-to-migrate-svn-to-another-repository/939984#9399843Answer by Adam for How to migrate svn to another repositoryAdam2009-06-02T14:48:05Z2009-06-02T14:48:05Z<p>Simplest way is using:</p>
<pre><code>svnadmin dump path/to/repos > repos.out
</code></pre>
<p>This will create a portable format for your repository (with history) in the file repos.out. You can then use:</p>
<pre><code>svnadmin load path/to/newrepos < repos.out
</code></pre>
<p>to load your 'dumped' repos to the new or existing one.</p>
http://stackoverflow.com/questions/927487/what-organizational-qualities-attract-top-programmers/927498#9274980Answer by Adam for What organizational qualities attract top programmers?Adam2009-05-29T18:37:46Z2009-05-29T18:37:46Z<p>I would check out this popular question:</p>
<p><a href="http://stackoverflow.com/questions/96501/perks-for-new-programmers">http://stackoverflow.com/questions/96501/perks-for-new-programmers</a></p>
<p>Convey these things in your posting on craigslist or monster - and watch the resumes pile in.</p>
http://stackoverflow.com/questions/267030/why-doesnt-msbuild-copy-as-i-would-expect/274974#2749740Answer by Adam for Why doesn't MSBuild copy as I would expectAdam2008-11-08T17:36:27Z2009-05-29T14:31:27Z<p>Very simple example that copies a directory contents and structure recursively:</p>
<pre><code><Copy SourceFiles="@(Compile)" DestinationFolder="c:\foocopy\%(Compile.RecursiveDir)"></Copy>
</code></pre>
<p>@(Compile) is an ItemGroup of all files that you want to copy. Could be something like:</p>
<pre><code> <ItemGroup>
<Compile Include=".\**\*.dll" />
</ItemGroup>
</code></pre>
<p>The Copy task will copy all the files into c:\foocopy just like xcopy.</p>
http://stackoverflow.com/questions/922231/how-do-i-monitor-failed-logon-attempts-in-windows/922274#9222742Answer by Adam for How do I monitor failed logon attempts in Windows?Adam2009-05-28T17:46:55Z2009-05-28T17:46:55Z<p>I would look at the Windows Event Log - the Security or System Log should have these events.</p>
<p>You can monitor the event log either manually with the Event Viewer administrative tool, or programmatically.</p>
http://stackoverflow.com/questions/922202/asp-net-windows-authentication-with-custom-roles/922263#9222631Answer by Adam for ASP.NET Windows Authentication with Custom RolesAdam2009-05-28T17:45:53Z2009-05-28T17:45:53Z<p>If I understand your question - no you don't need to use roles from Active Directory security groups as roles for your ASP.NET application. And you dont need to implement a custom Role provider. The default one simply retrieves the Roles from the ASP.NET application database.</p>
<p>You can simply have application defined roles in this database, that you create with the <code>aspnet_regsql.exe</code> utility (in the .NET 2.0 framework folder).</p>
<p>Probably the greatest collections of resources/information on this topic:
<a href="http://weblogs.asp.net/scottgu/archive/2006/02/24/ASP.NET-2.0-Membership%5F2C00%5F-Roles%5F2C00%5F-Forms-Authentication%5F2C00%5F-and-Security-Resources-.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2006/02/24/ASP.NET-2.0-Membership_2C00_-Roles_2C00_-Forms-Authentication_2C00_-and-Security-Resources-.aspx</a></p>
http://stackoverflow.com/questions/916219/getting-position-of-the-xml-element-inside-for-each-loop/916255#9162554Answer by Adam for Getting position of the XML element inside For Each loopAdam2009-05-27T15:01:21Z2009-05-27T15:01:21Z<p>You probably want something like:</p>
<pre><code>objBooks = objDoc.SelectSingleNode("//books")
Dim pos As Integer = 1
For Each book As XmlNode In objBooks.ChildNodes
Console.Write(pos & " ")
pos = pos + 1
Next
</code></pre>
http://stackoverflow.com/questions/885955/whats-the-compelling-reason-to-upgrade-to-visual-studio-2010-from-vs2008/894336#8943363Answer by Adam for What's the compelling reason to upgrade to Visual Studio 2010 from VS2008?Adam2009-05-21T18:22:05Z2009-05-21T18:22:05Z<ul>
<li>WPF Designer is up to par with the WinForms designer in VS2010. The WPF designer in VS2008 is average at best.</li>
<li>ASP.NET MVC baked in</li>
<li>Ability to write rich extensions to the Visual Studio env using MEF - I think this opens the door to an even richer set of VS extensions (and easier path for internal type extensions instead of waiting for a vendor to provide on)</li>
</ul>
http://stackoverflow.com/questions/277939/wcf-and-java/278008#278008Comment by Adam on WCF and JavaAdam2009-09-14T17:51:03Z2009-09-14T17:51:03Znot an answer, more of a question clarification... should probably be a comment to the questionhttp://stackoverflow.com/questions/442404/dyanamically-reterive-html-element-x-y-position-with-javascript/442474#442474Comment by Adam on Dyanamically reterive Html element (X,Y) position with JavaScriptAdam2009-07-29T20:19:03Z2009-07-29T20:19:03Zchange:
el = el.parentNode
to:
el = el.offsetParent;
and it seems to work for nested iframes now... I'm thinking that's what you intended?http://stackoverflow.com/questions/442404/dyanamically-reterive-html-element-x-y-position-with-javascript/442474#442474Comment by Adam on Dyanamically reterive Html element (X,Y) position with JavaScriptAdam2009-07-29T20:11:45Z2009-07-29T20:11:45ZDoesn't seem to work with iframes nested in each other. http://stackoverflow.com/questions/254849/msbuild-isnt-making-the-build-completely-parallel/1125921#1125921Comment by Adam on MSBuild isnt making the build completely parallelAdam2009-07-15T15:53:41Z2009-07-15T15:53:41Zyes, the projects are all ToolsVersion 3.5. Thanks for the referenceshttp://stackoverflow.com/questions/1110712/how-to-prevent-pressing-alt-in-modal-dialog-in-ie-not-switch-to-hidden-menuComment by Adam on How to prevent pressing ALT in modal dialog in IE not switch to hidden menuAdam2009-07-13T15:15:43Z2009-07-13T15:15:43ZTesting on IE8 - to clarify the alt-space menu doesnt appear when you just hit alt. BUT, focus seems to be on that alt-space menu until you hit another key. I edited the question for an example.http://stackoverflow.com/questions/1071292/is-xslt-a-dead-technologyComment by Adam on Is XSLT a dead technology?Adam2009-07-01T20:45:25Z2009-07-01T20:45:25Zyes. It is. Really really dead.http://stackoverflow.com/questions/1070514/why-does-bing-obfuscate-their-javascript/1070530#1070530Comment by Adam on Why does Bing obfuscate their JavaScript?Adam2009-07-01T19:16:35Z2009-07-01T19:16:35ZThis is not answering the question whatsoever. While it is a good answer to a question like 'What is MS doing to their Bing javascript?' it does nothing to answer 'Should you obfuscate your javascript?' http://stackoverflow.com/questions/1003613/how-to-make-a-div-100-of-page-not-screen-heightComment by Adam on How to make a div 100% of page (not screen) height?Adam2009-06-16T20:00:51Z2009-06-16T20:00:51ZWould it work to disable to scroll bar while you translucent gray div is displayed? Do you really want users to be able to scroll down to see something they cant do anything with anyway?http://stackoverflow.com/questions/1003490/ie-8-only-has-access-to-session-cookiesComment by Adam on IE 8 only has access to session cookies?Adam2009-06-16T19:29:06Z2009-06-16T19:29:06ZUsing session cookies in an application that works in IE7 and IE8.
I would check your IE security settings. Can you sniff the HTTP request using Fiddler or other HTTP sniffing tool? That might give you more insight on what is being passed back and forth from the browser to the server.http://stackoverflow.com/questions/940399/how-to-call-a-com-component/940539#940539Comment by Adam on How to call a com+ component?Adam2009-06-03T16:59:39Z2009-06-03T16:59:39ZYou don't need a reference to your COM component when you late binding - which is the syntax in my code example. The runtime will lookup the component by the ProgId string, load into memory, and try to invoke the method in your code.
This can create some new runtime error that you havent seen before if you try to invoke a method that doesnt exist, or pass bad parameters. Early binding prevents these types of errors, b/c the compiler will catch them.http://stackoverflow.com/questions/267030/why-doesnt-msbuild-copy-as-i-would-expect/274974#274974Comment by Adam on Why doesn't MSBuild copy as I would expectAdam2009-05-29T14:33:16Z2009-05-29T14:33:16Zshould have the bug fixed... alternate syntax for value of DestinationFolder:
DestinationFolder="@(Compile->'c:\foocopy\%(RecursiveDir)')"http://stackoverflow.com/questions/900227/how-to-use-late-binding-to-invoke-method-with-byref-parameters/901271#901271Comment by Adam on How to use late binding to invoke method with ByRef parametersAdam2009-05-26T16:48:32Z2009-05-26T16:48:32ZStill getting the DISP_E_BADCALLEE HRESULT. Any special data marshalling rules for VARIANT out parameters?http://stackoverflow.com/questions/900227/how-to-use-late-binding-to-invoke-method-with-byref-parameters/901271#901271Comment by Adam on How to use late binding to invoke method with ByRef parametersAdam2009-05-26T15:00:31Z2009-05-26T15:00:31ZDidn't know VB.NET has a late binder, different language feature than C#. Thanks for that.
I will give your suggestion about extending the parameter array length a try. Although I do get the correct value and type put into the objReturn return value.
http://stackoverflow.com/questions/900227/how-to-use-late-binding-to-invoke-method-with-byref-parametersComment by Adam on How to use late binding to invoke method with ByRef parametersAdam2009-05-26T14:58:36Z2009-05-26T14:58:36ZYes, it works from early binding scenario in VB.NET & from VB6http://stackoverflow.com/questions/884608/share-common-useful-svn-pre-commit-hooks/884761#884761Comment by Adam on Share common / useful SVN pre-commit hooksAdam2009-05-19T20:39:50Z2009-05-19T20:39:50ZActually you are right, but presumptuous much?