reference

could not load dll or one of its dependency

a. My C# program will load a dll (which is dynamic), for now let's take a.dll (similarly my program will load more dll like b.dll, c.dll, etc....). b. My program will invoke a method "Onstart" inside a.dll (it's constant for all the dll). I am able to achieve the above 2 cases by reflection mechanism. The problem is a. If my a.dll ha...

Why is there no OFFICIAL JavaScript reference?

I tried to search for a JavaScript reference, but there's none available. The best two suggested sources are MDC and W3Schools. Why? ...

Examples of developer guidelines to bring a new developer up to speed

Here are some good examples of coding guidelines: What should coding guidelines do, and are there any good examples of guidelines? What about more general guidelines? Like the VCS process, communications, etc. I want to write something like this, and it would be nice to get some ideas from what others have come up with after many tr...

Snow Leopard Reference Library

Hi, Does anyone know how to download all the developer reference documentation for snow leopard. For some reason Apple changed it so that whenever you wanted a document you have to get it form their website. I don't have an internet connection all the time so I would like to have all of the reference documentation locally on the desktop....

ASP.NET MVC - System.Data.DataSet not referenced problem

Hi There, Well, first of all sorry about this question it must be pretty straight forward for you guys but I'm struggling myself on it, and I need to make it work :( Well I'm trying t o use DataSet on my application and when I render it I got: The type 'System.Data.DataSet' is defined in an assembly that is not referenced. You must add...

Reload a reference on the fly (C# .NET)

Ok, heres the rundown... I have a service that is running and it references a dll that is changed a lot. This service is hopefully going to have multiple clients hitting it at once so it would be inefficient to shut it down and recomplile/reload with a new reference. I was wondering if there was anyway the program could pretty much au...

SecurityException: That assembly does not allow partially trusted callers

From a C# WinForm project, I want to call a .NET COM method that already exist. I've added the reference to the COM, but I can't get rid of the SecurityException "That assembly does not allow partially trusted callers". Both projects are strongly named. I've added [assembly: AllowPartiallyTrustedCallers] at the top of the COM project, b...

call time reference issue with php

function get_arr($arr) { unset($arr[0]); } $arr1 = array(1,2); $arr2 = array(1,2); get_arr(&$arr1); get_arr($arr2); echo count($arr1); echo count($arr2); I got : Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of get_arr(). If you would like ...

std::map, references, pointers and memory allocation

I am having a lil hard time with map and the valuetype allocation. consider this simple class: class Column { private: char *m_Name; public: // Overrides const char *Name(){ return this->m_Name; } // Ctors Column(const char *NewName){ this->m_Name = new char[strlen(NewName) + 1]; strcpy(this->m_N...

Is there a Bug Encyclopedia?

Has anyone developed an encyclopedia or wiki of software bugs, either bug types (off-by-one, buffer overflow, etc.) or even just famous bugs (Grace Hopper's moth, the Arianne rocket failure, etc.)? I was thinking that for tough situations, a cross-referenced encyclopedia of bug types, examples, and symptoms of bugs would help programmer...

C# object reference

Hello, i don't know what you call it, but how would i change fields / use methods from an object, with the object i want to call with, a field? ...

does anyone knows of any site that have a searchable index of unicode symbols

Is there a site that would allow you to search for "arrow", for example, and provide all the Unicode symbols that match the keyword "arrow"? This would be very handy :) Ideally, it would also show the Unicode symbol rendered as an image for users without the requisite fonts who would otherwise see these chars as squares. ...

How can I force symbol a symbol reference in c++ (programmatically)

Hi, I'm trying to plug tcmalloc into a suite of software that we currently use at work. The software comprises of a lot of dll's. They all refer to a shared header file, so I can pragma link the library. However as none of the code refers to the symbol __tcmalloc the optimizer strips the dll. Now I don't want to have to edit 200 projec...

External Reference of a Javascript file in IE

I am working on a website for a teacher, Since there is a chance she may want to add more later, I decided to make the links that appear on every page be written in by Javascript so that all the pages could be changed quickly. The HTML code has this for the external reference: <script type="text/javascript" language="javascript" src="l...

C++ referring to an object being constructed.

In C++ I have a reference to an object that wants to point back to its owner, but I can't set the pointer during the containing class' construction because its not done constructing. So I'm trying to do something like this: class A { public: A() : b(this) {} private: B b; }; class B { public: B(A* _a) : a(_a) ...

What is a Ghost Reference?

Hello! I was just wondering what a ghost reference was? Is it that you don't have to refer to a object? EDIT: Sorry, I wasn't clear, the langauge is Java, and I read it about linked lists. While reading a problem to write a LinkedQueue iterator to support the remove method. Then, you would have a ghost reference. ...

C#.NET constructor overload reference problem

Consider a layered application where the DataLayer has a certain class with all the data access stuff in it, and above that the business layer has a class which can take in the constructor a data object, and has other overloads as well. Ex: namespace Datalayer { public class dataObject { // all the class here } } ...

Error in the view page when I am doing updating the product

Hello All, I am getting an error when I am upadting the product ,the error is coming in the view page .it is "Object reference is not set to an instance of an object". Please tell me why is the error coming. category_id: <%= Html.TextBox("category_id", Model.category_id ) %> <%= Html.Val...

Which one is preferred, return const double& OR return double.

Given the following scenario, which one of the following is preferred. m_state is a member rater than a local variable. class C { private: double m_state; public: double state() const { return m_state; } // returns double double& state() { return m_state; } } =========================================== class C { private: ...

c# .net iterating twice a list in a inner and outer loop - local copy or reference?

Hallo everyone, i have a list of nodes ListNode and i want to draw a line between two nodes if there is an edge / link between them. My approach so far is: public void drawGraphInBIM(ref BIM bim) { foreach (Node nodeOuter in ListNode) { foreach (Node nodeInner in ListNode) { if (areNodesLinked(nodeOuter, nodeInn...