Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
22answers
3k views

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 ...
9
votes
5answers
310 views

.NET - Multiple libraries with the same namespace - referencing

Today I am faced with a curious challenge... This challenge involves two .NET libraries that I need to reference from my application. Both of which I have no control over and have the same namespace ...
6
votes
6answers
225 views

How do pointers to pointers and the address-of operator work?

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 ...
3
votes
4answers
51 views

Javascript: Referencing own object properties

Is there any issue doing the following.... var myObject = { name: "Johnny", init: function() { $("body").mousemove(this.setStatus); }, setStatus: function(ev) { ...
2
votes
2answers
112 views

C++ - How to refer to recursive structs through pointers using vectors

I have structs, let's call them sn, that look like: struct sn { string name; vector<sn*> connected_to; }; Now, suppose I have the connected_to vector already declared from 0 - 9; and ...
2
votes
4answers
77 views

Passing a value from an assembly to an application in C#

this may be a simple question but I'm relatively new to C# and have found this site extremely helpful so far. If I have an assembly which contains a function that manipulates a string and then ...
2
votes
0answers
41 views

Referencing Assemblies. Command-line compilation

I am using the jsc.exe compiler that comes with the .Net Framework for compiling my JScript.Net scripts into executables. What is the right way to reference assemblies from the command line? I keep ...
2
votes
1answer
147 views

referencing mupdf in Qt4 project

I have libfitz.a and libmupdf.a in /usr/local/lib (previously compiled). then I included the headers: #include <fitz.h> #include <mupdf.h> then I put: INCLUDEPATH ...
2
votes
2answers
196 views

“You must add a reference to assembly” compiler error in weird case

I have two applications App1 and App2. App1 added a reference to App2 and App2 added a reference to System.Drawing. In App2 there's a function with two overloads, the first one is protected and has a ...
2
votes
3answers
244 views

C# LINQ: How to check object value of a listbox item and set color accordingly

I was wondering if this was possible. Here is the code that populates a listbox: var allHolds = from a in db.Record_HoldDatas join f in db.LUT_Flavors on a.Flavor ...
2
votes
3answers
123 views

Can an abstract class be used as a reference type?

I'm not so sure what that would imply and my textbook is dancing around the answer.
2
votes
1answer
2k views

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 ...
1
vote
2answers
26 views

What is the behavior for referencing javascript libraries multiple times across multiple files?

I have some javascript files that I want to live independently of each other. Each of these files reference other files for some library functionality. Finally, there are times when all of this code ...
1
vote
2answers
43 views

Disable docked button in a view from controller

I have a MVC app built with extJS 4. I want to disable a docked button in a grid panel from a controller Here is my grid panel view: Ext.define('SDI.view.MissionsGridPanel', { extend: ...
1
vote
2answers
70 views

Problems understanding static modifier

I am having difficulty understanding what a "static" method and "static" variable is and it is causing me problems with my code. Here is the code I am having difficulty with: public class ...
1
vote
1answer
48 views

Is it possible to get LaTeX to link to the top of a figure rather than to its caption?

In my TeX file I have the following code: \begin{figure}[H] \begin{center} \includegraphics[width=5in]{screens/main.png} \caption{\label{fig:MainScreen} Screenshot of the main ...
1
vote
2answers
229 views

Excel Checkbox to call cells via relative referencing

Hey guys, I am trying to create a set of checkboxes that when clicked, will make changes to the cells in the same row as the checkbox is on. To do so, I would have to call the cell location of the ...
1
vote
3answers
121 views

Effective way of getting an article's published date/author dynamically?

I'm working on a referencing webapp as part of a course I am studying, the aim of which is to allow students to quickly and easily reference the materials they find information in and I'm running into ...
1
vote
3answers
695 views

MongoDB/Mongoid: sorting by referenced document's ID

I have 2 classes in Mongoid: Topic & Post. Topic references many posts. I want to order topics by post's id descending, so that the most recent post is at the top. @topics = ...
1
vote
1answer
43 views

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 ...
1
vote
0answers
36 views

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?
1
vote
2answers
258 views

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 ...
1
vote
1answer
855 views

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 ...
1
vote
1answer
871 views

Programatic way to do linear referencing in ArcGIS

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 ...
1
vote
4answers
807 views

Working out which cell Vlookup refers to

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 ...
0
votes
2answers
65 views

Java project with executable jars; running and retrieving data from them

At work, I use a Java application (I have located compiled/executable jars on the C-drive). I want to be able to grab some information from this application through code. The application itself ...
0
votes
0answers
22 views

Apache Licensing

I would like to use a function from here. It looks like all of the google maps sample code is licensed under the Apache License v2. What do I need to include in my source files and/or installation ...
0
votes
4answers
89 views

C Change Pointer of Array to Larger Array

I have an array inside a struct like so: typedef struct mystruct{ const char *myarr[30]; } mystruct; I need to grow this array later in the program to 60 elements by creating a new ...
0
votes
1answer
33 views

Use the sitemap content element to load content of the referenced pages

I use the sitemap content element so that the editor can explicitly reference to individual pages in my page tree. Of course those pages do contain content elements (Textpic, Media, all the good ...
0
votes
2answers
50 views

How to reference a Value in a created object after being created as part of a set

Hi I am kind of new to Java. As part of a uni tute[sic] we are creating insurance policies that can be taken out by a user. All different types of insurance can be taken out under one policy. Most of ...
0
votes
0answers
43 views

Why in the VS2010 add reference dialogue do assemblies have a 'version' and a 'file version' and how can we achieve VB6 like binary compatibility?

As the title suggests I'm struggling with versioning. In a nutshell I would like if possible to emulate the binary compatibility stuff from VB6 in my .Net suite of dll's and exe's. I have tried auto ...
0
votes
3answers
28 views

PHP - Referencing a 'faux parent' s properties…?

I've been wondering about the following for a while: I'm using a construct of loading some (,in this case 'tool'-) classes into properties of a 'parent' or 'controller' class. More concrete: ...
0
votes
1answer
201 views

Can't add a reference to my project - it simply doesn't detect it

So I found this wonderful library called WatiN - and I've downloaded the latest version - v2.1. I've opened a Console Applications (obviously C#) and wrote my most simplest program: using ...
0
votes
1answer
85 views

Class referencing Error - sometimes a problem

Okay so I did not know what to search for in order to answer this question. In my code for some reason some of my classes can be referenced as per instructions by Python class MyClass: """A ...
0
votes
0answers
124 views

How to use muParser with C# Project in VS 2010 or later?

I'm working on a project that will use Sorce Forge's muParser (the C# Wrapper version) in conjunction with a C# (CLR) Project but can't figure out how to reference the muParser DLL to the project. ...
0
votes
1answer
49 views

Issues with referencing Android library projects

I'm trying to use an ActionBar library project in my app but I keep getting errors when trying to add the library reference. I do it as described on the Android Developers website (here) but it only ...
0
votes
2answers
126 views

How do you reference the workbook that called an Addin from the Addin in Excel?

In Excel 2010, I have an Addin that is called from the Ribbon XML file from the main workbook. How do I reference the workbook (I really need its path) that called the Addin from within the Addin? ...
0
votes
2answers
254 views

Crash when scrolling in UITableView - object being released unexpectedly (Objective C)

very novice programmer here so I think my issue is a conceptual one. **Note: I have updated the code based off of aroth's suggestions - however it is still crashing. The code in the below post is the ...
0
votes
3answers
103 views

Is there a way to reference Javascript multidimensional arrays safely?

Imagine the following situation: var array = new Array ( [0,0,0,0], [0,0,1,0], [0,0,0,0] ); var x = 0; var y = 0; if(array[y][x]) { // x and y can be any integer // code should execute only for ...
0
votes
1answer
145 views

Structure double Referencing error in C

I am puzzled by the errors i get for referencing structure members. I have structure like this, typedef struct { Int32 *pInAddr[2]; Int32 a; }JobInfo_t; typedef struct { ...
0
votes
1answer
65 views

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 ...
0
votes
1answer
467 views

Using “MakeRouteEventLayer” in ArcGIS

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 ...
0
votes
1answer
164 views

Menu Merging Over References (.dll and .exe)

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 ...
0
votes
2answers
547 views

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 ...
-6
votes
1answer
42 views

Taking photos using the Iphone camera

We have developed an iPhone app and now wish to utlise the camera to:- - take a photograph and save it in a specific sub-directory (set up when the App is upgraded/loaded) of Photos but only when the ...