The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
15 views

How can I describe choice element using nusoap?

I use nusoap to generate wsdl and I'm stuck at the point trying to describe choice element (xsd:choice). The required xsd part looks like this: <xsd:complexType ...
-3
votes
0answers
35 views

Factors to consider before choosing a type of Assembly to learn? [closed]

I'm currently working on my Computer Security degree, and I know that assembly is important for reverse engineering, and is generally a good talent to have. But I also know that there are many types. ...
1
vote
1answer
32 views

Mule ESB choice flow control route

In Mule I have the following flow : there is a choice flow control which test the input and verify if the input String equals 'ctr1'. <flow name="mediationFlow1" doc:name="mediationFlow1"> ...
0
votes
1answer
32 views

Status with three choices

I want to make a choice dropdown form with three choices: -favored -intended -verified so i could'nt use a boolean for this. I have no idea how to set my annotations for my status field in the ...
1
vote
1answer
40 views

xmlElements with same name and different types

) I have an xmlelement which can be from different Types. Independent of the type it has the same name. It can be an object or just a reference via URI to an existing object. I thought xmlElements ...
-1
votes
0answers
64 views

How can I count the number of selections in a multiple choice column within sharepoint 2010? [closed]

Can anyone advise how I can do the following please? I have a custom list in Sharepoint which has multiple columns. These columns are "Choice" columns and the column is set to allow multiple ...
0
votes
1answer
27 views

MWTP in R with significantly positive variable for Price - Unexpected Results

I am using the support.CEs package in R for a choice experiment. I am attempting to calculate Marginal Willingness To Pay (MWTP). The package seems to be relatively new, and I have reviewed the CRAN ...
0
votes
2answers
77 views

how to add choices in select after page load in symfony2

After loading a page the select field is completed dinamically with jquery but the post data is not loaded in $form->getData(). After some search, the option is to add a hidden field and add the value ...
0
votes
1answer
67 views

initial value for django form choice field ignored

I have this form: class UserUsesSourceForm(forms.Form): # some fields here username = forms.CharField(label=("Username"), max_length=30, help_text = ("Required")) provider = ...
0
votes
0answers
33 views

mobile redirect choice [closed]

I am trying to create a website that redirects to a mobile site and I don't know how to flag if you want to access the desktop site. This is the code I used to detect mobile: <script ...
1
vote
1answer
102 views

ASN.1 CHOICE decode error with libtasn1

I have a problem with encoding/decoding a structure types containing a CHOICE-within-a-CHOICE construction. Simplest example is below. ASN1 File: TEST {} DEFINITIONS IMPLICIT TAGS ::= BEGIN ...
0
votes
1answer
57 views

flow control choice router

In mule 3.3.0 CE, I add these lines in my configuration XML file: <flow name="muleService" doc:name="muleService"> <http:inbound-endpoint exchange-pattern="request-response" host="localhost" ...
0
votes
0answers
29 views

Choice between URL domain extensions, what's the difference?

I have been searching the web for a while now on the "current" differences between .net, .org and .com.au. It seems that .org is still known for it's large organisational view, but .net has changed ...
1
vote
1answer
148 views

xsd choice for multiple elements

I would like my Xml file to look like the following <root> <name>a</name> <age>23</age> </root> or <root> <empno>b<empno> ...
0
votes
2answers
144 views

JTextField scroll

Im making this program for fun and i got stuck because the program was running off the screen. how do i implement a scroll bar without having to change my code completely. public static void ...
0
votes
1answer
151 views

Symfony's choice list as ul in a view using twig

I normally map user selectable properties to corresponding classes like so class Person { /** * @ORM\ManyToMany(targetEntity="HobbyClass") */ private $hobby } class HobbyClass{ private ...
1
vote
2answers
74 views

How to set to checked by default a filter_checkbox choice field with symfony2.0?

The title says pretty much everything, but here are pieces of my code to illustrate what I'm trying to do. Here is the Form Type //[...] class ActivityFilterType extends AbstractType { //[...] ...
-1
votes
2answers
29 views

Choice program

I am trying to make a program that sends a message after a user makes a choice, but after the choice is made then it just closes cmd. any help? heres te program. @echo off title Get A Life ...
0
votes
3answers
63 views

Python: Change in Django model not recognised

This must be really simple, but I can't get my head around it. I want to assign a simple one-character value to a django model instance. I have done that a million times, but in this case, it does ...
1
vote
1answer
59 views

PYTHON - Output every possible outcome from a set of multiple choices?

This is very basic but I don't know hot to go about it. Suppose I have a list of "choices" as an input. For example: c = [2,3,2] This represents 3 choices with 2 options, 3 options, then 2 ...
0
votes
1answer
30 views

Which language shoud I choose to develop a service? [closed]

I would like to develop a service which query PLC over an RS-485 network and then write in a DB. I think, in a first time it will be a CLI. And It needs to be portable on Windows and Linux without any ...
0
votes
0answers
228 views

How to change a choice field according to a dropdown selection

I have created a form in InfoPath based on a designed sml schema. I have a choice field and an enumuration field. The enum is shown in a dropdown (E.g. 1. Field1 2. Field2) I want to change the ...
2
votes
1answer
209 views

Ordered Probit/Logit with random coefficients

I searched everywhere but I didn't find what I want, that is why I as the question here. Does anybody know of a function in R which allows to estimate ordered probit/logit model with random ...
0
votes
2answers
79 views

Max of set in Isabelle

How can I find the maximum element in a set of numbers (nat) in Isabelle. The max function doesn't work, as it is only defined to take the maximum of two elements. I have an idea of how I could ...
0
votes
2answers
101 views

Launch different ViewControllers on a button click in iOS

My project is in iOS6.I have three UIViewControllers on my iPhone storyboard. On the first UIVC i have a checkbox and a continue button. If checkbox is checked and button is clicked then I have to ...
1
vote
2answers
48 views

javacc add operation causing issues

I'm trying to create a simple parser but I'm having a bit of trouble when trying to take into account the optional sign before the first element: void expr5() : {} { [addop()] ...
0
votes
2answers
70 views

How to remember the non-register user choice?

My website collect user comments about some images. Non registered user can click "Good" button. What is the best way to remeber by system the user choice? One person can click "Good" only one time. ...
0
votes
2answers
103 views

Making a list from random ascii letters and digits

I would like to generate a list from random numbers and letters. I managed to make this: def rand_num(): while True: random_char= random.choice(string.ascii_letters+string.digits) ...
-1
votes
2answers
53 views

Fair algorithm for choosing subjects by students [closed]

This is the simple problem. Let's assume we have n subjects and m students (m<=n). I am looking for quite fair algorithm which allow to choose every student a different subject. I want to avoid ...
-4
votes
3answers
251 views

How would I set up a UIPickerView? [closed]

I am setting up a UIPickerView to have choices like choice a, choice b, choice c and so on. I have tried to interpret the sample code from Apple but that seems very difficult to understand for a ...
0
votes
1answer
82 views

Choices as choice option in choice field Type in symfony2

Maybe is a little confusing question but here is an explanation by the code: is there a way to do something like this? $builder->add( 'doYouWantToEnterData', 'choice', ...
0
votes
1answer
208 views

Sharepoint 2010 add a choice field

I have to add a choice field (dropdown) to a sharepoint list. I'm using the SharePoint API in Visual Studio. Here is me code. I have tried to run this and there are no errors but it doesn't work. ...
0
votes
2answers
951 views

How to add javascript validation to choice field and check for a valid option?

I have a choice field in a SharePoint 2010 List which has its first choice as Please Select. Now I want the functionality that we can validate if a user has selected any option apart from Please ...
-3
votes
3answers
77 views

How to know which list python chooses with random.choice

I'd like to know which list python chooses with random.choice so I can use if statements for different outcomes. thelists = [L1, L2, L3, L4, L5, L6] theplayers = random.choice(thelists) Id like to ...
0
votes
1answer
48 views

Changing the contents of the Jcombobox based on the selection of another JCombobox [closed]

When a user selecs any of the 4 courses, years available must be populated automatically. BSCOE has to have 5 years in year choices; DIT has to have 2 years in year choices; HRS has to have 2 years ...
2
votes
4answers
362 views

Using Google AppEngine Urlfetch instead of urllib2

What is the difference between googles urlfetch over the python lib urllib2 ? When I came upon Google's urlfetch i thought maybe there were security reasons. Perheps google were safer in terms of ...
0
votes
3answers
1k views

Java vs .NET(Visual Studio) vs Mono [closed]

I'm doing research on which IDE/Language I am going to use to develop our next project in. The tool is created to monitor and program some settings to custom devices. Communication via windows is done ...
0
votes
1answer
274 views

Using “choice” parameter passing in Jenkins

Please advice how the "choice" parameter passing to Jenkins using the Choice Parameter plugin works. In my code i have number of non-string variables (enums), and i try to pass them parameter (known ...
0
votes
0answers
227 views

Set Jenkins prompt variables using a scripts output

I have a script: ScriptA.bat or ScriptA.sh I want to call this script from Jenkins interface i.e. using a job. Script needs parameters (where values of that parameter can change dynamically at the ...
1
vote
1answer
232 views

Set a default choice for optionparser when the option is given

I have a python option parsers that parses an optional --list-something option. I also want the --list-something option to have an optional argument (an option) Using the argument default="simple" ...
1
vote
2answers
886 views

Mule choice node expression based on Header properties

how to route a message in mule using the choice node, based on the header properties in a message? my message has two headers: prop1 and prop2. when I try to route using this expression: ...
1
vote
1answer
585 views

Magento. Save visitor store choice in cookies

I need to check if visitor is first time on website and show block with country choice(stores). Then I need to save visitor choice in cookies(I just think that it is right to save it in cookies). ...
0
votes
1answer
57 views

XSD a node with a choice must exist with a specific type of node chosen

So I have the following xsd types <xs:complexType name="nodeType"> <xs:sequence> <xs:choice> <xs:element name="c0" type="c0type"/> ...
0
votes
2answers
1k views

PYTHON - Random Choice

I have built a game and I need to use random.choice: When a user logs in, they needs to go into one of 15 rooms, chosen at random. How does one modify the following code to use random.choice to ...
1
vote
1answer
88 views

How do you set a range of number as an errorlevel in batch?

I have this script in batch and got a range of questions 1 - 12. All my code works, but I just cant seem to find a code to throw into my batch to throw out an error message for invalid ranges selected ...
2
votes
2answers
407 views

Choice pattern in properties file

i have properties file with messages and i want to handle some special cases of plural. Now i use xxx.yyy.plural=test{0,choice,2#y} but it formats 12 as 'testy' also. How can i specify 2 as exact ...
1
vote
1answer
75 views

XSD - Need two separate choice options

I am writing some XSD and I only have a basic understanding of the <choice> tag. I have it working with one section, but not another section that has an attribute. For example, all elements are ...
0
votes
1answer
42 views

FLTK choise widget with editable field

FL_Choise widget allows just select an item present in drop-down. Is there any way to have combo box with editable field, i.e. which allows to specify custom value not present in the list?
2
votes
1answer
221 views

Lightswitch choice list

When we configure a field as a choice list and set up some initial values, where are they stored? I understand we could configure them as a dynamic list by using a separate table. I am trying to ...
1
vote
2answers
33 views

xsd schema choice for legacy unknown values

I'm trying to come up with a schema that allows xml to specify that an element is unknown for legacy reasons rather than just making the element non mandatory. For instance: ...

1 2 3 4