The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
33 views

retrieve user defined datatype from table

SQL> -- CASE 1 SQL>select nest_test.id.num from nest_test; select nest_test.id.num from nest_test * ERROR at line 1: ORA-00904: "NEST_TEST"."ID"."NUM": invalid identifier SQL> -- ...
0
votes
2answers
141 views

C# - setting a user defined folder path as a string variable the first time a program is run

Thanks to you all for the help so far! I am extremely new to c# and code in general. I have a question that I cannot seem to find the answer to. I just wrote a simple program that moves files from ...
1
vote
1answer
42 views

How to throw an user-defined exception from Velocity Template Script (VTL)?

How to throw an user-defined exception from Velocity Template Script (VTL) ? From my velocity script, i need to throw an exception based on a condition, so that the caller can catch the exception and ...
0
votes
1answer
90 views

apply a formula to a whole range

This may be a pretty easy piece of code for experimented VBA developers/users, but im new programming an Im stuck on this task for a couple of days already :( . All I need is to apply a formula to a ...
0
votes
0answers
52 views

window object is undefined in opera browser

I am having problem with one of my functionality. In javascript a define a class where I create an object _DialogArguments in window. var topWindow = window.top; this.topWindow._DialogArguments = ...
0
votes
1answer
58 views

Python + Shell [Creating user-defined unix commands and installation]

This is for a small project proposal. I want to create many user defined unix commands and perform various operations on files using codes written in Python. E.g. extractinfo 'filename' [This command ...
0
votes
3answers
141 views

User-defined callback function is being fired multiple times in Javascript/jQuery

There are some similar questions, but they all seem like regarding native jQuery callback functions. So I have this code which (live) creates a div containting some form elements. Values of these ...
0
votes
0answers
10 views

How to register my device driver with specific bus or user defined bus?

I am registering bus and also registering device in my system now i like to register my device with my user defined bus so now how i am able to do this?
0
votes
0answers
204 views

User defined dates javascript datepicker calendar

I have a date-picker javascript calendar which code I am pasting below. It shows the calendar for a user-defined month/year, with each date links to a particular webpage which has the url set for the ...
1
vote
3answers
74 views

Make a user-created function in R

I'm sorry if this has been asked before but I can't find the answer. Let's say I write a small function in R add2<-function(a){ return(a+2) } I save it as add2.R in my home directory (or any ...
0
votes
1answer
469 views

OData with WCF Data Services / Entity Framework

Apologies in advance, this is a long question. (TL;DR : Does anyone have any advice on using the EF with dynamic fields exposed using WCF Data Services/OData) I am having some conceptual problems ...
0
votes
3answers
158 views

user defined size of a two dimensional array (Java)

I'm new to java, and i'm trying to make a array who's size is user defined. I'm staring off by filling in the entire array with zeros and moving from there. How should I go about doing that? What I ...
1
vote
1answer
103 views

some maps lose user defined counters when running hadoop jobs

all I have a hadoop job and define several counters by myself. When I am running this job(numbers of map > 500), I found some map tasks lost the user defined counters, but the hadoop built-in ...
0
votes
1answer
192 views

Powershell - Custom Attributes in an Exchange Contact

List contacts in "Shared Public Folder": # First create Outlook object and get the Mapi namespace. $Outlook = New-Object -com Outlook.Application $Namespace = ...
0
votes
1answer
70 views

#define in 'user-defined' section of target build settings, is not defined when xcode compiles code

I have a project, using the current version of Xcode and llvm. I am doing a free and paid version of a game, so I have set up a preprocessor flag to do it. For the paid version target I define ...
2
votes
5answers
317 views

.equals() for user defined class in Java

Please see the below code class TestToString { public static void main(String args[]) { CheckToString cs = new CheckToString (2); CheckToString c = new CheckToString (2); if( ...
2
votes
1answer
229 views

IE Browser losing ckeditor element setHtml(“<userdefinedTags></userdefinedTags>”)

This following Code Running in FF & IE TempNode= CKEDITOR.dom.element.createFromHtml("<span></span>"); TempNode.setHtml("<p>test</p>"); But below mentioned code losing ...
0
votes
2answers
158 views

User Defined Html tag

I created a filterable DropDown list Using JavaScript. I designed this control using input field, button (Down Arrow) and Select Box with fixed size. If i click down arrow button i'll place the select ...
3
votes
3answers
3k views

Adding a user defined language in notepad++

I'm trying to add the syntax plugin for the Go programming language in notepad++ . ...
0
votes
1answer
20 views

counting lines in a table using user-defined variable from another table?

I'm very new to this - could someone let me know if this query is correct? I'm trying to take a variable from table 1 and use it to count lines in table 2... Many thanks. INSTRUCTION Take the ...
4
votes
1answer
128 views

Unix sort text file with user-defined newline character

I have a plain text file where newline character in not "\n" but a special character. Now I want to sort this file. Is there a direct way to specify custom new-line character while using unix sort ...
4
votes
2answers
275 views

Java: Generate Random Numbers following a user defined Function

Thanks in advance for any help. I need to create random numbers which follow a user defined function in Java. The general way of doing this is through applying an uniform distribution to the integral ...
0
votes
1answer
53 views

python re-usable user error handling

I have been playing around with using error handling. In particular with user defined errors. However I am not sure if the following approach a bad idea / recommended / plain weird? import operator ...
1
vote
1answer
102 views

Profiling user-defined methods in android

Can't I use profiling for user-defined methods in android? I searched for my method name in the 'Find:' box of the profiling window. But, no use. I am using Eclipse 3.7.2 in Ubuntu 12.04. Any answers ...
2
votes
2answers
547 views

mysql using user-defined variable in where clause

sql query: select u.username, @total_subscribers:=( select count(s.id) from subscribers as s where s.suid = u.uid ) as ...
1
vote
1answer
96 views

Setting user defined variables with joins

I have a query like below: Result gives @sold_count:=SUM(I.quantity) = 10, but @sold_count = 0, so calculations are all 0. What should be wrong here? SET @sold_count :=0; SELECT ...
0
votes
1answer
306 views

User-defined variable in an INSERT query for MySQL

I need to use user-defined variable in an INSERT query for MySQL, see an example bellow: INSERT INTO `posts`(`id`) VALUES(NULL); SET @last_insert_id = LAST_INSERT_ID(); INSERT INTO `comments`(`id`, ...
1
vote
0answers
132 views

MFC - How to send messages between 2 different Views

I have 2 CView-derived classes, CThumbView and CMainView. The CThumbView class displays thumbnails of images and the CMainView class controls the View that displays the original image. I want to ...
1
vote
6answers
295 views

Ideas on how to make user-defined variables within a Java program?

I am new in Stack Exchange, and I have been looking around for quite a while, with no answer. In my free time I am creating a matlab/like program in Java, I have noticed that I need to create a way of ...
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 ...
1
vote
1answer
75 views

table initilization list take to int, in user defined class

this is my short code class A { public: int x,y; A(int a=0, int b=0) { x=a;y=b; } }; int main() { A t[2] = {9,3}; cout << t[0].x << " " << t[0].y ...
0
votes
1answer
173 views

mysql user-defined variable concurrency in connection pool?

In mysql we use @ for user-defined variable, which stays alive until the connection is closed. In java, when multiple threads share one connection pool, while calling a stored procedure concurrently ...
3
votes
3answers
144 views

mysql user variable within an IN where statement

I now gave up and sorted it by other means but because "curiosity killed the cat" I am trying to figure out how to use mysql query @variables within an IN where statement: So, from this: SELECT * ...
0
votes
1answer
705 views

SQL Server, table-valued functions slow processing

I tried everything but I couldn't overcome this problem. I have a table-valued function. When I call this function with SELECT * FROM Ratings o1 CROSS APPLY dbo.FN_RatingSimilarity(50, ...
0
votes
1answer
116 views

Allow users to create their own categories and add items to it

I want to allow any user to create a category using a text field. I want to let them create any number of categories they want, with any name they want. The problem is I have no idea how to set up the ...
0
votes
1answer
543 views

set android app background to picture or live wallpaper

I was recently told to convert my flash app over to a tablet. So I only just started coding in the java language. I am going to have a default picture set as the background. However, if the user ...
0
votes
2answers
377 views

user defined data type in mysql with java

lets say i have a class named myClass1 and i have another class myClass2 such that myClass1 contains a collection of myClass2... storing this in java is very easy. i was wondering how can we do that ...
0
votes
1answer
285 views

In MySQL how do I use a user defined variable in a WHERE IN clause

I dont understand why this does not work. Can someone explain what I need to do? SET @my_list = '2,6,8,10,12,13,14,18,19,21'; DELETE FROM my_table WHERE my_table.table_id IN (@my_list);
0
votes
1answer
2k views

Starting a user defined service in windows Xp

I am creating a user defined service on Windows Xp using sc.exe To create I started with sc.exe create "My Service" binPath= "D:\Service.bat" Got a message CreateService SUCCESS. Then I entered ...
1
vote
2answers
38 views

In XML is a Schema User Created?

if I make an XML Schema; I would physically define that schema correct? Or is there a program somewhere that would create a schema for my XML file automatically? Maybe I am confused on Schemas I'm not ...
0
votes
2answers
413 views

VB6 and COM: cannot use user-defined type parameter in COM function

I am using a COM object in VB6. The COM object has a function Foo(Long, Long, Rect). Rect is a struct defined in the COM object implementation. My VB6 code (a button on a form) is like below: Private ...
3
votes
2answers
1k views

User-Defined Aggregate functions in Oracle PIVOT clause

Unable to use user-defined aggregate functions in Oracle PIVOT clause. I created a user-defined aggregate function called string_agg. I am able to use it in a simple statement such as... select id, ...
4
votes
2answers
177 views

Use an user variable in a “INSERT ON” clause

I try to make a clean trigger with user-defined variables, so this is my code : SET @target_bdd = 'trigger_second'; SET @trigger_name = 'account_copy'; SET @table_name = 'account'; SET @primary_key ...
1
vote
1answer
256 views

AndroidManifest.xml user defined data - is it possible?

I'm thinking about possibility to put into AndroidManifest.xml some custom data. E.g. version of SQLite database for this particular release of app. For sure i can put those data as hardcoded in ...
1
vote
1answer
116 views

What is SIGUSR2 used for in the TCL interpreter?

I'm getting a user defined signal 2 error from the tcl interpreter. What does the tcl interpreter use this particular signal for? In other words, what does it mean if the tcl interpreter send me a ...
3
votes
2answers
208 views

User-defined routine in Doctrine 1.2?

I have to write an user-defined routine for my MySQL database (calculating distance function). Is it possible to define it in yaml schema file? After defining routine in terminal mysql-client ...
8
votes
1answer
1k views

List all User-defined Variables & Functions in a Notebook in Mathematica

Is there a way to list all the user-defined variables & function in a Notebook ? I would like this for the comfort it brings to a notebook overview as well as to spot potential multiple use of a ...
7
votes
1answer
382 views

How do you setup tab settings for user defined file types in notepad++?

I'm trying to setup Notepad++ to be able to edit a particular source-code file (*.mrc / mIRC Scripting File). The only thing I can't figure out is how to set the tab settings to 3 spaces. I've ...
4
votes
3answers
402 views

Deleting user-defined elements in the middle of a vector

I'm coding a program where I want to draw a card, and then delete so that it doesn't get drawn again. I have a vector of Cards (class containing 2 structs that define Suit and Value) called deck and ...
1
vote
0answers
329 views

Oracle create function fails

can somebody tell me why the below function should fail compilation? CREATE or replace FUNCTION CONCAT_LIST (cur IN SYS_REFCURSOR, sep IN VARCHAR2) RETURN  VARCHAR2 IS  ret ...

1 2