The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
47 views

Variable Reference Elements of Lists in R [closed]

I have been using R for a number of years now and I keep expecting to stumble upon the answer to this basic question somewhere but somehow I can't seem to find it anywhere. How do you use a variable ...
-1
votes
1answer
58 views

Using get methods or storing references for each object for references to objects [closed]

I am writing a relatively large game server program that has multiple large objects to handle different functions I have had experience in modifying a hybrid statically written server where I could ...
-6
votes
1answer
136 views

Part 1: Referencing an Array Without Using Pointers and only Subscripting | Part 2: “…” with Pointers [closed]

#include <iostream> #include <time.h> using namespace std; void my_func(); int main() { float start_time = clock(); cout << "Starting time of clock: " << start_time; ...
0
votes
4answers
44 views

Java: Can a method reference a method in the same class if that method refernces the original method

I'm learning Java and making a simple text-based game. I have a method in my class which references another method in the same class, but that method references the method referencing it if a certain ...
0
votes
2answers
30 views

Referencing a file not in the project solution c#

Struggling with a small part to a recent assignment, we've been asked to provide only the .cs file during the hand in process of our assignment, however it also asks us to reference a .txt file. ...
0
votes
3answers
89 views

C How to reference various memory locations within ONE array

I'm reading a file in and adding each character to an array. I then break these characters down into words by removing spaces and other non-essential characters. Now, to work with each word ...
1
vote
2answers
62 views

Java array referencing another array

So is it possible to reference another array element from within a different array? Like this String[] array1 = new String[] {"World"}; String[] array2 = new String[] {"Hello", array1[0]}; ...
0
votes
2answers
44 views

File referencing help - php includes [closed]

Most of my pages are at root level, ie: http://localhost:8888/page-one.php http://localhost:8888/page-two.php But some of them are a bit deeper, ie: http://localhost:8888/aa/bb/cc/deep-page.php ...
1
vote
2answers
111 views

How to replace a list item with direct instance assignment

I have the following code where I'm trying 3 approaches (Cases) to update the first item in a C# list(Note: Dump() is a helper output method in the LINQPad IDE). I would appreciate an explanation as ...
0
votes
2answers
71 views

Passing a reference to an object for mutation C++

I have an object with a method that needs to mutate an outside instantiated object. I've been trying to reference the object in the parameter and that is clearly not working. This is what I have: ...
0
votes
0answers
36 views

Adding object to array while using variables to reference their names

New arraylist with a name depending on a variable iex "`$$('my'+'arraylist'+$thisorthat)=New-Object System.Collections.ArrayList" Preexisting object with a name depending on a variable iex ...
0
votes
1answer
117 views

Referencing Outlet

I created new file .h and when I drag the 'New Referencing Outlet' line over drawImageView, it won't highlight. #import <UIKit/UIKit.h> #import <QuartzCore/QuartzCore.h> @interface ...
0
votes
5answers
152 views

Incompatible pointer types in C. When do we use * or &? Having trouble with the concept of pointers by reference

I'm having trouble with pointers. I know I should have gone to office hours, but I'm in desperate need of help. The biggest problem right now is trying to debug this program. From my understanding, ...
0
votes
1answer
214 views

Manipulating an ASP.Net TreeView that's in a Master Page from a different web page

We would like to manipulate an ASP.Net TreeView that's in a Master Page from a different web page. This coding is from the Master Page web form code-behind file. We would like to duplicate this ...
1
vote
1answer
67 views

Meteorjs display referenced document field

I have the following scenario. There is a collection Suppliers and another Invited. Now Invited.supplier = Supplier._id (syntax might be wrong) Invited collection refers to Suppliers in One to Many ...
0
votes
3answers
95 views

Reference previous object created in loop to update SQL

I have a loop that sets up the form, which is the following code (in the form load event). This displays a checkbox with the persons name. It checks the checkbox if a bit field is 1. int ...
0
votes
1answer
22 views

Referencing Variable Inside Method

This looks long but it's a really simple question. With the following code: public class Map extends MovieClip { var dragdrops:Array; var numOfMatches:uint = 0; var speed:Number = 25; ...
1
vote
1answer
82 views

How to reference a nested JSON key in Objective-C

I'm trying to reference a Twitter username using Json and ObjectForKey Example twitter JSON source = web; user = { "contributors_enabled" = 0; "created_at" = "Tue Mar 09 ...
3
votes
2answers
75 views

How to find reference file used?

I know how to reference an external library. However now i am trying to work on a code example, and want to know this in reverse. So some libraries are used, and I dont know which dll's are used. Thus ...
3
votes
4answers
213 views

meaning of “referencing” and “dereferencing”

I read different things in the internet and got confused, because every website says different things. Speaking about C. I read about * referencing operator and & dereferencing operator; or ...
1
vote
0answers
180 views

setting up xcode4.5 to reference other dylibs

I am new to xcode IDE and having difficulty referencing dylibs. I am trying to call Matlab runtime initialization function by linking to libmwmclmrt.7.16.dylib and I added that in Build Phases->Link ...
0
votes
2answers
85 views

jQuery + Javascript - accessing object fields in anonymous function

I'm not into JavaScript OOP, so I've made an object with some fields which contains some functions to invoke. var test = { questions: [], addQuestion: function(questionTitle, ...
2
votes
1answer
478 views

OpenERP 6.1 put product brand in sale order line

I installed the product_brand module for OpenERP 6.1 http://apps.openerp.com/addon/2507?filter={%22order_by%22%3A+%22click_counter+desc%22%2C+%22text_search%22%3A+%22product_brand%22}&page=0 ...
0
votes
0answers
20 views

referencing property in javascript associative array

I can't understand referencing in this small example ( using object as associative array ): var container = { config: { effect: 'slideToggle' } } container[config.effect](500) // what is ...
0
votes
2answers
77 views

Accessing an element in an array

This is the snippet of Java code. class Test{   public static void main(String[ ] args){ int[] a = { 1, 2, 3, 4 };        int[] b = { 2, 3, 1, 0 };        ...
0
votes
1answer
417 views

MySQL: how to refer to transition tables

:) I have these two tables: create table possiede ( soc1 integer not null, soc2 integer not null, primary key (soc1,soc2), perc double ); create table contr ( soc1 integer not null, soc2 integer not ...
4
votes
3answers
126 views

PHP: Passing an entire Class as a paremeter within another Class

So far I feel like I've understood the concept and the advantages of OOP programming, and I've not really had any difficulties with understanding how to work with classes in PHP. However, this has ...
1
vote
2answers
92 views

Editing a single referenced variable in child forms in c#

I'm currently attempting to make a program for a project I'm working on. I use 2 UserForms that end up embedded into a parent WinForm. What I need to do, and doesn't seem to be working, is create a ...
0
votes
2answers
63 views

PHP - Modifying data in an object

I have the following function: function moveUp($row_nr){ $other_row = ($row_nr - 1); foreach ($this -> data as &$row){ if ($row['row_nr'] == ...
1
vote
2answers
153 views

My button isn't being referenced from the xml file in the java program

So I made an xml file to try and access a simple button The activity_first.xml file is: package com.example.name.calling.proj; <LinearLayout ...
1
vote
2answers
389 views

Referencing previous sheet in macro for excel chart

I would like to be able to reference the next worksheet in a workbook using VBA, but avoid referencing the sheet name as I hope to be able to apply the macro to a number of different workbooks. I am ...
0
votes
0answers
67 views

Referencing all files in a folder and subfolder from command line

Basically I have a folder with .cpp files, .h files, and subfolders with .cpp and .h files in those sub folders. I need to know how to reference all of the files with the .cpp and .h ending, both in ...
0
votes
2answers
152 views

NoClassDefFoundError in referencing Java Application project from Java Servlet Project

I have a java application 'JA' and a Java project containing a servlet project 'JS'. From JS I need to use classes present in JA. So, I referenced JA in JS by right click project -> deployment ...
1
vote
3answers
161 views

How to reference a view's controller from the UIPanGestureRecognizer's selector in iOS?

Background: I have an MVC based polaroid object. The model keeps the photo's metadata, and image. The view displays the photo's name and image (via UIView). The controller has access to the model and ...
0
votes
1answer
609 views

How to go through a list on two different worksheets comparing values using VBA [closed]

I am trying to match 2 columns in one worksheet with 2 (or potentially more) columns in another worksheet. I have posted a sample of my worksheet data which hopefully gives a good description of ...
0
votes
1answer
128 views

Error when referencing Context class to XML in android

i am trying to referencing a Main.class that extend SurfaceView to XML layout. the XML is like this: <AbsoluteLayout android:layout_width="fill_parent" android:layout_height="fill_parent" ...
4
votes
3answers
238 views

perl referencing dereferencing of hashes

Consider the following simple piece of code: %hash = ('a'=>1,'b'=>2); print $hash{'b'}; print "\n",(\%hash)->{'b'}; #used when hashes are passed by reference ...
0
votes
1answer
110 views

selecting given entries of cell without loop

corrects = [1x4 double] [1x4 double] [1x4 double] [1x4 double] [1x4 double] [1x4 double] [1x4 double] [1x4 double] [1x4 double] [1x4 double] corrects{1} ans = 9 8 ...
0
votes
2answers
154 views

VB - Unable to refer to a textbox because I haven't created it yet

I am using VB to make a file editing system that allows the user to edit multiple files on multiple tabs like Notpad++. I hit a slight snag though. Seeing as tabs don't contain text, I add a textbox ...
0
votes
1answer
2k views

Visual studio cannot find my referenced DLL's namespace

This is a very frustrating problem. All of a sudden I cannot use referenced DLLs. I added an assembly reference to a project in the same solution and the namespace is unrecognised. I can even see the ...
2
votes
2answers
556 views

Deploying C# application that uses DirectX assemblies

I am developing the application that uses DirectX for graphics rendering. I have to point out that I am not using XNA or SlimDX, although I probably should. However, I did not know this at the project ...
0
votes
1answer
57 views

How do I reference XML objects inside of XML objects in PHP?

I've got a data structure in a variable $xml that looks like this: object(SimpleXMLElement)#3 (1) { ["release"]=> object(SimpleXMLElement)#4 (11) { ["@attributes"]=> array(1) { ...
0
votes
1answer
2k views

Exception: STATUS_ACCESS_VIOLATION - pointer referencing

I am just starting up some C++ (that is after 10 years of JAVA!). I am following examples from Stroupstrup book. I am put together the following code segments from his book. #include ...
0
votes
1answer
515 views

Referencing JSON object by name

My markup where I get the JSON from using $.parseJSON (after replacing single quotes to double): <a href="#" data-thumbslide=" [{'slides': [ { 'path' : 'img/slider-images/jeep_1.jpg' ...
1
vote
2answers
70 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 ...
0
votes
2answers
307 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: ...
3
votes
2answers
447 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 ...
-6
votes
1answer
76 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 ...
2
votes
4answers
174 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 ...
4
votes
4answers
98 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) { ...

1 2