blah blah blah is here! blah blah » Close

0
votes
1 answers

[C#] Create Array on summing some variables

Hello Guys I am new to C# and have searched a long time for a solution but can't find it... I hope you could help me. I have many variables (inserted by the user of the program, when run) with different values. Now my program should b ...

1
votes
3 answers

PHP Vars, T_Constant Encapsed String

I keep getting a VARS error message. Here is the server adress: latin.allderek.com/input.html Source: [code] <?php // Declare Buttons // Connect to Allderek.com Latin Vocab Database. $link = mysql_connect('localhost', 'all ...

0
votes
1 answers

Importing variables in C++ dll into a C# program

Hi all, How do I import a variable declared shell32.dll (which is a C++ program) into a C# program? I read online that [DllImport(shell32.dll)] will not work for variables. I tried that too. It doesn't work. Can someone please post th ...

0
votes
1 answers

PHP - COOKIES and MySQL Help

I am trying to pass a variable back and forth between some pages. Here is the live adress: latin.allderek.com/input.html Source: [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www. ...

0
votes
1 answers

PHP Passing Variables

I have a PHP script (Starting at the form on latin.allderek.com/input.html . On the main PHP Script (latin.allderek.com/latin0.php) I have a set of error messages I dont get. What is wrong? Thanks, D Source: [code] <sty ...

0
votes
1 answers

Variables

How do i send a variable from Flash to PHP? Simple please because I am a beginner.

0
votes
2 answers

Pass a variable from one form to another

Let's say I have form1 and form2. Form1 and Form2 are open. You click a button on Form2 and it adds 1 to a variable called myNumber on Form1. Now the problem is I can't use the new keyword and create a new instance of Form1, because Form ...

1
votes
1 answers

variables through forms, with event args

Hi, how can i pass a value to a form ex. in form1 i have var1, how can i send it to the form2 giving var1, and when finished setting that variable on form2, give it back to form1 with the change. Thanks, Daniel

1
votes
1 answers

Copying instance variables to a new class

Suppose I have this class: [code]public class MyClass { public int ID; public string Name; private string Buffer; public string DontCopyThisData; public string GetIDAndName() { return ID.ToString() + ":" + ...

1
votes
1 answers

Variable not Setting (With Tic Tac Toe!)

MPQC
15

Well. Basically, I've got a variable, named "Turn". Turn is a string, which is either equal to "x", or "o". (Yes, it's a game of tic tac toes. ;D). So, the problem. Basically, the program is structured like thi ...

Feedback