variables

Is there any way I can define a variable in latex?

In Latex how can I define a string variable whose content is used intead of the variable in the compiled pdf? Let's say I'm writing a tech doc on a software and I wnat to define the package name in the preamble or somewhere so that if its name changes I don't have to replace it in a lot of places but only in one place Thanks ...

Handling the return value of object_getIvar(id object, Ivar ivar)

1) object_getIvar(id object, Ivar ivar) returns an 'id' if the Ivar is an object eg. if the variabe is an NSString, presumably the id = NSString which contains the value. Is that correct? Or what do I need to do to access the value of the Ivar. 2) if the Ivar is a float/int etc. what will get returned and how do I convert it into someth...

How do I get the int value from object_getIvar(self, myIntVar) as it returns a pointer

if the variable in object_getIvar is a basic data type (eg. float, int, bool) how do I get the value as the function returns a pointer (id) according to the documentation. I've tried casting to an int, int* but when I try to get that to NSLog, I get error about an incompatible pointer type. ...

what does a php function return by default?

If I return nothing explicitly, what does a php function exactly return? function foo() {} What type is it? What value is it? How do I test for it exactly with === ? Did this change from php4 to php5? Is there a difference between function foo() {} and function foo() { return; } (I am not asking how to test it like if (foo() !=0) ....

Best way to combine Play and Pause button?

Hi, this is more of an advise thread I guess. I've been wondering how one could create a button which display "play" when it's not pressed. And then shows "pause" once it's pressed. And visa versa when it's pressed again. I had a similar problem when trying to create an expand panel button, but that was easy because I could just set a ...

TypeInitializationException was unhandled - Trying to set a boolean variable

Hi, this is very strange. All of a sudden, I get this error message from Visual Studio saying that TypeInitializationException was unhandled. Searching for this error reveals that I should check if a variable is null(nothing) or not. My scenario is like this. I have a separate GlobalVariables.vb module which I create variables in. I do...

Uninitialized values being initialized?

In C, automatic variables, if uninitialized, hold a garbage value. However, consider the following program: int main(){ signed char term; (char)term--; printf("%d\n",term); } It prints a value of '7'. If I don't do a (char)term--, it prints a value of '8'. So, it definitely doesn't hold a garbage value. Isn't this contradictory? ...

Passing one variable from one SWF to Another?

Now I understand this has been asked to go from Parent to Child before, which is all well and good, but what I want to know is, how do I go about passing from a Child SWF back to the Parent? The way I do it for Parent to Child is: In your parent swf you’d put _global.myvariable = blah; In your child swf you’d put this. myvariable =...

asp.net mvc - what is a the scope of a variables inside a view

if i have code inside an asp.net mvc view that looks like this: <% bool admin = false; if (ViewData.ContainsKey("isAdmin")) { admin = (bool)ViewData["isAdmin"]; } if (admin) { %> ... generate table of html %> and later down the page i cr...

SQL query result in a string (or variable)

Is it possible to output SQL query result in one string or variable? (i'm bad in php and mysql) Let's say I have db "agents" with columns - agent_id, agent_fname, agent_lname, agent_dept. Using this query: $sql = SELECT a.`agent_fname` FROM agents a WHERE a.`agent_dept` = 'FCA' I want to get a string or a variable, so I can use it in...

Windows JAVA HOME problems

I'm trying to experiment with OracleHelp for Java on my Windows Vista server. I downloaded Oracle help, and I'm following their installation instructions which states: Unzip the OHJ installation .zip file into a directory of your choice Ensure that you have the JAVA_HOME environment variable set to the location of your compatible Java ...

How to read/copy ctype pointers into python class?

This is a kind of follow-up from my last question if this can help you. I'm defining a few ctype structures class EthercatDatagram(Structure): _fields_ = [("header", EthercatDatagramHeader), ("packet_data_length", c_int), ("packet_data", POINTER(c_ubyte)), ("work_count", c_ushort)] class EthercatPacket(Structu...

Is it possible to release a variable in c#?

I'm just curious... Is it possible to release a variable in c#? What I mean is, can you do something like this: ... string x = "billy bob"; //release variable x somehow string x = "some other string"; //release variable x somehow int x = 329; ... ... so basically you are declaring the variable multiple times in the same scope. ...

Declaring variables inside a switch statement

I saw a few answers to this issue, and I get it — you can't declare and assign variables inside a switch. But I'm wondering if the following is correct at throwing an "error: expected expression before 'int' switch (i) { case 0: int j = 1; break; } Why would putting an NSLog before it result in no errors? switch ...

JQuery IE8 Variable Undefined Error

I am trying to read the value of the FlashVars parameter off of a Flash .swf file that's being embedded onto a page using swfobject. I can't change anything about how the Flash is being put on the page so I'm trying to manipulate it with JQuery. In Firefox the following selector works: $flashvars1 = $(".homepagecolumn1 embed").attr("fla...

A few C# naming convention questions

1) What's the policy for declaring a variable? Should you always use the keyword private, or is it OK to skip it? string MyVar1; vs. private string MyVar1; The only reason I see is that Microsoft one day can change the default access modifiers to public instead of private. Where does it say that private is optional? Any references...

PHP Global Variables

I have a database class, which an instance is declared in the main index.php as $db = new Database(); Is there a way for the $db variable to be globally recognized in all other classes without having to declare global $db; in the constructor of each class? ...

variables in xslt

hi friends I am getting a particular value by using <xsl:value-of select="@date" /> and i want to store this value as a variable say 'd' How can i do this and also tell me how can i use that caribale back in my template. Thanks in advance ...

how do i have dynamic confirmation popup using simple modal

I am using simple model which is a very neat piece of code but i have one requirement i can't figure out. http://www.ericmmartin.com/simplemodal/ my use case is the third options where i want a "Confirmation Popup" after a user clicks on an action. The issue is that in the example the message is hardcoded in the js file. i need to be...

how to use a function with a non-optional argument defined as the third

I'm using someone elses class and that person has defined a function with five arguments. in Sentry.php: function checkLogin($user = '',$pass = '',$group = 10,$goodRedirect = '',$badRedirect = '') If all five fields are filled in this leads to a login procedure. Now on the page where he explains how to use this there is a snippet wh...