Tagged Questions
The multiple-value tag has no wiki summary.
17
votes
4answers
17k views
How can I store multiple values in a Perl hash table?
Up until recently, I've been storing multiple values into different hashes with the same keys as follows:
%boss = (
"Allan" => "George",
"Bob" => "George",
"George" => "lisa" ...
5
votes
9answers
2k views
Hashtable with mutiple values for single key
I want to store multiple values in single key like:
HashTable obj = new HashTable();
obj.Add("1", "test");
obj.Add("1", "Test1");
Right now this throws an error.
1
vote
4answers
62 views
PHP: If statement matching several values prints nothing, elseif prints a div. Howto?
Good evening!
Being a total PHP-n00b I'm asking here hoping some clever brain out there can help me out.
This is the case:
<?php if(wpsc_product_count() == 3 ) :?>
<div ...
1
vote
1answer
513 views
Access 2010 Update Query for a Multivalue Field Set Equal to Value of Other Table
I have a database of U.S. Congressional information whereby I have FirstName, MiddleName, LastName, District, State, Party, etc. of each Congressman in the 112th Session of the U.S. House of ...
1
vote
1answer
612 views
ReportViewer - how to filter on Multi Value Parameter
I have a report that uses a Multi Value parameter. I have added this to the report and can specify the parameter values in code.
Now I want to filter the data on the report by the multiple value ...
1
vote
3answers
652 views
PHP MySQL Searching multiple values in one field
How can I store multiple values in a single SQL field and ensure this data is searchable?
For example I want to be able to do this
name | num
-----------
John | 21, 22, 34
Mike | 41, 32, 43
Dave | ...
1
vote
1answer
570 views
Comparing values from a string in a MySQL query
I'm having some trouble comparing values found in VARCHAR fields.
I have a table with products and each product has volume. I store the volume in a VARCHAR field and it's usually a number (30, 40, ...
0
votes
1answer
93 views
Excel: How to analyze cells with multiple values?
i have a table with a column NeedSegment containing cells with values like the followings:
OEMrs;#Partners;#Balancers;#DoItYourselfers;#Savers
OEMrs;#Partners;#Balancers
Savers
A different column ...
0
votes
0answers
288 views
Drupal: Using hook_form_alter to set default values for multiple-value CCK fields
I was previously using the Default Value PHP field in the CCK Field Properties page to define multi-value default which was working fine. However the code is now getting so complex and I need to pass ...
0
votes
1answer
457 views
How to add multiple value textfield to Drupal form?
Is it possible and how to implement one textfield with multiple values in drupal form?
Say, I have the next code:
function mymodule_admin_settings() {
$form['email'] = array(
'#type' => ...
0
votes
5answers
950 views
Are there any way to use delphi inputbox with multiple values?
I want to get multiple different types values (time, pressure, name, ...) from user. and I want to customize my inputbox. But it take only one value.
Are there any way to solve this situation, or any ...