active questions tagged references - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:53:21Z http://stackoverflow.com/feeds/tag/references http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1932654/constructors-accepting-string-reference-bad-idea 1 Constructors accepting string reference. Bad idea? Salv0 2009-12-19T11:21:00Z 2009-12-20T14:07:37Z <p>It's considered a bad idea/bad design, have a class with a constructor accepting a reference, like the following?</p> <pre><code>class Compiler { public: Compiler( const std::string&amp; fileName ); ~Compiler(); //etc private: const std::string&amp; m_CurrentFileName; }; </code></pre> <p>or should I use values? I actually do care about performance.</p> <p>Thank you in advance for the answers.</p> http://stackoverflow.com/questions/1922464/can-i-detect-whether-ive-been-given-a-new-object-as-a-parameter 8 Can I detect whether I've been given a new object as a parameter? Dan 2009-12-17T15:21:57Z 2009-12-18T23:42:42Z <h2>Short Version</h2> <p>For those who don't have the time to read my reasoning for this question below:</p> <p><strong>Is there any way to enforce a policy of "new objects only" or "existing objects only" for a method's parameters</strong>?</p> <h2>Long Version</h2> <p>There are plenty of methods which take objects as parameters, and it doesn't matter whether the method has the object "all to itself" or not. For instance:</p> <pre><code>var people = new List&lt;Person&gt;(); Person bob = new Person("Bob"); people.Add(bob); people.Add(new Person("Larry")); </code></pre> <p>Here the <code>List&lt;Person&gt;.Add</code> method has taken an "existing" <code>Person</code> (Bob) as well as a "new" <code>Person</code> (Larry), and the list contains both items. Bob can be accessed as either <code>bob</code> or <code>people[0]</code>. Larry can be accessed as <code>people[1]</code> and, if desired, cached and accessed as <code>larry</code> (or whatever) thereafter.</p> <p>OK, fine. But sometimes a method really <em>shouldn't</em> be passed a new object. Take, for example, <code>Array.Sort&lt;T&gt;</code>. The following doesn't make a whole lot of sense:</p> <pre><code>Array.Sort&lt;int&gt;(new int[] {5, 6, 3, 7, 2, 1}); </code></pre> <p>All the above code does is take a new array, sort it, and then forget it (as its reference count reaches zero after <code>Array.Sort&lt;int&gt;</code> exits and the sorted array will therefore be garbage collected, if I'm not mistaken). So <code>Array.Sort&lt;T&gt;</code> <em>expects</em> an "existing" array as its argument.</p> <p>There are conceivably other methods which may <em>expect</em> "new" objects (though I would generally think that to have such an expectation would be a design mistake). An imperfect example would be this:</p> <pre><code>DataTable firstTable = myDataSet.Tables["FirstTable"]; DataTable secondTable = myDataSet.Tables["SecondTable"]; firstTable.Rows.Add(secondTable.Rows[0]); </code></pre> <p>As I said, this isn't a great example, since <code>DataRowCollection.Add</code> doesn't actually expect a <em>new</em> <code>DataRow</code>, exactly; but it <em>does</em> expect a <code>DataRow</code> that doesn't already belong to a <code>DataTable</code>. So the last line in the code above won't work; it needs to be:</p> <pre><code>firstTable.ImportRow(secondTable.Rows[0]); </code></pre> <p>Anyway, this is a lot of setup for my question, which is: <strong>is there any way to enforce a policy of "new objects only" or "existing objects only" for a method's parameters</strong>, either in its definition (perhaps by some custom attributes I'm not aware of) or within the method itself (perhaps by reflection, though I'd probably shy away from this even if it were available)?</p> <p>If not, any interesting ideas as to how to possibly accomplish this would be more than welcome. For instance I suppose if there were some way to get the GC's reference count for a given object, you could tell right away at the start of a method whether you've received a new object or not (assuming you're dealing with reference types, of course--which is the only scenario to which this question is relevant anyway).</p> <p><hr></p> <p><strong>EDIT</strong>:</p> <p>The longer version gets longer.</p> <p>All right, suppose I have some method that I want to optionally accept a <code>TextWriter</code> to output its progress or what-have-you:</p> <pre><code>static void TryDoSomething(TextWriter output) { // do something... if (output != null) output.WriteLine("Did something..."); // do something else... if (output != null) output.WriteLine("Did something else..."); // etc. etc. if (output != null) // do I call output.Close() or not? } static void TryDoSomething() { TryDoSomething(null); } </code></pre> <p>Now, let's consider two different ways I could call this method:</p> <pre><code>string path = GetFilePath(); using (StreamWriter writer = new StreamWriter(path)) { TryDoSomething(writer); // do more things with writer } </code></pre> <p>OR:</p> <pre><code>TryDoSomething(new StreamWriter(path)); </code></pre> <p>Hmm... it would seem that this poses a problem, doesn't it? I've constructed a <code>StreamWriter</code>, which implements <code>IDisposable</code>, but <code>TryDoSomething</code> isn't going to presume to know whether it has exclusive access to its <code>output</code> argument or not. So the object either gets disposed prematurely (in the first case), or doesn't get disposed at all (in the second case).</p> <p>I'm not saying this would be a great design, necessarily. Perhaps Josh Stodola is right and this is just a bad idea from the start. Anyway, I asked the question mainly because I was just curious if such a thing were <em>possible</em>. Looks like the answer is: not really.</p> http://stackoverflow.com/questions/447144/framework-client-code-references 0 Framework + Client Code references bertvan 2009-01-15T15:22:33Z 2009-12-17T14:00:04Z <p>Hi,</p> <p>We are simultaniously working on a base-framework and on a implementation (little test tool) on top of it. There are several things I'd like, and I am wondering if they are all possible:</p> <p>(.NET 3.5, VS2008)</p> <ul> <li>Have a .sln with only the implementation (tool) - project</li> <li>Have a .sln with tool + framework projects</li> <li>Have a .sln with only framework projects</li> </ul> <p>Have a build server (Team City) with 2 build configs: - Framework - Tool</p> <p>Now while this can probably all work while referencing just .dll's between tool and framework, I would like to work on the framework from within the tool+framework solution, without being confronted with [Metadata] code files constantly.</p> <p>Any tips?</p> http://stackoverflow.com/questions/1916813/handling-of-references-in-c-templates 2 Handling of references in C++ templates PierreBdR 2009-12-16T18:50:22Z 2009-12-17T12:08:12Z <p>I currently have a function template, taking a reference, that does something in essence equivalent to:</p> <pre><code>template &lt;typename T&gt; void f(T&amp; t) { t = T(); } </code></pre> <p>Now, I can call:</p> <pre><code>int a; f(a); </code></pre> <p>To initialize my variable a. I can even do:</p> <pre><code>std::vector&lt;int&gt; a(10); f(a[5]); </code></pre> <p>However, this will fail:</p> <pre><code>std::vector&lt;bool&gt; a(10); f(a[5]); </code></pre> <p>The reason being <code>a[5]</code> returns an object with reference semantic, but not a reference. So I need to be able to write:</p> <pre><code>template &lt;typename T&gt; void f(T a) { a = T(); } </code></pre> <p>But if I add this new template and try to compile the first example (with int), I obtain the following error:</p> <pre><code>test_multi_tmpl.cc: In function ‘int main()’: test_multi_tmpl.cc:20: error: call of overloaded ‘f(int&amp;)’ is ambiguous test_multi_tmpl.cc:6: note: candidates are: void f(T&amp;) [with T = int] test_multi_tmpl.cc:12: note: void f(T) [with T = int] </code></pre> <p>Any ideas how to solve this? I wouldn't like to overload <code>f</code> just for <code>std::vector&lt;bool&gt;::reference</code> as this construct might appears in other places ...</p> http://stackoverflow.com/questions/895746/help-found-conflicts-between-different-versions-of-the-same-dependent-assembly 0 Help : Found conflicts between different versions of the same dependent assembly using SQLIte puffpio 2009-05-21T23:15:06Z 2009-12-16T00:00:06Z <p>One of my projects uses Elmah, which references SQLite. Elmah is built against SQLite for .Net version 1.0.44.0</p> <p>well I was experimenting with some 64 bit stuff (my dev box is 32 bit) so I needed the 64 bit version of SQLite for .Net. I grabbed the latest build of it (1.0.51.0 at the time) and used their installer to install it. For my 32 bit project, I updated the reference to System.Data.SQLite to point to the newer version. Once I realized my mistake, I uninstalled it and grabbed the appropriate original version, and pointed my reference back to 1.0.44.0</p> <p>Now when I build I get the warning about different versions of the same dependant assembly. Clicking on it asks if I want it to edit my app.config and it inserts this:</p> <pre><code>&lt;runtime&gt; &lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="System.Data.SQLite" publicKeyToken="DB937BC2D44FF139" culture="neutral"/&gt; &lt;bindingRedirect oldVersion="0.0.0.0-1.0.51.0" newVersion="1.0.51.0"/&gt; &lt;/dependentAssembly&gt; &lt;/assemblyBinding&gt; &lt;/runtime&gt; </code></pre> <p>umm..I don't have 1.0.51.0 installed or existing anywhere on my system anymore! where is the conflict? why does visual studio think it exists somewhere? I checked in the GAC and there is no System.Data.SQLite anywhere.</p> <p>I'd like to get rid of this annoying warning. I have another project in the same solution that also references SQLite, but I never updated the reference to the newer version (and subsequently never changed the reference back)..it has always been referencing 1.0.44.0. That project doesn't complain at all...</p> http://stackoverflow.com/questions/1908341/is-c-the-single-language-that-have-both-pointers-and-references 1 Is C++ the single language that have both pointers and references? dtrosset 2009-12-15T15:50:12Z 2009-12-15T19:50:15Z <p>Amongst the programming languages I know and those I've been exposed to, C++ looks like the only one to have both pointers and references. Is it true?</p> http://stackoverflow.com/questions/1908415/what-is-the-correct-way-to-add-references-to-libraries-in-c-cli 0 What is the correct way to add references to libraries in C++/CLI? DanDan 2009-12-15T15:58:03Z 2009-12-15T17:38:33Z <p>I am writing a lib in C++/CLI, and one of the functions is returning a System::Drawing::Color object. I added System.Drawing as a project reference. It works.</p> <p>I then created a test application to link to this lib and added my created lib as a reference. Everything linked fine, but then I tried to the run the application and I had the error "Unit Test Adapter threw exception: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.." (I don't know how to access this LoaderException property).</p> <p>This problem was fixed by adding a second reference, in the test project, to System.Drawing, but it seems cheesy. Consumers of my library should not have to know about the dependencies on the lib. Why didn't adding a reference to my lib know about the dependancy to System.Drawing? I feel I am doing something wrong.</p> <p>Thank you for your advice.</p> http://stackoverflow.com/questions/1889555/system-typeloadexception-webpartszone-in-mono 0 System.TypeLoadException (WebPartsZone) in mono Radu094 2009-12-11T17:23:09Z 2009-12-15T17:16:15Z <p>I load a user control in a web page which throws an exception:</p> <pre><code>this.LoadControl(someusercontrol); // throws TypeLoadException </code></pre> <p>The details :</p> <pre><code>System.Reflection.ReflectionTypeLoadException: The classes in the module cannot be loaded. at (wrapper managed-to-native) System.Reflection.Assembly:GetTypes (bool) at System.Reflection.Assembly.GetTypes () ... in /usr/src/packages/BUILD/mono2.4.2.3/mcs/class/System.Web/System.Web.Compilation/BuildManager.cs:864 </code></pre> <p>Error message:</p> <pre><code> "could not load type 'System.Web.UI.WebControls.WebParts.WebPartsZone from assembly 'System.Web, Version=2.0.0.0 ..." </code></pre> <p>I get it that WebPartsZone is not implemented in System.Web. What I do not get is why does it try to load that. <strong>I'm not using WebParts in my webpage, or in my control</strong>. </p> <p>How can I find WHO (or WHAT) is calling/using WebPartsZone ? A simple "find in files" search for "webparts" returns no finds.. so what next?</p> <p>Edit: I'm using ajax control toolkit 3.5 .. <a href="http://www.mono-project.com/MoMA" rel="nofollow">MOMA</a> says gives a warning about this assembly using the webparts... is it possible that asp:Panel or asp:UpdatePanel uses a webpart somewhere ? Last I heard, Ajaxcontroltoolkit was working under Mono , right?</p> http://stackoverflow.com/questions/1906000/c-by-reference-argument-and-c-linkage 7 C++ by-reference argument and c linkage olovb 2009-12-15T08:40:02Z 2009-12-15T12:25:47Z <p>Hi,</p> <p>I have encountered a working (with XLC8 and MSFT9 compilers) piece of code, containing a c++ file with a function defined with c linkage and a reference argument. This bugs me, as references are c++ only. The function in question is called from c code, where it is declared as taking a pointer argument to the same type in place of the reference argument.</p> <p><strong>Simplified example</strong>:</p> <p><em>c++ file</em>:</p> <pre><code>extern "C" void f(int &amp;i) { i++; } </code></pre> <p><em>c file</em>:</p> <pre><code>void f(int *); int main() { int a = 2; f(&amp;a); printf("%d\n", a); /* Prints 3 */ } </code></pre> <p>Now, the word on the street is that most c++ compilers, under the hood, implement references just like a pointer. Is that and just pure luck the reason this code works or does it say somewhere in the c++ specification what the result is when you define a function with a reference argument and c linkage? I haven't been able to find any info on this.</p> http://stackoverflow.com/questions/1902719/visual-studio-autoclean 0 Visual Studio autoclean? kubal5003 2009-12-14T18:44:48Z 2009-12-14T18:44:48Z <p>Hello,</p> <p>I have a solution with multiple projects - executable, library, and others(unimportant right now). Library contains EF entity classes and executable uses them. When I'm working on some code from the executable then every entity that I use is marked as an error and compiler says that I should check usings and references. Reference in the executable project is set to library project(not the dll itself). When I build the library project then everything gets back to normal, but when I start typing then it happens again.</p> <p>I could live with it, but intelli sense isn't working and that is quite a disadvantage.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1901051/do-pointers-in-java-actually-exist 1 Do pointers in java actually exist? Jeffrey Vandenborne 2009-12-14T13:01:51Z 2009-12-14T15:31:58Z <p>I thought I'm pretty experienced in java, but it seems that's not really the case, I just noticed something yesterday, something I used before but never really realised what it did. I googled but didn't find the answer to my question.</p> <p>If I declare an int array, and use Array's static sort function to sort my array, I just need to type </p> <pre><code>Arrays.sort( numbers ); </code></pre> <p>Instead of</p> <pre><code>numbers = Array.sort( numbers ); </code></pre> <p>This might look very easy in C and C++ because you can use pointers there. So what I'm wondering is, how is this done? Is it an advantage sun has, or am I completely senseless here?</p> http://stackoverflow.com/questions/1887319/convince-entity-context-ef1-to-populate-entity-references 0 Convince entity context (EF1) to populate entity references Robert Koritnik 2009-12-11T10:59:36Z 2009-12-14T11:48:15Z <p>I have an entity with self reference (generated by Entity Designer):</p> <pre><code>public MyEntity: EntityObject { // only relevant stuff here public int Id { get...; set...; } public MyEntity Parent { get...; set...; } public EntityCollection&lt;MyEntity&gt; Children { get...; set...; } ... } </code></pre> <p>I've written a stored procedure that returns a subtree of nodes (<strong>not</strong> just immediate children) from the table and returns a list of <code>MyEntity</code> objects. I'm using a stored proc to avoid lazy loading of an arbitrary deep tree. This way I get relevant subtree nodes back from the DB in a single call.</p> <pre><code>List&lt;MyEntity&gt; nodes = context.GetSubtree(rootId).ToList(); </code></pre> <p>All fine. But when I check <code>nodes[0].Children</code>, its <code>Count</code> equals to 0. But if I debug and check <code>context.MyEntities.Results view</code>, Children enumerations get populated. Checking my result reveals children under my <code>node[0]</code>.</p> <p><strong>How can I programaticaly force my entity context to do in-memory magic and put correct references on <code>Parent</code> and <code>Children</code> properties?</strong></p> <h2>UPDATE 1</h2> <p>I've tried calling</p> <pre><code>context.Refresh(ClientWins, nodes); </code></pre> <p>after my <code>GetSubtree()</code> call which does set relations properly, but fetches same nodes again from the DB. It's still just a workaround. But better than getting the whole set with <code>context.MyEntities().ToList()</code>.</p> <h2>UPDATE 2</h2> <p>I've reliably solved this by using EF Extensions project. Check my answer below.</p> http://stackoverflow.com/questions/1898524/difference-between-pointer-to-a-reference-and-reference-to-a-pointer 7 Difference between pointer to a reference and reference to a pointer bakore 2009-12-14T01:44:02Z 2009-12-14T09:43:34Z <p>What is the difference between pointer to a reference, reference to a pointer and pointer to a pointer in C++?</p> <p>Where should one be preferred over the other?</p> http://stackoverflow.com/questions/1863002/fxcop-control-assembly-referenced-by-analyzed-assembly-not-being-loaded 0 FxCop: control assembly referenced by analyzed assembly not being loaded Derick Bailey 2009-12-07T21:26:14Z 2009-12-10T17:35:24Z <p>FWIW: Windows 7 64bit, Compact Framework v3.5, FxCop v1.36 (running fxcopcmd.exe)</p> <p>I'm having problems getting FxCop 1.36 to run correctly. I'm analyzing a compact framework application with the globalization rules from <a href="http://www.dotneti18n.com/Downloads.aspx" rel="nofollow">http://www.dotneti18n.com/Downloads.aspx</a></p> <p>the .exe that i am analyzing has a reference to a 3rd party control suite: resco.outlookcontrols.cf.dll. When fxcop runs and analyzes my app, it blows up saying that it cannot find this assembly. I've checked, re-checked, and check 30 more times that all of the assemblies needed to run the app are in the same folder as the one being analyzed - including the resco dlls.</p> <p>using fusion log viewer, i'm able to get this information:</p> <pre> LOG: DisplayName = Resco.OutlookControls.CF3, Version=6.7.0.0, Culture=neutral, PublicKeyToken=7444f602060105f9 (Fully-specified) LOG: Appbase = file:///D:/Dev/TA/Tools/FxCop/ LOG: Initial PrivatePath = NULL LOG: Dynamic Base = NULL LOG: Cache Base = NULL LOG: AppName = NULL Calling assembly : (Unknown). === LOG: This bind starts in default load context. LOG: Using application configuration file: D:\Dev\TA\Tools\FxCop\fxcopcmd.exe.Config LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v2.0.50727\config\machine.config. LOG: Post-policy reference: Resco.OutlookControls.CF3, Version=6.7.0.0, Culture=neutral, PublicKeyToken=7444f602060105f9 LOG: GAC Lookup was unsuccessful. LOG: Attempting download of new URL file:///D:/Dev/TA/Tools/FxCop/Resco.OutlookControls.CF3.DLL. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Resco.OutlookControls.CF3/Resco.OutlookControls.CF3.DLL. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Rules/Resco.OutlookControls.CF3.DLL. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Rules/Resco.OutlookControls.CF3/Resco.OutlookControls.CF3.DLL. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Engines/Introspection/Resco.OutlookControls.CF3.DLL. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Engines/Introspection/Resco.OutlookControls.CF3/Resco.OutlookControls.CF3.DLL. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Resco.OutlookControls.CF3.EXE. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Resco.OutlookControls.CF3/Resco.OutlookControls.CF3.EXE. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Rules/Resco.OutlookControls.CF3.EXE. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Rules/Resco.OutlookControls.CF3/Resco.OutlookControls.CF3.EXE. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Engines/Introspection/Resco.OutlookControls.CF3.EXE. LOG: Attempting download of new URL file:///D:/Dev/TA/FxCop/Engines/Introspection/Resco.OutlookControls.CF3/Resco.OutlookControls.CF3.EXE. LOG: All probing URLs attempted and failed. </pre> <p>here's the part that is really frustrating me: the fxcop documentation (here <a href="http://msdn.microsoft.com/en-us/library/bb429449%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb429449%28VS.80%29.aspx</a> ) says that it will load up all referenced assemblies from either the same folder that the analyzed assembly is in, or from a folder referenced by the /directory: command line option. </p> <p>it's not living up to the documented promises. the file does exist in the same folder as the one being analyzed and i have tried passing the folder in as a /directory: command line option. i've even set the AssemblyReferenceDirectories element in the .fxcop file. yet the only places that are searched, according to the fusion log, are the 'usual' locations for probing. </p> <p>and fyi - i tried updating the 'probing' settings in the fxcopcmd.exe.config - won't work because the folder of the assembly being analyzed is not under the root folder of the fxcop tool, so it gives me a warning saying it won't be probed.</p> <p>anyone else have this problem? anyone have a solution?</p> <p>thanks</p> http://stackoverflow.com/questions/1868431/changes-to-one-variable-propagates-to-another 1 Changes to one variable propagates to another... Ladislav 2009-12-08T17:12:34Z 2009-12-10T06:19:30Z <p>For example I have two ArrayCollection's - firstAC and secondAC. If I do secondAC = firstAC, and than I make changes to secondAC (prehaps put a filterfunction on it) it somehow propagates to firstAC, would anyone tell me why that happens in Flex or Actionscript 3? </p> <p>What can I do if I only want secondAC to get all data from firstAC but then when I make changes to secondAC it does not show in firstAC?</p> <p>Thanxs a bunch for answers! Ladislav</p> http://stackoverflow.com/questions/1875408/how-do-i-determine-where-dll-is-referenced 0 How do I determine where DLL is referenced? Nathan Koop 2009-12-09T17:15:03Z 2009-12-09T17:47:05Z <p>I have just deployed my VB.net VS2008 winforms solution to the test server.</p> <p>When I did I got an error:</p> <blockquote> <p>Unable to install or run the application. The application requires that assembly Microsoft.Synchronization.Data.Server Version 1.0.0.0 be installed in the Global Assembly Cache (GAC) first.</p> </blockquote> <p>I however do not know why this requirement was put in place. As far as I know we did not add any reference to this DLL.</p> <p>I have done searches and there are no matches for "Synchronization" or "Data.Server" etc...</p> <p>It is not listed in the references folder either.</p> <p>Any ideas why it's apparently referenced, but not referenced anywhere?</p> http://stackoverflow.com/questions/1872553/msbuild-conditional-construct-project-reference-file-reference 1 MSBuild: Conditional Construct (Project Reference | File Reference) Doc Snuggles 2009-12-09T09:09:55Z 2009-12-09T09:40:47Z <p>I´m still trying to eleminate the need of a cobol compiler in a Project with cobol-Projects in it.</p> <p>Is it possible to create following build behaviour:</p> <p>If the Configuration is Debug then use ProjectReferences on ExCobol.cblproj if the Configuration is DebugVB then use FileReferences on ExCobol.dll</p> <p>When Yes, How to achieve it? </p> <p>I assume the use of tags in the project file will do the trick.</p> <p>And does this really eliminate the need of a cobol compiler for the DebugVB Configuration?</p> http://stackoverflow.com/questions/1865855/ironruby-references-conflict-with-system-linq 0 IronRuby references conflict with System.Linq ? Becky Franklin 2009-12-08T09:44:28Z 2009-12-08T17:25:55Z <p>Using Visual Studio 2010, when I add the four IronRuby references to an existing project that uses Linq in several methods, the project won't compile due to not being able to find System.Linq all of a sudden. Does the IronRuby/.Net 4.0 Framework change the location of Linq or am I missing something?</p> <p>Thanks, Becky</p> http://stackoverflow.com/questions/1848237/how-to-configure-visual-studio-to-create-all-projects-including-a-reference-to-a 1 How to configure Visual Studio to create all projects including a reference to a specific dll? Jader Dias 2009-12-04T16:49:35Z 2009-12-04T17:05:03Z <p>I am tired of adding a reference to <code>System.ServiceModel</code> in each project I create. Is there any way to automate this?</p> http://stackoverflow.com/questions/1050565/vs-net-multiple-find-all-references-result-windows 0 VS.NET - Multiple Find All References Result Windows? George 2009-06-26T18:33:35Z 2009-12-04T02:00:04Z <p>Visual Studio has a "Find All References" tool that is great in navigating the codebase to find out where a function is called or where a variable is used. When navigating a large code base, I tend to do find all references multiple times to find the top level of where a function is called.</p> <p>Imagine we have the following:</p> <p>A1() calls B1(), B1() calls C()</p> <p>A2() calls B2(), B2() calls C()</p> <p>My problem:</p> <p>If I do find all references on C(), I find both B1() and B2(), which is great.</p> <p>Now, I try to find out where B1() is called. I find A1() calls B1(). Great!</p> <p>However, I run into an issue when I want to back track and find out what calls B2(), but I lost track of B2()! By default, VS.NET only has window for the "Find All References" result. Since I found all references for B1() just now, I lost track of where C() was called. I now have to find all references to C(), and then find all references to B2(). I'm working in a large code base, and finding all references can easily take more than a minute for a function. It would be nice if I could save the results of a search, and future find all references would open a new window instead of overwriting the existing search.</p> <p>Is there a setting in VS.NET 2008 or a free addon that would allow me to have multiple "Find All References" windows?</p> <p>On a related note, VS.NET has 2 Find result windows for searching for text. Is there a way to have more?</p> http://stackoverflow.com/questions/1844190/linking-with-apache-xml-security-causes-unresolved-references 0 Linking with Apache XML-Security causes unresolved references Fredrik Ullner 2009-12-04T00:57:57Z 2009-12-04T01:03:32Z <p>I'm trying to build a project on Linux with GCC where one module (my own) require XML-Security (Apache's) as well. However, when linking, I get unresolved references to some functions that are in the XML-Security library. I'm attempting to link statically (or I think so, at least -- I've provided no extra parameters, and I'm using the .a file of XML-Security). I've built the XML-Security library myself.</p> <p>When I run <em>nm --demangle</em> on the XML-Security library (.a file), I can see the function declaration, with a 'T' -- which the documentation seem to indicate is "The symbol is in the text (code) section". I've seen 'U' as well (in other functions) but that seems to have a different meaning and most likely not the case here. </p> <p>Looking in the CPP file where the function is supposedly missing indicates that it is indeed there.</p> <p>I have to note that I have not a problem with all functions within that class.</p> <p>I'm using Netbeans and GUI, but I've made sure the link order is correct; my library is to the left of the XML-Security library in the link order. </p> <p>So, what can I do to make my project link with XML-Security?</p> <p>Could there be some library I'm, for some reason, excluding? How about if I'd dynamically link the library?</p> <p>(XML-Security version is 1.5.1.)</p> <p>(GCC version is 4.3.2.)</p> <p>Edit: The following functions are what the linker complains about. DSIGSignature::findDSIGNode(DOMNode*, char const*) DSIGSignature::newSignatureFromDOM(DOMDocument*, DOMNode*) XSECProvider::registerIdAttributeName(wchar_t const*) safeBuffer::sbMemcpyIn(void const*, unsigned int) XSECProvider::newSignatureFromDOM(DOMDocument*) DSIGSignature::createBlankSignature(DOMDocument*, canonicalizationMethod, signatureMethod, hashMethod) DSIGSignature::createReference(wchar_t const*, hashMethod, char*) DSIGSignature::appendRSAKeyValue(wchar_t const*, wchar_t const*) DSIGKeyInfoX509::appendX509Certificate(wchar_t const*)</p> http://stackoverflow.com/questions/40480/is-java-pass-by-reference 43 Is Java pass by reference? zombywuf 2008-09-02T20:14:29Z 2009-12-03T16:06:28Z <p>I always thought Java was pass by reference, however I've seen a couple of blog posts (e.g. <a href="http://javadude.com/articles/passbyvalue.htm" rel="nofollow">this blog</a>) that claim it's not. I don't think I understand the distinction they're making. Could someone explain it please?</p> http://stackoverflow.com/questions/857379/build-with-msbuild-and-dynamically-set-project-references 1 Build with msbuild and dynamically set project references Darren Gosbell 2009-05-13T11:16:49Z 2009-12-02T22:46:46Z <p>I have a couple of projects which reference SQL Server assemblies. With SQL Server 2005 and SQL Server 2008 I am currently maintaining 2 project files which point to the same source files and the only difference is the references to the SQL Server assemblies. </p> <p>Is there some way that I can only maintain one project and dynamically specify the references in my build script?</p> http://stackoverflow.com/questions/1832704/default-assignment-operator-in-inner-class-with-reference-members 0 Default assignment operator in inner class with reference members laura 2009-12-02T12:48:40Z 2009-12-02T20:54:33Z <p>I've run into an issue I don't understand and I was hoping someone here might provide some insight. The simplified code is as follows (original code was a custom queue/queue-iterator implementation):</p> <pre><code>class B { public: B() {}; class C { public: int get(); C(B&amp;b) : b(b){}; private: B&amp; b; }; public: C get_c() { return C(*this); } }; int main() { B b; B::C c = b.get_c(); c = b.get_c(); return EXIT_SUCCESS; } </code></pre> <p>This, when compiled, gives me the following error:</p> <pre><code>foo.cpp: In member function 'B::C&amp; B::C::operator=(const B::C&amp;)': foo.cpp:46: error: non-static reference member 'B&amp; B::C::b', can't use default assignment operator foo.cpp: In function 'int main()': foo.cpp:63: note: synthesized method 'B::C&amp; B::C::operator=(const B::C&amp;)' first required here </code></pre> <p>I can go around this by using two separate C variables, as they are supposed to be independent 'C' objects, but this only hides the problem (I still don't understand why I can't do this).</p> <p>I think the reason is that the reference cannot be copied, but I don't understand why. Do I need to provide my own assignment operator and copy constructor?</p> http://stackoverflow.com/questions/1817389/object-reference-problem 0 Object reference problem Markus Bürgler 2009-11-30T01:01:47Z 2009-11-30T19:03:26Z <p>Hi guys! Following problem:</p> <p>I would like to build a little clipboard with jQuery. I have tried several times to store an object in the data of a javascript object with $(object).data('id',objectToStore). Objects can be stored there that works fine. The problem is if I try to insert the stored data I only get a reference to that object. So when I am editing one copy also the others are changed. I need a way to copy the html code into a global variable and then to insert the code individually from the stored one. Hope u guys understand my problem! Thx!</p> <p>Here the code:</p> <p>Object</p> <pre><code> /** * Objectdefinition */ Clipboard = { //PROPERTIES itemcount: 0, maxItems:10, //Templates tplClipboard:"&lt;div id='GUI_clipboard'&gt;&lt;a href='' title='clear&amp;nbsp;clipboard' id='GUI_clipboardClose' class='gritter-close'&gt;&lt;/a&gt;&lt;ul&gt;&lt;/ul&gt;&lt;/div&gt;", tplItem:"&lt;li&gt;&lt;a href='' class='[[type]] clipboardItem' id='[[id]]'&gt;&lt;span class='hidden'&gt;[[text]]&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;", tplItemHover:"&lt;div class='GUI_clipboard_itemhover' style='width:[[offsetW]]px;height:[[offsetH]]px'&gt;&lt;a href='' title='delete&amp;nbsp;container' class='GUI_containerDelete'&gt;&lt;span class='hidden'&gt;Delete&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;", //Clipboarditem item:{ id:null, type:null, content:'', offsetWidth:0, offsetHeight:0 }, //FUNCTIONS addItem:function(id,type,text,content,offsetH,offsetW){ if(this.itemcount&gt;=this.maxItems){ return $.gritter.add({ title:'Clipboard', text:'You cannot store more than '+ this.maxItems +' Elements!', image:'warning', }); } var item = {}; item.id=id, item.type=type, item.content=content, item.offsetHeight=offsetH, item.offsetWidth= offsetW; this.verify(); if (!this.checkRed(id)) { this.itemcount++; var tmp = this.tplItem; tmp = this.str_replace(['[[type]]', '[[id]]', '[[text]]'], [type, id, text], tmp); $('#GUI_clipboard ul').append(tmp); var $item = $('a#'+id); var number = this.itemcount; $item.hide().fadeIn('slow',function(){ Clipboard.redraw(); }); this.saveItem(item); var config = { over:function(){Clipboard.hoveringItem($('a',this))}, out:function(){Clipboard.unhoveringItem($('a',this))}, timeout:1 }; $item.parent().hoverIntent(config); $item.draggable({ connectToSortable:'.column', helper:'clone', revert:'invalid', cursor:'move', //Cursor start:function(){ $('body').unbind('mouseover',Content.showContainerMenu); $('body').unbind('mouseout',Content.hideContainerMenu); $('#GUI_clipboard li').trigger('mouseout'); }, stop:function(){ $('body').bind('mouseover',Content.showContainerMenu); $('body').bind('mouseout',Content.hideContainerMenu); } }); }else{ $('#'+id,'#GUI_clipboard').effect("bounce", { times:3 }, 300); } }, saveItem:function(item){ $(this).data(item.id,item); }, removeItem: function(id){ $('#GUI_clipbaord').data(id,null); $('a[id='+id+']','#GUI_clipboard').parent().slideUp('slow',function(){$(this).remove()}); this.itemcount--; if(this.itemcount==0)this.remove(); }, verify:function(){ if($('#GUI_clipboard').length == 0){ $('body').append(this.tplClipboard); $('#GUI_clipboard') .css({ top:$(window).height()/2+'px' }) .animate({ left:0 }).children('.gritter-close').capture({cssClass:'GUI_clipboardClose'}); } }, checkRed:function(id){ if($('a[id='+id+']').length==0)return false; else return true; }, remove:function(){ $('#GUI_clipboard').animate({ left:'-60px' },function(){ $(this).remove(); }); this.itemcount=0; }, hoveringItem:function(el){ var item = $(this).data($(el).attr('id')), content=item.content, oH=item.offsetHeight, oW=item.offsetWidth, tmp = this.tplItemHover; tmp = this.str_replace(['[[offsetW]]', '[[offsetH]]'], [oW,oH], tmp); $(el).after(tmp); var $element = $('.GUI_clipboard_itemhover').append(content).prepend("&lt;div class='GUI_clipboardArrow'&gt;&lt;/div&gt;"); $element.position({ my: 'left center', at: 'right center', of: $(el),offset:'14 0',collision:'none fit'}); $('.GUI_clipboardArrow',$element).position({ my: 'left center', at: 'right center', of: $(el),offset:'-2 0',collision:'none fit'}); $('#'+item.id,'#GUI_clipboard').removeClass('borderContainer editable'); $('a.GUI_containerDelete',$element).click(function(){ Clipboard.removeItem($element.children('.container').attr('id')); $element.fadeOut().remove(); }).capture({cssClass:'GUI_clipboardItemClose'}); }, unhoveringItem:function(el){ //Preview entfernen $(el).next().remove(); }, redraw:function(){ if(this.itemcount&gt;1){ $('#GUI_clipboard').animate({ top: '-=20px' }); } }, str_replace: function(search, replace, subject, count) { var i = 0, j = 0, temp = '', repl = '', sl = 0, fl = 0, f = [].concat(search), r = [].concat(replace), s = subject, ra = r instanceof Array, sa = s instanceof Array; s = [].concat(s); if (count) { this.window[count] = 0; } for (i=0, sl=s.length; i &lt; sl; i++) { if (s[i] === '') { continue; } for (j=0, fl=f.length; j &lt; fl; j++) { temp = s[i]+''; repl = ra ? (r[j] !== undefined ? r[j] : '') : r[0]; s[i] = (temp).split(f[j]).join(repl); if (count &amp;&amp; s[i] !== temp) { this.window[count] += (temp.length-s[i].length)/f[j].length;} } } return sa ? s : s[0]; } } </code></pre> <p>That was the object! As you see when I hover over an element the Object gets it from the internal store. But when I am inserting the object with following into the content area</p> <pre><code>var item = $(Clipboard).data($(ui.sender).attr('id')), newItem = $.extend(true, {}, item); content=newItem.content; </code></pre> <p>and then hover the clipboard to drag it and insert it again the object (html-code) from the contentarea disappears and is inserted in the preview of the clipboard.</p> <p>Any ideas!</p> <p>Please!</p> http://stackoverflow.com/questions/728620/mutable-value-objects-sharing-state-and-beer-brewing 0 Mutable Value Objects / Sharing State (and beer brewing!) Tony Wooster 2009-04-08T05:30:56Z 2009-11-30T18:00:03Z <p>I'm a rusty programmer attempting to become learned in the field again. I've discovered, fitfully, that my self-taught and formal education both induced some bad habits. As such, I'm trying to get my mind around good design patterns, and -- by extension -- when they're wrong. The language is Java, and here's my issue:</p> <p>I'm attempting to write software to assist in beer brewing. In brewing, sometimes you must substitute a particular variety of hop for what's called for in the recipe. For example, you might have a recipe that calls for 'Amarillo' hops, but all you can get is 'Cascade', which has a similar enough aroma for substitution; hops have an Alpha Acid amount (per a given mass), and the ratio between two hops is part of the substitution formula. I'm attempting to model this (properly) in my program.</p> <p>My initial go is to have two objects. One a <code>HopVariety</code>, which has general descriptive information about a variety of hop, and one a <code>HopIngredient</code>, which is a particular instantiation of a <code>HopVariety</code> and also includes the amount used in a given recipe. <code>HopIngredient</code> should have knowledge of its variety, and <code>HopVariety</code> should have knowledge of what can be used as a substitute for it (not all substitutions are symmetric). This seems like good OOP.</p> <p>The problem is this: I'm trying to follow good practice and make my value objects immutable. (In my head, I'm classifying <code>HopVariety</code> and <code>HopIngredient</code> as value objects, not 'actors'.) However, I need the user to be able to update a given HopVariety with new viable substitutions. If I follow immutability, these changes will not propagate to individual ingredients. If choose mutability, I'm <em>Behaving Badly</em> by potentially introducing side-effects by sharing a mutable value object.</p> <p>So, option B: introduce a VarietyCollection of sorts, and loosely couple the ingredients and the varieties by way of a name or unique identifier. And then a VarietySubstitutionManager, so that varieties don't hold references to other varieties, only to their ids. This goes against what I <em>want</em> to do, because holding a reference to the variety object makes intuitive sense, and now I'm introducing what feels like excessive levels of abstraction, and also separating functions from the data.</p> <p>So, how do I properly share state amongst what amounts to specific instances? What's the proper, or at least, sanest way to solve the problem?</p> http://stackoverflow.com/questions/1757807/any-readings-books-recommended-for-a-beginner-mobile-qt-developers 1 Any readings/books recommended for a beginner mobile Qt developers? Abu Aqil 2009-11-18T17:45:54Z 2009-11-29T04:46:56Z <p>I'm quite new to this mobile development. I just download the Qt SDK from the Nokia web site. </p> <p>My background is C,C++ and I am not very familiar with the visual/IDE kind of stuff. Normally I do things using the console and the vi editor, etc. I have been spending almost 10 years of development mainly on web applications (PHP/Python/Flex/<a href="http://en.wikipedia.org/wiki/ActionScript" rel="nofollow">ActionScript</a>/JavaScript/C/etc).</p> <p>I am interested in jumping into this new wagon, of applications for mobiles. I need some guide to start with, any references such online documents/readings/examples or books for a starter like me.</p> http://stackoverflow.com/questions/1023371/xcode-different-resources-for-different-targets 1 XCode Different Resources For Different Targets FlorianZ 2009-06-21T07:27:50Z 2009-11-27T08:08:31Z <p>Hi.</p> <p>I am developing an iPhone app and there will be a Full as well as a Lite version of that app. In order get both bundles from the same source code and xcode project I added another target to the xcode project.</p> <p>Now, I want to have the Lite target copy only a subset of the resource files to the bundle. But, xcode won't simply let me delete individual files from the "Copy Files to Bundle" build step, since I imported all my resources as folder references. I need this in order to maintain a directory structure in the resources directory.</p> <p>How do I solve this problem? Any suggestions or ideas are greatly appreciated!</p> <p>Flo</p> http://stackoverflow.com/questions/1749340/does-anyone-know-of-a-good-reference-for-dsl-design 5 Does anyone know of a good reference for DSL design? Doug Knesek 2009-11-17T14:41:45Z 2009-11-24T21:01:55Z <p>I've been looking into designing some Domain Specific Languages which I will probably implement in Clojure, but I really don't have any idea of what's involved.</p> <p>The languages I have in mind are intended to be abstract languages that are readable by domain experts with little or no programming background.</p> <p>Does anyone know of any tutorials, books, or other references that would be helpful?</p> http://stackoverflow.com/questions/215026/the-located-assemblys-manifest-definition-does-not-match-the-assembly-reference 14 The located assembly's manifest definition does not match the assembly reference oo 2008-10-18T13:16:26Z 2009-11-23T11:09:54Z <p>I am trying to run some unit tests in a C# winforms application (VS 2005) and I get the following error:</p> <p><strong>System.IO.FileLoadException: Could not load file or assembly 'Utility, Version=1.2.0.200, Culture=neutral, PublicKeyToken=764d581291d764f7' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)</strong></p> <p><strong>at x.Foo.FooGO() at x.Foo.Foo2(String groupName_) in Foo.cs:line 123 at x.Foo.UnitTests.FooTests.TestFoo() in FooTests.cs:line 98</strong></p> <p><strong>System.IO.FileLoadException: Could not load file or assembly 'Utility, Version=1.2.0.203, Culture=neutral, PublicKeyToken=764d581291d764f7' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)</strong></p> <p>I look in my references and I only have a reference to Utility version 1.2.0.203 (the other one is old)</p> <p>Any suggestions on how I figure out what is trying to reference this old version of this dll?</p> <p>Also, I don't think I even have this old assembly on my hard drive. is there any tool to search for this old versioned assembly.</p>