A variable is a named data storage location in memory. Using variables, a computer program can store numbers, text, binary data, or a combination of any of these data types. They can be passed around in code, to other functions and even other applications.

learn more… | top users | synonyms (1)

3
votes
0answers
339 views

HLSL Pixel Shader - global variables?

I am new to HLSL and shaders. I can't seem to replace the color I retrieve. It's for use in 2D text, i.e. subtitles. The problem is if I set osd_color outside main() it doesn't display anything. I am ...
3
votes
0answers
203 views

How to share a variable between Java and C in android JNI?

Is there a way to share a native C variable instantly with Java in android JNI? I wanna receive data from C layer in client since the server is written in C++(with struct read/write involved),and ...
3
votes
0answers
410 views

Google analytics session-level custom variable not showing all visits

I'm having trouble tracking info through GA Custom Variables. I'm using for the same kind of pages both a page-level and a session-level Custom Variable, both in different slots. As I understand from ...
2
votes
0answers
92 views

Alternative to Response.Redirect in Webmatrix

I am writing a check list for mechanics so everything uses radio buttons and pull down menus (blah!). There could be over 50 items so passing values in the url would be messy. If I send the form with ...
2
votes
0answers
66 views

how to resolve burn variables in the bootstrap xml

One of my goals in creating the bootstrap project is to set a default log location. I would like the location to be based on the local app data folder. I cannot figure out how to reference the ...
2
votes
0answers
165 views

Public variable as Outlook Mail item do not stay persistant

I have a project where I have set up a public variable as a outlook mail item. All subs are in the same module. I set the variable as public at the top of the module Public CurrentMsg as ...
2
votes
0answers
188 views

PHP Export all user-defined variables to file, import if file exists?

Is it possible to (say, when the PHP script crashes or something) dump all user-defined variables to a file, and then the next time the script runs, import the file and re-set (perhaps from a ...
2
votes
0answers
56 views

Gtags to index global variables

I want gnu global to index global variables of the project. Is that possible (without having to get into the source of gnu global)?
2
votes
0answers
75 views

Override plugin options default values

$.fn.formreg=function(options){ options = $.extend({}, $.fn.formreg.defaults, options); return this.each(function() { var $this = $(this) ; }); }; $.fn.formreg.defaults={ ...
2
votes
0answers
419 views

MySQL: Re-using user-defined variables in the same SELECT statement

I did a search in stackoverflow but didn't quite find an exact answer to my question, so please help me if you can. I 'want' to build a SQL statement like this: SELECT @tax1 := (complicated ...
2
votes
0answers
447 views

Change Xcode's environmental path variable

I migrated from iphoneOS3.1.2.sdk to iphoneOS4.0.sdk and had to re-reference all frameworks. The old OpenAL reference is getting stuck in the build script as I see the new one but the old one is ...
1
vote
0answers
34 views

Java variable across multiple include blocks - variable cannot be resolved

I have jsp page that looks something like this: MyPage.jsp <%@ include file = "/Title.jsp" %> <%@ include file = "/Header.jsp" %> <html>...</html> In Title.jsp there is a ...
1
vote
0answers
24 views

SSIS Expression use with SQL Query

I've got an ongoing issue that I'm trying to get around. I'm trying to get a file count into a flat file name (that's file count not row count). My plan is to use a lookup table that tells SSIS what ...
1
vote
0answers
80 views

Java: Wrong variable increasing?

This little snippet of code for some reason isn't working properly. What this is supposed to do is make a move if "i" is less than "colLength", which is 2 at this point meaning it should stop after ...
1
vote
0answers
30 views

Unable to remove values from result table in Stored Procedure

I have This Stored Procedure which works up until certain point DELIMITER $$ CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_RunSearchPostFilter`(vResultTable VARCHAR(64)) BEGIN IF (SELECT COUNT(*) ...
1
vote
0answers
70 views

session variable values cannot be display in the email message?

need help to solve display session variables values in message function problem is that sessions variable values cannot display on the message when the users got the email? in the message mail ...
1
vote
0answers
22 views

Eclipse machine dependent variable?

I am working on a eclipse android projekt on two different machines (home and work) Everytime I switch home to work and vice versa, I replace the project folder in its current location with the ...
1
vote
0answers
68 views

Random float for random brightness of the LED xCode

I tried to use a random float to get a random brightness for the LED of an iPhone. float x = arc4random() % 11 * 0.1; AVCaptureDevice *device = [AVCaptureDevice ...
1
vote
0answers
7 views

METAPOST: using loop variables in labels

Dear stackoverflowers, recently, while playing around with the METAPOST enviroment, I encountered a problem. While drawing something using the loop 'for' macro I needed the value of the loop variable ...
1
vote
0answers
72 views

Dump Values of All Variables in Visual Studio

My program does a funky thing where it works only sometimes, mostly after running it a few times. What I want to do is copy the values of all the variables of when it doesn't work and do the same for ...
1
vote
0answers
41 views

Compare a variable with database entry

I want to compare a variable with database entry, if they match to then pull out a bit of information from that account, if they don't then to end the query. SELECT Account.ID AS ID, ...
1
vote
0answers
140 views

textbox values won't assign to a variable in vba

I was running tests on my software today and found that some of the values it was producing weren't correct. I decided to step through the code and noticed that the variables I had assigned to ...
1
vote
0answers
64 views

MATLAB maximum variable size exceeded during 2-way ANOVA

I am trying to run a 2-way random effects ANOVA on a set of data in MATLAB. This is the code I am using: [pval table stats terms] = anovan(modelfit, {RATEES RATERS},... 'model', 'interaction', ...
1
vote
0answers
50 views

Variable expires_in time for Rails Action Caching

I want to use action caching in my rails app. Right now I set the timeout for the cache to 1 minute but I would like to have it variable. Here is the code of my rails controller: ...
1
vote
0answers
50 views

Izpack, Java - Get the resource path as a variable

During the installation I execute a java class. I throw some variables from my install.xml file to this java class. My problem is I see no way to throw the IzPack resource path to this class. There ...
1
vote
0answers
153 views

Creating and setting typedef struct values in Objective-C

I have a class in a game that is often used, and I thought it would be nice to tidy it up by grouping together instance variables with a typedef struct. I'm not completely convinced yet this will help ...
1
vote
0answers
36 views

PHP preg_replace_callback variables optimization

I've been searching a lot on info about preg_replace_callback and managed to get my thing to work, but I'm wondering if this can be optimized? Can I run these two in a single preg run? // 1. ...
1
vote
0answers
82 views

Strange variable behaviour using Perl ithreads

I'm trying to implement a multithreaded application based on a slightly altered boss/worker model. Basically the main thread creates several boss threads, which in turn spawn two worker threads each ...
1
vote
0answers
36 views

Variable in View is always nil

I am new to ruby. I created a new action in controller where I set variable test1 def tsload @test1 = '00:00' respond_to do |format| format.html { render :template => 'tsload' ...
1
vote
0answers
84 views

View SQL Server list of declared variables in SQL batch

Does anyone know if there is a way to view the list of variables that have been declared in a SQL batch? It would be something like this: declare @Variable1 datetime2 select * from [List Of Declared ...
1
vote
0answers
65 views

Wordpress: Passing $tags to [shortcode] in sidebar for dynamic content relevant to current page

I'm using Testimonials Widget shortcode, which uses a custom post type for its content. I'm trying to put it in the sidebar displaying testimonials which share tags with the current post, and in the ...
1
vote
0answers
51 views

How to extract substrings from a variable?

I want to echo out the three-digit HTTP error code into three separate digits. I tried two methods, but both failed to work: Method 1 <!--#echo var="{$REDIRECT_STATUS,0,1}" --><br> ...
1
vote
0answers
20 views

Each loop variables into background images, hiding the key?

The answer to this maybe really simple so go easy on me, I've only just started Jquery in the past month. Put together a each loop to go through images in a slider, href'ing them to the key. Code ...
1
vote
0answers
326 views

passing a date variable to a sql query

I have the following user input form. I need to combine the mmddyyyy into one variable and then pass it to another page to use in a sql query. I can get the query to work when the date is hardcoded ...
1
vote
0answers
175 views

JSF - passing xhtml textfield to another xhtml page textfield

I found several similar questions but none of them was helpful as they referred rather to passing variable to beans and nothing else. I have a page ("RegistrationStep1.xhtml") with a text field which ...
1
vote
0answers
105 views

JQuery: Transfert content from local file to variable. (Same origin policy)

I'm trying to create a local javascript application ( no server-side language ) The application have different text templates. I'd like 1 file per template. But my problem is that I don't know how to ...
1
vote
0answers
75 views

Expect: Easy way to check response for variable inside expect response

I am looking to see if there is an easy way to determine whether there is a loaded variable in an expect response similar to the one below. (Note $sb is switched out) expect { "some text\rsome ...
1
vote
0answers
104 views

ModalBox Email pass php variable to sms sender

Ok, so I use ModalBox to create an email form on my website..however, i need the modal box to send the email not to me, but to the user who added the car(its a car selling website), and so I need to ...
1
vote
0answers
134 views

run shell command inside Hive that uses Hive's variables value as input

I have a python script that receives a Hive table name and 2 dates and adds all partitions between those dates. (runs a bunch of hive -e 'alter table add partition (date=...)') What i would like to ...
1
vote
0answers
64 views

Windows IIS6.0 (PHP) Server not accepting any POST or GET variable value starting with http:

I am facing a weird problem with one of my clients php script/ web server. It's Windows IIS6. None of the PHP scripts are accepting a POST/GET variable value starting with 'http:'. Let me explain via ...
1
vote
0answers
77 views

Adjusting node_prefix variable on a pre-build binary

If I obtain a pre-built binary, is there a simple place I can go and tell this binary where it is to be stored? For example, if I obtain a binary from here, then process.config.variables.node_prefix ...
1
vote
0answers
61 views

define global variable with delegates

Is it possible in Javascript to declare a global variable and populate in a delegate function? I have a function that directs to a delegate function. The problem is that global variables cannot be ...
1
vote
0answers
191 views

report builder 3.0 sum group variables out site groupe

I have made a row group variable and I want to make a sum out site of the groupe of this variable and not for the multiple values. The Expression whiche I want to sum is: ...
1
vote
0answers
32 views

How to send variables between different views on XCODE?

I am currently trying to create an application that will allow the user to build a "fake" report card. How would I be able to use variables to go from SecondViewController to ThirdViewController? I ...
1
vote
0answers
403 views

Repetier V0.70b firmware uploading to Printrboard

I am new to the RepRap community, 3D printing in general, and the new Printrbot PLUS. I am trying to update the firmware to Repetier's package as I would like to use their software and want as much ...
1
vote
0answers
365 views

Jasper Reports: changing variable

I defined variable in my subreport like this: <variable name="isIndividual" class="java.lang.Boolean" resetType="Report"> ...
1
vote
0answers
385 views

CSS3 Flip effect with variable size content

I've read some tutorials about making a flip effect on a block element using CSS3 properties, and tried to reproduce it. My problem is that, in each of these tutorials, all the "flippers" had a fixed ...
1
vote
0answers
99 views

Setting Variables within Makefile commands

I'm facing a silly problem with GNU makefile. I want to define two targets to build a c program; one with debugging and the other without. runNoDebug: setNoDeb objs runMe runDebug: setDeb objs runMe ...
1
vote
0answers
332 views

PHP, MySQL LOAD DATA LOCAL INFILE {$_FILES[file][name]} as a variable filename

I am creating a function that imports a file and creates a table and names it $memberID_$filename It chokes when it tries to convert the filename over. I am thinking it is because of the .txt but not ...
1
vote
0answers
177 views

Extracting variables from Bottle or Jinja2 template

I'm trying to grab the variables from Bottle templates so my Python application can see which variables are required when the template is finally rendered. Kind of like, select a template first, the ...

1 2 3 4 5 33