Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
273 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 ...
4
votes
1answer
3k views

Set Locale programatically

HI! My app supports 3 (soon 4) languages. Since several locales are quite simular i'd like to give the user the option to change locale in my application, for instance a Italian person might prefer ...
4
votes
1answer
267 views

How is __eq__ handled in Python and in what order?

Since Python does not provide left/right versions of its comparison operators, how does it decide which function to call? class A(object): def __eq__(self, other): print "A __eq__ called" ...
4
votes
5answers
180 views

How can I define a “Do-Nothing” sort?

I'm working on a system where I need to be able to sort a vector by a given predicate, which my classes shouldn't have control over. Basically, I pass them a derived class and they blindly sort on it. ...
3
votes
2answers
62 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 ...
3
votes
2answers
92 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 ...
3
votes
3answers
246 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 ...
2
votes
4answers
124 views

No compilation error when the “same” user-defined conversion exists twice

In C#, why are there no compilation errors when the "same" user-defined conversion exists twice? (once in the source class and once in the target class?) For example, if I try to compile the ...
2
votes
2answers
199 views

Prolog Function

I'm looking for something like built-in operators that has a return value in Prolog(SWI-Prolog) . e.g. if you run "A is (1+2) + (3+2)." then it returns "A = 8." so how can i define func operator to do ...
2
votes
1answer
829 views

Where To Put User-defined Classes in Rails

I'm trying to to use this class http://robbyonrails.com/articles/2005/05/11/parsing-a-rss-feed but am not sure where to place the file so that it functions like a helper.
2
votes
6answers
13k views

call user defined function in jquery

I am trying to call user defined function in jquery. $(document).ready(function() { $('#btnSun').click(function(){ myFunction(); }); $.fn.myFunction = function() { alert('hi'); } }); ...
2
votes
4answers
510 views

User defined conversion operator as argument for printf

I have a class that defined a user defined operator for a TCHAR*, like so CMyClass::operator const TCHAR*() const { // returns text as const TCHAR* } I want to be able to do something like ...
2
votes
3answers
583 views

What is the best way to model user defined hierarchical relationships in a database?

Essentially, I want the user to be able to define a hierarchical model, but then I need to allow the user to store data within their defined model. Does this make sense? So the users will be able to ...
1
vote
2answers
24 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 ...
1
vote
2answers
269 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, ...
1
vote
1answer
60 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 ...
1
vote
0answers
188 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
vote
2answers
302 views

Set table names using user-defined variables in MySQL stored procedures

I want to create a table with a name taking from a user-defined variable. The following code doesn't seem to work (I get a MYSQL syntax error near CREATE TABLE line) Thanks in advance for the help ...
1
vote
6answers
1k views

When to use a user defined Exception and some good examples/best Practices?

I would assume that most User-defined Exceptions are for Business Logic level exceptions, but what are some good reasons to use a User-Defined Exception and what are some good examples? Is a ...
1
vote
3answers
438 views

User defined top level control in XAML

A normal UserControl looks like this in XAML: <UserControl x:Class="mynamespace.foo" ...namespaces...> <!-- content --> </UserControl> I'd like to be able to define my own top ...
0
votes
1answer
64 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
0answers
21 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
109 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
60 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
0answers
46 views

defining operators in notepad++

i'm trying to make my own user defined language. it's a really weird language, cause some operators are unintuitive. for example, there's no lesser than operator < and no operator ever starts with ...
0
votes
1answer
40 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
0answers
49 views

How to code type modifier for postgresql user-defined data type?

I'd like to implement a user-defined type for one of my database assignment, I read the postgresql carefully but the problem is when executed inside the modifier_in function my user-defined URL type ...
0
votes
0answers
27 views

How to make a class to store token data from XML

just in need of a quick refresher. I'm currently writing a simple java-based XML parser. I mean simple. It's whole goal is to find open, close, and self-closing tags in a given XML file, and output ...
0
votes
2answers
138 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 ...
0
votes
1answer
74 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 ...
0
votes
1answer
97 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 ...
0
votes
2answers
342 views

How to copy user libraries between workspaces in Eclipse

I was mistaken in thinking that the user libraries I define in one workspace would be available in all and subsequently created workspaces. So I created a new workspace to organize the myriad of ...
0
votes
1answer
161 views

Java Reflection Problem

Hi I am currently doing my final year project; I need to develop an algorithm visualization tool. I need to cater for user-defined algo; that is animate the algorithm the user types in a text-editor ...
0
votes
3answers
237 views

user-defined exceptions with enumeration “error level”

I have made some user-defined exceptions and I would like to add an error level to each exception. forexample userInputerror, and internalError. The reason I'm coding this, is because I want to learn ...
0
votes
1answer
84 views

Extendable Diagram Tool

I need a Diagram Tool with ability to extend set of diagram types and diagram primitives and save them as templates for future use. User-scripted exports or export formats for my diagrams would be ...
0
votes
4answers
130 views

How do I query an object collection using user defined conditions?

Sorry if this is a little abstract. I'm in the early stages of development. I have two object types: An object that needs to store a series of user defined conditions. An object that matches zero ...
0
votes
2answers
283 views

Cast to user-defined data type in PostgreSQL

I have created a data type called id which consists of two text values: id(text, text) I now need to cast values to this data type before they are inserted into my table. How would I go about doing ...
0
votes
6answers
212 views

Deleting user-defined vectors - C++

I have 2 classes, say A & B. Class B has a destructor of its own. Within class A, I have a vector of pointers to objects of class B. The vector is as follows: vector<B*> vect; In the ...
0
votes
1answer
179 views

Performance - User defined query / filter to search data

What is the best way to design a system where users can create their own criterias to search data ? By "design" i mean, data storage, data access layer and search structure. We will actually refactor ...
0
votes
1answer
90 views

ASP.NET User Defined Wizard

I am starting a project in which the end user would like to create a wizard via our web application in order to drive users to specific pages within the application by answering a series of questions. ...
0
votes
4answers
2k views

jQuery val() Method on a Custom Object

I have an object called ValueBox that I created like this: function ValueBox(params) { ... $.extend(true, this, $('/* some HTML elements */')); ... var $inputBox = $('input[type=text]', ...
0
votes
1answer
455 views

MPI user-defined datatypes, is what I'm doing safe?

First time using MPI outside some simple practice apps, and something's not going right. I have a class defined with the following members (methods omitted for the sake of readability and conserving ...
-1
votes
1answer
147 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 ...