name

How to concatenate a number to a variable name in MATLAB?

I have a variable a = 1. I want to generate a variable name of the form: variableNumber so in this example, I would want a1 a2 a3 as variables. How can I do that? ...

How To Get the Name of the Current Procedure/Function in Delphi (As a String)

Is it possible to obtain the name of the current procedure/function as a string, within a procedure/function? I suppose there would be some "macro" that is expanded at compile-time. My scenario is this: I have a lot of procedures that are given a record and they all need to start by checking the validity of the record, and so they pass ...

Maximum Length for a foreign key in DB2? (SQL0107N)

We have two installations of DB2. When defining a foreign key with a long name, it works fine on one instance, but not on the other (we get a SQL0107N Name too long - max length is 18). What is causing this different behaviour? Is there a parameter we can change or is it version dependant? ...

PlaneProjection is not working well in silverlight

in silverlight project using name attribute in planeprojection gives Error 1 The type or namespace name 'PlaneProjection' could not be found (are you missing a using directive or an assembly reference?) code i used for that <Image Name="blabla.jpg" Height="200" Width="200" > <Image.Projection> <PlaneProjection Name="pp" /> ...

jQuery validate plugin with a minimum of 2 elements from a single array name

Hi, I have a list of input type="file" with their names as list[]. Following this question, I was able to make the rules and messages working in my jQuery. But I do need at least 2 elements of list[] to be filled and adding the rule required: true only works for the irst element of the list, any idea how do I do that? Cheers, Nicolas. ...

How to localize bundle display name in iPhone app?

How can I localize bundle display name of an iPhone app? The name displayed in iPhone main screen under app icon. I wish a single binary bundle package which will be displayed multilingually. ...

[GWT] Change Element's node name?

Is it possible to change the element's node name in GWT? I mean something like this: HTML h = new HTML(); h.getElement().setNodeName("mydiv") while there is no setNodeName() method for Element. I'd like to acquire <mydiv>some contents</mydiv> instead of default tag <div>some contents</div> Thanks for any hints. ...

Check name is unique if not append

My application requires the user to enter their business name, which the application will automatically create into a unique identifier to be used in URLs, ie "Bob's Cafe" will become "bobs-cafe" But if there are duplicate names I would like the application to add a number so if there is already a "bobs-cafe" we will use "bobs-cafe-1" ...

Better name needed for applying a function on elements of a container

I have a container class (containing a multi-index container) for which I have a public "foreach" member-function, so users can pass a functor to apply on all elements. While implementing, I had a case where the functor should only be applied to some elements of a range in the container, so I overloaded the foreach, to pass some valid ra...

Getting the names of all files in a directory with PHP

For some reason, I keep getting a '1' for the file names with this code: if (is_dir($log_directory)) { if ($handle = opendir($log_directory)) { while($file = readdir($handle) !== FALSE) { $results_array[] = $file; } closedir($handle); } } When I echo each element in $results_arra...

How to determine sql server object name from object id and database id (sql2000)?

I need the behaviour of sql2005 where function OBJECT_NAME takes two arguments obj id and db id, while sql2000 takes only obj id so the execution must be in the context of the database to which inspected object belongs to. Solution must be possible to implement in a function, so it can be used in a select query. ...

Rails 2.3.5 model name translation problem in error messages

Hi Rails'ers, I encountered some problem while trying to translate my model's names and attributes in a Rails 2.3.5 app. I have the following model: class BillingPlan < ActiveRecord::Base validates_presence_of :billing_option_id belongs_to :order belongs_to :user belongs_to :billing_option end When validation fails, my m...

WPF MenuItem Content "Name"...

Hi, I have a LOT of MenuItem(s), and I want to be able to change their "Content" so that it displays in the program. When I load up the program, their "Content Name" is set in a Setter I created.. but the only problem is that I have almost a hundred MenuItem objects, and I need their display names in the program to be different (not the...

Create unique file name and fetching it to commandline argument

Hi everyone, I am working on python right now and i am little bit stuck in performing some tricks. I have web form with two options- File upload and textarea, i can easily pass file name with file upload options but have problem when it's textarea. Because when i use textarea then first i have to save values passed from textarea to some...

how to name an object reference (handle) dynamically in ruby

So I have a class like this: def Word end and im looping thru an array like this array.each do |value| end And inside that loop I want to instantiate an object, with a handle of the var value = Word.new Im sure there is an easy way to do this - I just dont know what it is! Thanks! ...

How to get short month names in Joda Time?

Hello Does anyone know if there's a method in Joda Time or Java itself which takes either an int or a String as an argument, e.g. 4 or "4" and gives the name of the month back in short format, i.e. JAN for January? I suppose long month names can be truncated and converted to upper case. Thanks Mr Morgan. ...

Activity monitor doesnt display process name

Hi, I have an application, when I see that application in "Activity Monitor" the applications Process Name is displayed nothing. Only the application icon is displayed. I tried debugging this by getting processInfo of the app, I got the application name correct. Even tried with the "top" command, I got the application name correct. The...

Is VS what's the name of the dropdowns with classes, functions, etc under the tabs?

I am developing an extension, and I need to read the value of these two dropdowns, but I don't know what they are called. Any idea or guess? ...

How to set the process name of a shell script?

Hi, is there any way to set the process name of a shell script? This is needed for killing this script with the killall command. Thanks for any hint. ...

Get name of function

Hello, are there any ways to get function signature/name from it's pointer? Like: void test(float data) {} cout << typeid(&test).name(); I wan't to use this data for logging. ...