The valueconverter tag has no wiki summary.
-1
votes
1answer
118 views
Incompatible types: 'Byte' and 'String'
I get the compiler error Incompatible types: 'Byte' and 'String' on the following function:
IntToStr(DiskSize('F:\'))
I want to convert the disk size to a string. How to solve this problem?
0
votes
1answer
26 views
how to update the property of the view model when I use a value converter?
I have a textBox and I use a value converter to set the text property, because this value depends on the selección of a datagrid. So I use this code:
<TextBox Height="23" ...
2
votes
1answer
74 views
Converting a float in chars to float (PYTHON)
I have a program in python in which I want to receive a frame with some values. This values are sent by a xbee.
Xbee send a float splitted in 4 bytes by a union struct, something like this:
typedef ...
0
votes
2answers
79 views
Multiply value selected in combobox by a number in label
I am trying to work out how to multiply a selected value in a ComboBox by a string value stored in a label. I have tried converting both values to ints but this error keeps appearing:
Unable to cast ...
1
vote
1answer
27 views
Make use of ConverterParameter vs. using many converters
I have 2 different ProgressBars with 2 different custom styles. In each of them, Color of the ProgressBar is Calculated based on Maximum and Value (with 2 different formulas).
I see that the type of ...
6
votes
5answers
149 views
Double to string with mandatory decimal point
This is probably dumb but it's giving me a hard time. I need to convert/format a double to string with a mandatory decimal point.
1 => 1.0
0.2423423 => 0.2423423
0.1 => 0.1
...
0
votes
3answers
96 views
Convert decimal value to top 10
I recived some great help earlier today but it was more difficult when I should implement it in my query than I thought. My real query includes several left joins.
I want to add two columns, ...
1
vote
1answer
42 views
Convert Values to top 10 scale
Here is the problem. I have four columns that I want to present in a select query.
But, I want the RSV column to have a 10-1 scale instead of its + and - values.
The greatest number +8,6 should get ...
2
votes
2answers
103 views
Converting a base 31 value to BigInt in SQL Server
In our DB we use a primary key for everything that is a combination of the digits 0 through 9 and all the letters in the alphabet that are not vows. the letter Y is included.
I created this table to ...
0
votes
0answers
42 views
Binding with no effect (obvious Microsoft Visual C# bug?)
I wrote a converter which I wanted to use with my ribbon button:
public class ReplaceImageConverter : IValueConverter
{
public object Convert(object o, Type type, object parameter, ...
0
votes
0answers
10 views
convert float value as it is in time format in php
I m very beginner in php, please help me to float value to time.
I have float value 10.5684
i want to convert above float value same in time format.
output should be 10:56 (hour:minutes)
-1
votes
2answers
105 views
Converting from Int to Hex doesnt work in Java
int diny6h = Integer.parseInt(Integer.valueOf(diny6).toString(), 10);
int diny7h = Integer.parseInt(Integer.valueOf(diny7).toString(), 10);
diny6h=diny6h-32;
diny7h=diny7h-32;
...
2
votes
2answers
61 views
having trouble converting from String to byte[]
public static Runnable reader() throws IOException {
Log.e("Communication", "reader");
din = new DataInputStream(sock.getInputStream());
brdr = new BufferedReader(new ...
0
votes
1answer
113 views
convert byte array to uint numeric value
Let's say I have array of bytes
byte[] byteArr = new byte[] { 1, 2, 3, 4, 5 };
I want to convert this array to get regular numeric variable of uint, so result will be
uint result = 12345;
So ...
1
vote
1answer
352 views
How To Use ValueConverter as StaticResource in Windows Phone 8
Below is my App.xaml
<Application
x:Class="SpinrWindowsMobile.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
0
votes
3answers
142 views
WPF MVVM - Binding only working for the initial value
I am working on a WPF application based on the MVVM pattern.
I have a RichTextBox, like so:
<RichTextBox Name="HtmlRichTextBox">
<FlowDocument>
<Paragraph>
...
0
votes
1answer
48 views
Linq, how get properly string with convert
I have got problem with getting string from the file via linq.
My file is:
LANG_FORM="nnd documents acceptance"
%>
Response.Write "<SCRIPT LANGUAGE=javascript>alert('" & ...
0
votes
1answer
139 views
How to convert NSMutableArray to CLLocationCoordinate2D
I have NSMutableArray:
userCoordinates = [[d objectForKey:@"geo"] objectForKey:@"coordinates"];
NSLog(@"%@",userCoordinates);
NSLog shows:
(
"19.365367",
"-99.159887"
)
...
0
votes
2answers
33 views
Define and calculate Apples definition of the unit point
http://developer.apple.com/library/ios/documentation/userexperience/conceptual/mobilehig/UEBestPractices/UEBestPractices.html#//apple_ref/doc/uid/TP40006556-CH20-SW20
Apple writes in the user ...
2
votes
3answers
63 views
Scaling between two number ranges
I remember using an equation to do this at some point – how do you do this in Javascript?
Plugin two number ranges:
rangeX = 1 (through) 10;
rangeY = 300.77 (through) 559.22;
Input a value in the ...
1
vote
2answers
2k views
How to use ResourceDictionary as StaticResource in Windows Phone 8
I have a Windows Phone 7 app which I'm trying to create a Windows Phone 8 version of it.
In the app I have a ResourceDictionary defined in a XAML file as:
<ResourceDictionary
...
0
votes
2answers
71 views
how to get all numbers from a string and create a total amount using php
i want to get the total amount of hours that is outputted from our database, but the problem is the values are on string format
ex of the values:
9H:20M
3H:13M
3H:50M
6H:30M
TOTAL:22H:53M
i want ...
0
votes
1answer
167 views
Silverlight implement value converter to comboBox
I have the following scenario
1- A combobox in xaml
<ComboBox
x:Name="PublishableCbo" Width="150" IsEnabled="True" HorizontalAlignment="Left" Height="20"
SelectedValue="{Binding Path=Published, ...
3
votes
4answers
979 views
Convert hex str to decimal value in delphi
I've got a problem to convert a string representation of an hex value in integer value with Delphi.
for example:
$FC75B6A9D025CB16 give me 802829546 when i use the function:
...
0
votes
1answer
203 views
Polyline bound to ObservableList<Point> doesn't refresh
I have a class (let's call it externalClass) with a ObservableCollection<Point> channel1 inside. (the class itself does NOT implements INotify)
In the MainWindow I have a polyline binded to ...
0
votes
1answer
124 views
Android Distance Between
I am using MonoDevelop for Android and have a distance between two points. What is the value returned measured in?
Here is the code that I use:
Location.DistanceBetween(startLat, startLng, ...
0
votes
1answer
101 views
xsl choose in concat
I have the following data:
XML
<team>
<rectx>30</rectx>
<diadata>
<bestAnd>-350</bestAnd>
</diadata>
<diadata>
...
0
votes
3answers
104 views
Bit length of text with JavaScript
How to count bits of the string in JavaScript?
For example how many bits long is the string 0000xfe-kemZlF4IlEgljDF_4df:1102pwrq7?
0
votes
2answers
143 views
Getting runtime error, C# Converting Array to Int
for some reason this will compile but it comes out with an error at the end and I can't figure out why. The first part of the code is to display a table from a text file which works correctly, the ...
7
votes
3answers
695 views
In R, how to convert binary string to binary or decimal value
In R language, is there any function to convert binary string into binary or decimal value?
If I have a binary string 000101, what should I do to convert it into 5?
0
votes
1answer
157 views
Silverlight - Bound element is passing null to converter
I have a Silverlight page with a Telerik RadComboBox on it, and I have another element which I need to show/hide based on which item is selected in the ComboBox. What I want to do is bind the ...
1
vote
1answer
1k views
Converting Milliseconds to Days, hours, minutes and seconds
i have a bigint field in Microsoft SQL Server 2008R2 filled with ticks (A single tick represents one hundred nanoseconds or one ten-millionth of a second. There are 10,000 ticks in a millisecond.)
...
1
vote
1answer
59 views
Need Value Converter to reference databound object instance
So I have an object with multiple attributes that I have bound to my GUI using WPF. Most of the GUI binds directly to properties in my object instance. Some of the GUI elements need to be processed ...
0
votes
3answers
137 views
How to convert YYYDD to YYYY-MM_DD format using java
I am getting date in the format of YYYDD, and I want to convert it in YYYY-MM-DD, I tried several ways but no luck, any one has solution please suggest.
after searching on Google I got the below ...
2
votes
1answer
92 views
ValueConverter behaves like singleton
I have a ValueConverter which needs an external stateful module to work. So I've inherited it from Freezable and declare dependency propery.
public class Decorator : Freezable, IValueConverter
{
...
-4
votes
1answer
274 views
convert timestamp to date in java and display count value [duplicate]
Possible Duplicate:
converting timestamp to date in java
This is my database:
Date status
1343993311 Q
1343892452 C
1343892477 P
Here I have to check the query current ...
4
votes
6answers
1k views
converting timestamp to date in java
This is my database:
Here I have to check the query current date+status=Q information and get the count value.
This is my code:
public class TodayQ {
public int data() {
int count=0;
...
1
vote
1answer
107 views
Manipulating Value Converters inside DataTemplate
I have a set of data templates I am using for my custom control. It works well, but I want to be able to bind it to data and have values scale based on the min / max of the set. I have created the ...
1
vote
2answers
319 views
Converting float to Decimal, incorrectly losing precision
I have the following code sample:
float val = 16777216.0F;
var badResult = Convert.ToDecimal(val);
//badResult has value 16777220
Why is this precision lost? the value ...
0
votes
0answers
62 views
Hide/show control based on ObservableCollection<T> having values
I'm trying to provide a better user experience by showing/hiding a Grid on a User Control if the collection bound to that grid does not contain any elements, or is null. I've built an implementation ...
0
votes
2answers
1k views
Binding expression with StringFormat and uppercase Converter?
I have a TextBlock whose text is bound to live ticker (via System.Date.Now) and that binding contains a ValueConverter that is supposed to convert the string to uppercase. However, the string does not ...
0
votes
2answers
335 views
DataGrid refresh issue
I have a Silverlight 4 DataGrid which has its ItemsSource bound to an ObservableCollection. When i modify an element of my ObservableCollection the modified element is correctly displayed inside my ...
0
votes
1answer
325 views
valueconverter's unknown in resource dictionarys
i'm using a listbox style twice in my project so i want to use it in a resource dictionary. This listbox style has two value converter's in it, so i instantiated the converters in the same resource ...
0
votes
1answer
113 views
Converter/styles selector without binding?
Is it possible to use a converter/style selector without having to use databinding?
I want the style of my object to change if a certain value is reached.
Here is what i have
...
4
votes
3answers
469 views
Is the 'Self' construct useful in Silverlight/MVVM?
I've inherited a Silverlight project with dubious code quality overall, and there is one construct that I'm not sure whether I should touch it:
public SomeClass Self
{
get
{
return ...
0
votes
2answers
369 views
Access Datacontext And A Property In Code Behind At The Same Time
I am using MVVM/WPF and trying to do something seemingly simple, but cant find a clean solution.
I want to do the following:
When a property changes in the model (WPF Textbox text would be changed ...
6
votes
1answer
591 views
How do you apply a ValueConverter to a convention-based Caliburn.Micro binding?
How do you apply a ValueConverter to a convention-based Caliburn.Micro binding? or do you need to use the {Binding} syntax?
I know I could do this
<TextBlock
Text="{Binding Foo, ...
10
votes
2answers
935 views
0
votes
2answers
142 views
Value Converters - Access Convert() variables in ConvertBack() method?
I have a converter which has a couple of input variables (an object and a TextBox) and then returns the TextBox.Text String property.
The problem I'm running into is in the ConvertBack() Method of my ...
1
vote
4answers
2k views
Using resources as convertion results in a bind converter
When I try to bind a valueconverter from a defined enum Status to brush, I get an error in my XAML designer:
'OKStatus' resource not found.
The application works fine runtime, but I'm not able to ...

