Top "Converter" questions

Converters can change data from one type to another, translate data based on cultural information, or modify other aspects of presentation.

Can a mathematical operator be applied to the Binding path?

Can I have the following (the ActualWidth divided by 2)? <StackPanel Name="SP2" Width="{Binding ElementName=SP1, Path=ActualWidth/2}"> …

wpf xaml silverlight binding converter
How to convert wav to flac from python?

I've just started using Python and am using the PyAudio and Wave modules to take sound from my microphone and …

python audio converter wav flac
Converter in JSF (PrimeFaces) with SelectOneMenu: Validation Error

I'm making a project in JSF with PrimeFaces and I have a problem with <p:SelectOneMenu>, specifically with …

validation jsf converter selectonemenu
JAVA: SVG to JPG converter

is there any libraries to convert SVG to JPG ? else than BATIK ? i used BATIK but i found some problems …

java svg png converter batik
C++ LPCTSTR to char*

I am using visual studio 2010 MFC to build a C++ program. My program calls a DLL that is not apart …

c++ mfc char converter lpcstr
WPF ColorAnimation for a Brush property

I wonder if someone can help me - I've got a label which I need to be able to cross-fade …

wpf animation converter coloranimation
infix to postfix converter

I have been working on this infix to postfix/polis notation converter. Although, I do not feel the solution is …

c# converter postfix-notation
JSF converter resource bundle messages

Does anyone know where I can get a list of the converters used by JSF so I can set a …

jsf message converter resourcebundle
How to inject @EJB, @PersistenceContext, @Inject, @Autowired, etc in @FacesConverter?

How can I inject a dependency like @EJB, @PersistenceContext, @Inject, @AutoWired, etc in a @FacesConverter? In my specific case I …

jsf dependency-injection ejb converter
Convert.ChangeType How to convert from String to Enum

public static T Convert<T>(String value) { return (T)Convert.ChangeType(value, typeof(T)); } public enum Category { Empty, …

c# enums converter