reference

Add File version, Product Version to the Existing Assemblies

I have some set of assemblies. I have disassemble those assemblies using the ISDASM.exe and change the namespace in the IL code and again compile those IL code using the ISASM.exe to get the assemblies without any error. Here my question is after disassemble and assemble those assemblies product version, File version and the copyright i...

Give a reference to a python instance attribute at class definition

I have a class with attributes which have a reference to another attribute of this class. See class Device, value1 and value2 holding a reference to interface: class Interface(object): def __init__(self): self.port=None class Value(object): def __init__(self, interface, name): self.interface=interface se...

How can I pass an array resulting from a Perl method by reference?

Some XML::LibXML methods return arrays instead of references to arrays. Instead of doing this: $self->process_items($xml->findnodes('items/item')); I want to do something like: $self->process_items(\$xml->findnodes('items/item')); So that in process_items() I can dereference the original array instead of creating a copy: sub proc...

Am I doing something wrong here (references in C++)?

I've been playing around with references (I'm still having issues in this regard). 1- I would like to know if this is an acceptable code: int & foo(int &y) { return y; // is this wrong? } int main() { int x = 0; cout << foo(x) << endl; foo(x) = 9; // is this wrong? cout << x << endl; return 0; } 2- A...

Learning/Using APIs

I've been trying to learn how to use the APIs available out there, but I can't seem to find any good book or tutorial out there. So... where can I start learning about using the available APIs (e.g. Twitter API)? I've only gone to Wikipedia so far. ...

C++ Reference Book

Possible Duplicate: The Definitive C++ Book Guide and List Can someone list a C++ book that is just a reference to the standard library? I don't need a "learning c++" book just one that is a reference. Or at least official documentation or something? Googling only reveals "fan-site" reference. ...

how to update web reference location

hi, i have an application wherein i am using a web-service. Now the ip address of the machine where this web-service was residing has changed. i try to update the web reference in my application and it is still trying to access the web-service from the old location. How do i change this to the new location. I have already updated the ...

Perl, `push` to array reference

Is it possible to push to an array reference in Perl? Googling has suggested I deference the array first, but this doesn't really work. It pushes to the deferenced array, not the referenced array. For example, my @a = (); my $a_ref = [@a]; push(@$a_ref,"hello"); print $a[0]; @a will not be updated and this code will fail because t...

VS2010 cannot find type ControlTemplate even though System.Windows is referenced

I'm trying to learn Silverlight here, creating a custom control template, however VS2010 refuses to recognize the ControlTemplate type in markup code, even though I have referenced the System.Windows and System.Windows.Controls assemblies (which is by default when basing the project on the standard Silverlight Application template). I'm ...

ipad workflow for reference docs

On our desktop pc, my wife likes to surf recipe sites, print out the ones that catch her eye, and file those printed sheets in her recipe notebooks. Well now the iPad has been ordered and I'm trying to figure out how she can store and retrieve recipes but in an 'iPad-way'. At this point I'm thinking of setting her up with delicious books...

No compile errors when reference added, but errors seen upon build

A solution was just converted from VS 2008 to VS 2010. My VS 2010 build is failing with the popular "The type or namespace X could not be found". When I go to the project and go to Add References and add the appropriate project dll, the class name appears in blue text as if .NET found the correct class. However, when I go to the Build...

Which Drupal module to use for two-way referencing nodes (to each other)

There are a lot of modules that enable two-way referencing nodes to each other. In the descriptions I read about those modules, they do not functionally seem to differ from each other. The modules I found are: Reverse Node Reference Corresponding Node References Node Relationships BackReference Node Referrer You can find links to the...

VS 2010 C++ unable to load references due to out of date version number

When I set references for a C++ project in Visual Studio 2010, it fails to load a reference dll from another c# project because of a version mismatch. Building a C# project that references another c# project is no issue for me. I tried hard coding the version number for the c# project which worked great, but that was simply for testing a...

Do the assemblies in Add Reference dialog differ depending on .Net framework used?

I'm curious - does the listing of assemblies in the Add Reference dialog vary depending on the version of the .Net framework used for the selected project. If they do differ, I'd love to know where the differences lie. Thanks! ...

QuickBooks: unresolved SDK reference?

When I build the MCInvoiceAddQBFC C# application of the sample QuickBooks SDK code, the build fails with C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "Interop.QBFC8, Version=8.0.0.28, Culture=neutral, PublicKeyToken=31d8aec643e18...

XPath query on node-set working like a SQL where in

Hi, a sample of xml document: <xml> <list> <item refid="1" /> <item refid="3" /> </list> <catalogue> <model id="1"><details /></model> <model id="2"><details /></model> <model id="3"><details /></model> </catalogue> </xml> I'd like to query something like //model[ @id = (//item/@refid...

C++ Tracking primitive type value change

i have a complex program with weird bug that some int value is down to zero unexpectedly. so i want tracking this built-in type value, then i could debug easily. to do that, i made following ValueWatcher template class so i could track almost changes of value except when ValueWatcher is dereferencing. (i made these dereferencing operat...

Ref argument through a RealProxy

I need to call a method with ref-arguments through a RealProxy. I have isolated the problem down to the following code: using System; using System.Reflection; using System.Runtime.Remoting.Messaging; using System.Runtime.Remoting.Proxies; namespace ConsoleApplication1 { class Program { static void Main(string[] args) ...

C# late binding to com/activeX server, trouble with one method

Hi I am fairly new to Interop/Com/ActiveX etc, so bear with me. I am late binding into a com/activex (not sure which one) server (basically an exe not a dll). I am successfully using all the methods in that server except for one, here is the description: VT_INT GetLastCCTError (variant *error_string); Description: This funct...

Cocoa - keyboard reference numbers for hotkeys; any docs detailing these?

I'm currently coding an app that has hotkey functionality, I've done some reading and was surprised to see it is all done via an old Carbon API. However, perhaps the biggest dilemma is I am unable to calculate the "Keyboard Reference Number"s it requires. The only app I have seen that makes this possible (ASyncKey) won't work anymore as...