referencing

What tool do you use to index C/C++ code?

I am working with a very large code in C/C++. Indexing and referencing is a must in this environment. What tools would you recommend for viewing/browsing the code? Preferably open source. I tried CDT for indexing but it is useless. Other tools I've tried is cscope, but it does not work well with C++... ...

Is there a guide to path referencing in PHP?

I know how to include files that are in folders further down the heirachy but I have trouble finding my way back up. I decided to go with the set_include_path to default all further includes relative to a path 2 levels up but don't have the slightest clue how to write it out. Is there a guide somewhere that details path referencing for ...

Reference one inline class from another.

Guys, I’m having difficulty referencing one main VB file from a new vb file. Here's the problem - the code file is ancient, and runs on ASP.NET 1.1. It runs without being compiled to a DLL, and changes regularly. for that reason, I'd rather not compile either New Person or Old Person to a DLL. A default page look something like this....

Referencing Error to the AudioToolbox in Objective C

I'm getting the following error in a simple Roulett app where I'm trying to play some wav files. I'm not sure what the error means because no warning flags come up in the code, and I've imported Here is the error: Undefined symbols: "_AudioServicesCreateSystemSoundID", referenced from: -[CustomPickerViewController pla...

Working out which cell Vlookup refers to

Hi, say if I see this Vlookup formula in my Excel spreadsheet: =VLOOKUP(G37,'tb 2008'!$H$142:$M$247,6,FALSE) Then is there an efficient way to find out which cell it is referencing? I don't want to manually perform the Vlookup in my head to find out which cell it found that fits the parameters. ...

Menu Merging Over References (.dll and .exe)

Hi, I have stumbled across an unusual problem whilst attempting to menu merge with Mdi. Basically, I have an MdiParent form which I have created in one solution, it will be the parent of a variety of MdiChild forms, which I have created in other projects and solutions, which will be referenced too in the MdiParent Project, the reference...

Programatic way to do linear referencing in ArcGIS

Hi everyone, I am working on a custom ArcGIS Desktop tool project and I would like to implement an automated linear referencing feature in it. To make a long story short, I would like to display problematic segments along a route and show the severity by using a color code (say green, yellow, red, etc.). I know this is a pretty common s...

Using "MakeRouteEventLayer" in ArcGIS

Hi, I'm trying to use the MakeRouteEventLayer tool but can't seem to get the different pre-conditions met. The routes are hosted on an SDE database. So far, I am setting the workspace by making a connection to the database server but I don't know how to get the arguments needed by MakeRouteEventLayer's constructor. I can't seem to find ...

[TSQL] Parent-Child view from table that is self referencing (ID)? (for tsql gurus.)

I have a organization name table with the following structure given below: CREATE TABLE [dbo].[DP_ORG_OrganizationUnit]( [GID] [uniqueidentifier] NULL, [ID] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL, [Code] [nvarchar](100) NULL, [Name] [nvarchar](100) NULL, [LastUpdated] [datetime] NULL, [ManagedBy] [int] ...

c# best way to grab a xsd from a referenced project

My application references another a project which has an XSD file in it. Whats the best way to get that XSD? I did a bit of googling and found suggestions like load the assembly and get it from that, is there no easier way? Can anyone help? Cheers, Andy ...

How do I determine if a particular assembly is available in Client Profile?

Given a particular reference assembly, what is the best way of determining whether it is available in a client profile or not? ...

How to get the 'similar' link in google?

Hi! I made a website that I submitted to google a few months ago. It comes up in results, but it could be much better. I've noticed that all the results in front of my site, there's a 'Similar' link just near the 'Cached' link, but it doesn't show up for my site. I know that that link gives related results, so I wonder if there's some...

Ways of Linking/Referencing XML nodes

Alright this question might sound a little bit stupid but I don't know where to start so I'll simply ask: I need a way to link or reference XML nodes among each other. So I started interviewing google and did find a few examples...yet I am not quite satisfied with the solutions i found. So i was wondering if there is a commonly accepted...

How to return a class variable as a reference (&/ampersand) in PHP?

This is sample of my code. class SomeClass extends SomeOtherClass { function __construct($input) { parent::__construct($input); $this->conn = new mysqli('a','b','c','d'); } function getConnection() { return &$this->conn; } } My main object is that i want to return the MySQLi connection by referencing it instead of creating another ...

A question on pointers

Take this piece of code: int a; int *pointer = &a; int **b = &(&(*pointer)); Would the above set b to the address of pointer or not? The reason I ask is because *pointer gives the value of a, and the reference of that is the address of a. Is this treated as just the address of a, or is it also treated as pointer. Does this make sen...