Questions tagged [getvalue]

191 questions
1
vote
3 answers

Delphi: How to get the address of a static record

type TMyRecord = record private class constructor create; public class var MyField1: string; class var MyField2: integer; class var MyField3: extended; …
Rob
  • 155
  • 1
  • 12
1
vote
0 answers

get color of each pixel from sl::zed::Mat

i have a variable sl::zed::Mat and i want to get color of each pixel from that Mat. i was tried using getValue(x,y) to get 3 channels, but i can't get reach the value over 50. here's my codes: sl::zed::Mat color = data->_color; sl::uchar3 bgrPixel…
1
vote
4 answers

How to get text value from Listview Edit Text feild.....?

How to get the values from the edit text . Hello everyone im facing a problem with android task in which there so many edit text available in the edit text . i need to get the values from 1 to 4 all edit texts ..? Below is my get view method of…
sunny
  • 179
  • 2
  • 14
1
vote
1 answer

Comparing values from two arrays runs but fails to evaluate

I've spent two full working days searching the forums and troubleshooting this in general, but as I'm relatively new to java, this could yet be a case where a newbie is violating the fundamentals. To the extent that that is true, please…
Bryton Beesley
  • 167
  • 2
  • 12
1
vote
2 answers

How to read registry value correctly in C#

I have created a key of type string and named it mykey in registry at HKEY_USERS\.DEFAULT with the value set to 1234. I have a windows form application with a button on it. I want to see the value of mykey in a MessageBox whenever the button is…
eternal
  • 168
  • 12
1
vote
1 answer

How to get value of the NumberPicker instance from onValueChange when The NumberPicker not scrolling only(pressing plus or minus buttons) in Android

I have a NumberPicker instance and it works as expected but I need to get value form it when scrolling stops Or when the user only press increments / decrements Button is pressed. the value that i should get it are displayed in the text view. i…
1
vote
1 answer

PHP get array value and save it to be displayed in another page

I have a page displaying data from an array. When the user click on one of the picture displayed, I would need to save the value $row["Rif"] as I'd need to display the item details in another page. I was looking around but it seems that Jquery, Ajax…
ChrisA
  • 81
  • 11
1
vote
2 answers

Google script 'GetValue' doesn't read values filled with 'Query' in spreadsheet

Some sheets in my spreadsheet have data filled by the Query formula. In a sheet I have data filled by a Query of another sheet filled by a Query itself. This double Query makes that I can't read data usign GetValues() from a script. When I try the…
soneangel
  • 621
  • 3
  • 10
  • 22
0
votes
0 answers

Script not getting the actual value of a cell with App Script in Google Sheets

I'm building a custom searching function for a Spreadsheet. The spreadsheet has a sheet with a 1000+ rows, with data from different clients. It is used by people with very little knowledge of Google Sheets, so there's another sheet that is used to…
0
votes
0 answers

In sheets apps script, unable to fetch correct cell contents in filtered view

I have a very simple sheet – 10 columns by 80 rows, no hidden rows/columns. I have a simple filter over the entire spreadsheet allowing me to sort on any column. Once sorted, the row # shown in my filtered view is of course not the same as the…
0
votes
1 answer

Use of Enum.GetValues give me a compilation error

I have this code to list the values of an enum: Type myType1 = Type.GetType("QBFC16Lib.ENTxnType"); var enumList = Enum.GetValues(myType1) .Cast() .Select(d => (d, (int)d)) .ToList(); I receive a compilation error in…
CBal
  • 21
  • 5
0
votes
1 answer

How to get innerText of child div

Child 1 Child 2 $('#result').on('click', 'span', function() { var search = $(this).children(".info").val(); I want to access the text written inside the…
0
votes
0 answers

Appscript getValue() returns 0 and not the cell value

I am running a function in App Script "getValue" only gives me 0.0 from a cell that has a conditional formula in…
0
votes
0 answers

getValue not working on SAMLUserDetailsServiceImpl

I'm trying to implement SAML SSO on my project but there's a weird problem, the method getValue() is not working, it just says "Cannot resolve method 'getValue()'". Right on credential.getNameID().getValue() the getValue gets red and it shows that…
0
votes
1 answer

Retrieving the Nth value of a given column in a table

I have a table containing the following three columns: a b c ----------------- ----------------- ----------------- 0.133979108417407 1.754130915272981 1.42329662386328 0.668288746615872…
FFF
  • 147
  • 1
  • 8