Questions tagged [valueconverter]

Value converters are culture-aware. Both the Convert and ConvertBack methods have a culture parameter that indicates the cultural information.

Value converters are culture-aware. Both the Convert and ConvertBack methods have a culture parameter that indicates the cultural information.

Ref: IValueConverter

216 questions
-2
votes
2 answers

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; System.out.println(diny6h + " + " + diny7h); } Incoming:…
Eveli
  • 498
  • 1
  • 6
  • 27
-3
votes
1 answer

C#, generate a constant Key for an array of object

I would like to save in Cache an object with a constant Key. public TItem Set(string key, TItem value) { return = _memoryCache.Set(key, value); } I get my object with a function like: public TItem Get( …
Cedric Arnould
  • 1,991
  • 4
  • 29
  • 49
-3
votes
1 answer

Currency Converter - Need Assistance

I am having a hard time finding the source of the problem in my currency converter. import javax.swing.*; import java.awt.*; import java.awt.event.*; public class Adam_Markros_Valutaomvandlare extends JFrame implements ActionListener { JPanel…
-4
votes
1 answer

convert timestamp to date in java and display count value

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 date+status=Q information and get the count value. This is…
-5
votes
1 answer

How to Convert an Integer to a Letter?

I wanted to convert an integer to a letter. For example: 1 = A 2 = B 3 = C ... 26 = Z Is there a way I could do this without using an array?
-6
votes
3 answers

Converting user enetered dollars into $100 bill and $1000 bill

I'm doing a school project and i need to know how to Convert user-entered dollars into $100 bill and $1000 bill and dollars remaining. let's say your in the store and you want to pay your items with as high bill as possible so let's say you have to…
Realitiez
  • 489
  • 2
  • 6
  • 12
1 2 3
14
15