Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
1k views

How do You Create a Read-Only Dependency Property?

How do you create a read-only dependancy property? What are the best-practices for doing so? Specifically, what's stumping me the most is the fact that there's no implementation of ...
5
votes
3answers
1k views

Rtti accessing fields and properties in complex data structures

As already discussed in Rtti data manipulation and consistency in Delphi 2010 a consistency between the original data and rtti values can be reached by accessing members by using a pair of TRttiField ...
4
votes
2answers
12k views

PropertyInfo.GetValue() “Object does not match target type.”

I'm digging into Reflection for the first time and I'm truely stuck. I've googled everything I can think of. I'm 90% where I wanna be now. I'm trying to return the value of a Property in a custom ...
3
votes
3answers
184 views

Alternatives to PropertyInfo.GetValue() for Mono?

I have a method that has the following signature: private object GetNestedObject<y>(y objToAccess, string nestedObjectName) I'm using Reflection to get the nestedObject from the objToAccess ...
2
votes
2answers
223 views

java: Access a JProgressBar in an AbstractTableModel

I'm working with the following code that contains a JProgressBar inside of an AbstractTableModel. The JProgressBar progress value is updated in "case 5: " of the getValueAt() function by returning a ...
2
votes
2answers
99 views

get certain string inside string PHP

Let say I have this string: $myString = "I love to [answer]PROGRAM[/answer]"; How can I parse this string to get the string "PROGRAM" in PHP? Thanks, I really appreciate the help.
1
vote
3answers
66 views

Get value from dictionary key while for each and its element is string

how can I get value from key while the element in for each is just a string? Here is my code: public List<int[]> FindAllLetters(List<string> lettersOnBoard, Dictionary<string, int> ...
1
vote
2answers
71 views

select table record in database by multi id by php

i have a value that name is brands and like this : $brands = "1,2,3,4,5,"; i can convert this value to this : $brands = "1,2,3,4,5"; i want write source that select * from table where id = each ...
1
vote
1answer
346 views

Parameter count Exception: GetValue of System.String

I´m working on a class which generates a property tree, but I have a problem with some arrays and primitive data types which contain arrays. In example string has properties Chars and Length How can ...
1
vote
1answer
260 views

How to reference a field by reflection

Sorry for the title, it's not explicit. Further to my precedent question, I want to subscribe a method to an event object retrieved dynamically (via reflection). The object in question is a field of ...
1
vote
2answers
1k views

Reading a property value with a lambda expression

I'm writing a file generic block for my application and started with using Lambda expressions for managing my rule sets for block generation to avoid the pitfalls of magic strings, configuration hell ...
0
votes
2answers
45 views

rich editor - get value

I am trying to get the value of dojo editor and append it to the hidden input. This code: onClick="dojo.byId('editorContent').value = this.getValue() works correctly if i put it in the div of the ...
0
votes
0answers
11 views

How to combine EditArea (cdolivet) and RunThis api (ideone)?

I'm having difficulties in getting the content of the textarea to be PASSED to RunThis api so I can compile code which s edited in the textarea. I got this code editAreaLoader.getValue(editor_id) ...
0
votes
4answers
50 views

How to get value from form input type=radio?

<input type="radio" value="0" name="type" checked="yes" /> <label>Type 0</label> <input type="radio" value="1" name="type" /> <label>Type 1</label> and js: var ...
0
votes
1answer
73 views

ExtJS4 combobox.getValue() fails with “Cannot call method 'getValue' of undefined”

Here is a working example that describes my issue, but does NOT reproduce it. http://jsfiddle.net/Gx28M/50/ Of course I created the example to simplify my issue, and either resolve it while doing ...
0
votes
2answers
56 views

On click button, data from panel two field should be copied to panel one field?

I am a beginner in python language and I am trying to make a simple gui for my program using wxpython. My gui consists of a frame and two tabs (using wxPanel) on it (tab 1 and tab 2). I placed txtctrl ...
0
votes
0answers
147 views

Python Qt get values QLineEdit QPushButton

I want to get values of a QLineEdit and QPushButton.setMenu(QtGui.QMenu())-Actions and save them into variables after clicking on a QPushButton. I tried too google for it a lot only thing I was able ...
0
votes
2answers
71 views

Get value in flex ComboBox

I have a one comboBox that I fill as: for (var key:String in values) { conns.addItem(key); } After that I sorted my ComboBox as: private function sortConnection():void { var ...
0
votes
2answers
100 views

Basic Python StringIO — Why is GetValue() Returning Nothing?

I'm having basic python issues.. In the following example no errors are returned but displaying the contents of all variables using pprint shows that contents is = '' -- why would this possibly be the ...
0
votes
0answers
347 views

Getting value from Sencha text input created in HTML

I can create a Sencha text input in HTML like this: (copied from their Kitchen Sink) <div id="ext-comp-1093" class="x-field x-field-text x-field-required x-label-align-left"> <div ...
0
votes
0answers
40 views

C# NETCF is there a way to read REG_MUI_SZ ValueKind?

Hello again this is my second question on this board. I intend to do a very simple settings exporter for Windows Mobile. I have handled most of the problems, but I have one which I don't get right ...
0
votes
0answers
146 views

How to find the full reflected class path for a value that exists in a populated class using C#

Thanks in advance for any answers here as I'm starting to lose the will to code! I have a large class full of nested members, properties etc (NHAPI if you're interested). This class is populated with ...
0
votes
1answer
162 views

NSMutableArray init with getValue from Operation result

i want to get back a return value (NSMutableArray) after an operation... [queue addOperation:operation]; [operation waitUntilFinished]; [[operation result] ...
0
votes
5answers
273 views

Getting value from constructor in another class

I am sure this is a very easy question for many, but I am struggling with it. I am trying to get a value from the following constructor and place it in a vector. Each time I add the object to the ...
0
votes
1answer
206 views

DOJO widgets with same data source display an error on get('value') when created programmatically

When creating two (or more) widgets programmatically that have the same source, for instance: two dijit.form.Select objects, they present a curious bug. Code: dojo.xhrPost({ ...
0
votes
4answers
161 views

how to get the value 'dynamically' from an associative array in javascript?

i am trying to get a value from a key stored on a string variable proyNombre, but whenever i call it via the common method "myAssociativeArray.MyKey", it gets the variable 'proyNombre' as the key, ...
0
votes
1answer
310 views

Reflection PropertyInfo GetValue call errors out for Collection<> type property

I have a propertyInfo object and I try to do a GetValue using it. object source = mysourceObject //This object has a property "Prop1" of type Collection<>. var propInfo = ...
-1
votes
0answers
33 views

Read string key from db [closed]

Hello i some question about SQL, i show some easy example, but i don't know how to do this. i doesn't nee to use "_id" in my SQL, i need only key (as text) and value (as text) and i need to read value ...
-4
votes
2answers
38 views

How can I read the Get value from url parameter [closed]

How can I read value in get parameter http://www.localhost/type=Cars,-Vans-&-SUVs When I am trying to read type value from get URL I am not able to read from &. Please suggest how to read ...