The declare tag has no wiki summary.
0
votes
2answers
31 views
Dojo instances of same widgets are not saparated
I have built a Dojo Widget for creating a list by entering values. the widget code is:
define(["dojo/_base/declare", "dijit/_WidgetBase", "dijit/_TemplatedMixin", ...
-2
votes
1answer
32 views
how to create view with variables inside?
i have some code here but first i want to explane my question.
i want to create a view but thats not possible in a view because my SELECT statement hase some variables in it i have seen some answers ...
0
votes
2answers
33 views
Defining jQuery function in variable [closed]
I have a website that uses Flexslider. In setting this up, it requires registering the function for use later on in the same js file:
var $window = $(window),
flexslider;
Then using the ...
0
votes
1answer
23 views
ORACLE DECLARE CURSOR for LONG datatyped Column inserting
I want to transfer values in a database to another database. But in my source database there are table with columns with LONG datatype. So i cant simply use the insert command for these LONG typed ...
0
votes
1answer
14 views
Declare Global Variable inside a Button1_Click
I tried to google this abit but I could'nt find anything useful. So I in my form1_load I have this variable
Dim Myvariable As String
then in a button click I want
Myvariable = "Hello"
Problem is ...
-1
votes
1answer
64 views
How to declare session variable in C#? [duplicate]
I want to make a new session, where whatever is typed in a textbox is saved in that session. Then on another aspx page, I would like to display that session in a label.
I'm just unsure on how to ...
0
votes
1answer
38 views
Declare and Set not recognized syntax for my SQL server
I am running an SQL server version: 5.1.44 using XAMPP. I've been looking through SQL tutorials that use the commands DECLARE and SET.
When I run
DECLARE @iVariable INT, @vVariable VARCHAR(100), ...
0
votes
2answers
50 views
vb.net - How to Declare new task as SUB with parameters
As you know we have a new syntax in vb.net with possibility to create inline tasks so we could run it asynchronously.
This is the correct code:
Dim testDeclaring As New Task(Sub()
...
0
votes
2answers
34 views
iOS Objective C Method issue
I am trying to port a project of mine from Android to iOS and I am running into some fundamental issues that have been vexing. Like currently for instance I can't call a method I created because it ...
0
votes
1answer
21 views
sql issue with declare query
I've got a java application that I'm using to retrieve information from a table in sql.
The problem is that the tables change depending on the main application that is using them; there is a view that ...
-1
votes
2answers
46 views
bash -declare documentation
If you declare an array like this
declare -a test
you can echo the value like this
i=2
echo ${test[i]}
or
i="1+1"
echo ${test[i]}
why the second form is accepted?
i need a complex answer ...
0
votes
3answers
60 views
Creating a number of integers by user request
I recently started learning C and wanted to know if there was a way to declare some integers, with the value given by the user.
For example, the user types in 3. I would like to create 3 integers, ...
1
vote
2answers
106 views
must declare a body because it is not marked abstract, extern, or partial c#
Any ideas on why I am getting this error? I know it may be a simple fix but I'm completely new to C# and I'm unable to find any fixes around.
'SimpleMath.UI.Add_operation.btnCalculate_Click(object, ...
1
vote
0answers
51 views
Missing partial modifier on declaration of type 'x' - cause by auto-generated code by designer
The full error description is as per below:
And I found a few similar question posted before: A and B
But the question in A and B does not provide detail of problem description (perhaps we ...
-2
votes
5answers
92 views
Declaring array of objects in Javascript
Well ..!! I have a variable which is an array and i want every element of the should act as a object . To achieve this , i can do something like this in my code ..
var sample = new Array();
sample[0] ...
0
votes
3answers
66 views
How do I create a list with no predefined length and assigned values to their positions, in Dart?
I'm developing my first application with Dart, which had previously created in JavaScript.
In my statement in JavaScript I have declared a List, and I assign values to the first three positions, as ...
1
vote
2answers
84 views
How do I declare structures in my .C file?
First of all, I'm new to C, so bare with me.
I have to implement a Linked List in C, and according to the project specifications, the following structures must be created in my header file:
typedef ...
0
votes
1answer
24 views
aspect declare @type
I'm trying to solve the following problem: I have an aspect defined like this:
public aspect ComponentAspect {
declare @type : uk.co.xxx.* : @Component;
}
As expected it annotates everything in ...
0
votes
1answer
103 views
Backup database with different name time-related
My code ,for agent's job on SQL server 2008 , generate the backup file, but it keep OVERWRITE the first bak file everytime the agent's job triggered !!?
how can i make backup with different name ...
0
votes
1answer
16 views
Methods and passing a double
i keep getting an error message on this one piece of code. i tried declaring it and passing it in a tone of different ways. my apologies if the code isn't that advanced. i'm still a beginner.
/*
* ...
1
vote
5answers
67 views
Eclipse “can not be resolved to variable”
In my main method, eclipse is giving me 'DeckOfCards can not be resolved to a variable' when trying to create a new deck
This started happening when I was combining multiple .java files into one for ...
1
vote
2answers
145 views
What do “#!/bin/env” mean in node.js?
I found serval node.js project, at the app.js, like in openshift program
there always a declare like this
#!/bin/env node
what does this mean? how does this work? where it come work?
0
votes
1answer
106 views
AspectJ declare parents on complex hierarchy
There is a possibility in AspectJ to modify the class hierarchy using declare statements :
declare parents : TypePattern extends Type;
From ...
1
vote
1answer
115 views
Qt: QSqlDatabase object in class (how to declare?)
I am trying to create a class which should handle all the data from and to a sqlite database. However, I am pretty new to QT and C++ and wondering about the declaration of the database object in the ...
-1
votes
3answers
154 views
Creating a temporary table name with a randomly generated number
So far I have this code:
declare @random int, @upper int, @lower int, @rndtb varchar(20)
set @lower = 1
set @upper = 999
select @random = ROUND(((@upper - @lower) * rand() + @lower),0)
select @rndtb ...
-1
votes
5answers
83 views
Declaring a string inside a print statement [closed]
Can we declare a string inside a Print statement
Let say i want to do something like this
{
System.out.println(String Phew="phew");
}
If yes, How ?
If no,Why?
0
votes
1answer
38 views
Declaration of a custom function in another custom function
My 1st function:
function db_connect_error_mail ($txt) {
mail(admin_email,mail_subject01,$txt);} //1st three variables come from constants at config.php
and 2nd function:
function connectdb() {
...
-2
votes
1answer
98 views
How i can to declare putStrLn or print in Haskell [closed]
my answer is:
How can i declare print in function?
bisiesto :: Int -> **?**;
bisiesto x = if (x `mod` 4 == 0 && ((x `mod` 100 /= 0) || (x `mod` 400 == 0))) then print("Es bisiesto") else ...
0
votes
2answers
413 views
SQL Server Select statement using dynamic variables
Ok so in the below statement I am trying to take the first pi.planinfoid selected as the first field and make it a dynamic variable in the place of the 1736 you see in the two select statements being ...
0
votes
1answer
148 views
Pl/SQL: Difference between define and declare
DEFINE p_annual_sal = 60000
DECLARE
v_sal NUMBER(9,2) := &p_annual_sal;
BEGIN
v_sal := v_sal/12;
END;
/
What is the the use of the "Define" word?
1
vote
1answer
70 views
PHP Ticks and Declare construct
function myfunc()
{
print "I will pass!";
}
register_tick_function("myfunc");
declare(ticks=1)
{
}
I wrote the following code in order to understand the subject of "ticks" used with the ...
4
votes
3answers
219 views
C function pointer syntax
My question is very simple one.
normally, when declaring some variable, you put its type before it, like:
int a;
a function pointer may have type like: int(*)(int,int), in case we point to a ...
2
votes
1answer
83 views
What is the effect of ftype declarations on built-in functions in SBCL?
I'm building on some old Common Lisp code written by others, which includes lines such as the following at the start of a few functions:
(declare (ftype (function (&rest float) float) + - * min ...
1
vote
4answers
184 views
String Value Try Catch in Vb.net
I am having a hard time understanding why this always returns an empty variable
Private Function checkEnvelopeStatus(aEnvelopeID As String) As String
Dim lEnvelopeStatusMessage As String
...
0
votes
2answers
113 views
What is the difference between not initializing a pointer, and having it be initialized to null?
I'm building a simple generic engine for my true start in the making of games, and I am trying to be somehow organized and decent in the making of my engine, meaning I don't want it to be something I ...
1
vote
2answers
257 views
Can I declare the same variable twice in different for loops in JavaScript? [duplicate]
Possible Duplicate:
JavaScript Variable Scope
I have a JavaScript function for HTML select options for days:
// Show and hide days according to the selected year and month.
function ...
1
vote
1answer
129 views
Subquery in DECLARE statement brings back more than one value
I have the stored procedure below that I need help on. Its purpose is to find differences between a staging DB and the production DB. When it finds the difference, the stored procedure will update ...
3
votes
4answers
426 views
MySQL local variables
I am trying to define and initialize a MySQL variable for a query.
I have the following:
declare @countTotal int;
SET @countTotal = select COUNT(*)
from nGrams;
I am using MySQL in Netbeans and ...
1
vote
3answers
180 views
Declaring class object inside a class header C++
I'm trying to declare a class object inside a header but I can't get it working. I currently have 2 header files and 2 cpp files that defines what each function does. The classes are called Heltal and ...
0
votes
1answer
321 views
how to define global variable in VB.NET?
how to declare global variable in VB.NET (Web Forms "ASPX") and use this variable in all pages ?
how is Method Initialize and Cancel initialized in web page ?
Thank you
1
vote
2answers
85 views
Why do SQL declare fail?
I have this piece of code:
BEGIN
DECLARE @NewLine CHAR(2)
SET @NewLine = CHAR(13)+CHAR(10)
END
When I run it in phpmyadmin, I get this error:
#1064 - You have an error in your SQL syntax; ...
0
votes
1answer
2k views
character encoding of a framed document was not declared
I get this warning in FF when developing a site of mine. I can't find any real info about it and how to fix this.
the character encoding of a framed document was not declared. The document may appear ...
1
vote
1answer
183 views
dojo declare tutorial confusing syntax
I have been reminding myself of the syntax for using dojo's declare for class creation, and come across this confusing description...
The declare function is defined in the dojo/_base/declare module. ...
0
votes
1answer
71 views
use a variable outside the function
hello i have this function
locDistance(alat[i-1], alon[i-1], alat[i], alon[i]);
function locDistance(lat1, lon1, lat2, lon2) {
//Radius of the earth in: 1.609344 miles, 6371 km | var R = ...
1
vote
4answers
91 views
VC++2010 seems to only allocate a single std::string in an fixed-array
This seems simple to me but I'm having trouble actually finding anything explicitly stating this.
Does std::string stringArray[3] not create an array of std::string objects, the way that SomeType ...
0
votes
2answers
104 views
define function and pass struct values
I'm new to C and I had a couple questions about getting struct values into a function and the correct way to declare the function.
in my common.h I've defined
extern struct ddrautocal;
int ...
3
votes
2answers
593 views
Must declare the scalar variable error in subselect SQL
I am trying to create a SQL script that will create a nice easy to update script where another person only needs to update the constants involved and then run a query, however I an getting into ...
0
votes
2answers
1k views
VBA in Excel: “Can't find project or library” error when executing in 2007
Using VB for Excel in Excel 2003, I have no problems executing code with some non-declared variables:
numberOfBooks = 0
However, if I try to execute the same code in Excel 2007, I get a "Can't find ...
0
votes
2answers
128 views
Objectify - How to declare a foreign key?
I am working with Google app engine and Objectify. I am unable to find that how to declare foreign key in Objectify.
Any help would be really appreciated.
Thanks.
0
votes
3answers
247 views
Difficulty declaring that user input is not an integer C# [closed]
I could use a try catch scenario here, but I'm used to saying if x = 30 or if x > 100, but what I need to say is if x != int, but I am not allowed to use that statement.
What I need is a way to say, ...




