Click here to Skip to main content
15,917,060 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: SendMessage in C# WPF Pin
dominioYP29-Sep-12 12:08
dominioYP29-Sep-12 12:08 
GeneralRe: SendMessage in C# WPF Pin
Pete O'Hanlon29-Sep-12 20:45
mvePete O'Hanlon29-Sep-12 20:45 
QuestionNew to .net/ previous programming background Pin
goawayxxxx27-Sep-12 8:29
goawayxxxx27-Sep-12 8:29 
AnswerRe: New to .net/ previous programming background Pin
Richard MacCutchan27-Sep-12 9:47
mveRichard MacCutchan27-Sep-12 9:47 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx27-Sep-12 10:00
goawayxxxx27-Sep-12 10:00 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan27-Sep-12 21:16
mveRichard MacCutchan27-Sep-12 21:16 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx28-Sep-12 8:14
goawayxxxx28-Sep-12 8:14 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan28-Sep-12 21:57
mveRichard MacCutchan28-Sep-12 21:57 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx29-Sep-12 7:29
goawayxxxx29-Sep-12 7:29 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan29-Sep-12 7:34
mveRichard MacCutchan29-Sep-12 7:34 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx29-Sep-12 16:46
goawayxxxx29-Sep-12 16:46 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan29-Sep-12 21:38
mveRichard MacCutchan29-Sep-12 21:38 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx30-Sep-12 6:23
goawayxxxx30-Sep-12 6:23 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan30-Sep-12 6:59
mveRichard MacCutchan30-Sep-12 6:59 
GeneralRe: New to .net/ previous programming background Pin
goawayxxxx30-Sep-12 7:51
goawayxxxx30-Sep-12 7:51 
GeneralRe: New to .net/ previous programming background Pin
Richard MacCutchan30-Sep-12 21:57
mveRichard MacCutchan30-Sep-12 21:57 
AnswerRe: New to .net/ previous programming background Pin
Pete O'Hanlon30-Sep-12 7:48
mvePete O'Hanlon30-Sep-12 7:48 
AnswerRe: New to .net/ previous programming background Pin
Blikkies2-Oct-12 5:04
professionalBlikkies2-Oct-12 5:04 
GeneralRe: New to .net/ previous programming background Pin
Alisaunder3-Oct-12 17:10
Alisaunder3-Oct-12 17:10 
AnswerRe: New to .net/ previous programming background Pin
_Maxxx_7-Oct-12 17:17
professional_Maxxx_7-Oct-12 17:17 
QuestionJesús Alvarez Manrique Pin
Member 901299827-Sep-12 6:47
Member 901299827-Sep-12 6:47 
Tengo Un ComboBox en WPF Que relleno MEDIANTE la ejecucion de las Naciones Unidas Procedure almacenado de SQL Server, con los NOMBRES de los Autores de determinados artículos de prensa. Hasta Ahí ​​Perfectamente. El Problema Viene when despues de select sin autor (Apellidos, Nombre) Solicitar y Que me descomponga la Cadena MEDIANTE la división function (',') me da error al no encontrar El Segundo Elemento del array. La explicación está en Que intenta descomponer el Siguiente Resultado de la selección española en el ComboBox: ComboBoxWPF_LINQ_01.usp_ListadoCompletoAutoresResult, siendo ComboBoxWPF_LINQ_01 el Nombre de la Solución y usp_ListadoCompletoAutores el Procedure almacenado Que ejecuto párrafo llenar el ComboBox. Que el Código utilizo es el Siguiente: MostrarAutor private void () {string oAutor, oApellidos , oNombre; string [] CadenaSeparada; DataClasses1DataContext db = new DataClasses1DataContext (); . cboAutores.ItemSource db.usp_ListadoCompletoAutores = () ToList (); oAutor = cboAutotes.Text.ToString; CadenaSeparada = oAutor.Split (','); textBox1 . = Texto CadenaSeparada [0]; textBox2.Text CadenaSeparada = [1]; } Tambien le he probado con oAutor cboAutores.SelectedItem.ToString = () y tampoco me Funciona Las cadenas las Necesito párr Buscar en la Base de Datos los Artículos Escritos Cada autor de, Que Figuren en Ella. El ComboBox sí Llena Perfectamente con cadenas con la Siguiente Estructura Apellido1 Apellido2, Nombre Apellido1 Apellido2, Nombre Apellido1 Apellido2, Nombre .................. .................... (Apellido1 Apellido2, hijo Un solo campo) Selecciono sin artículo, y en el Texto del combo aparece la Cadena Seleccionada con La Misma Estructura, osea, Apellido1 Apellido2, Nombre, y es here Donde Comienzan los Problemas, Pues when Hago oAutor = cboAutotes.Text.ToString; ó oAutor = cboAutotes; me devuelve "ComboBoxWPF_LINQ_01.usp_ListadoCompletoAutoresResult", en Lugar De devolverme la cadena "Apellido1 Apellido2, Nombre", Nada Parecido con la Realidad.
AnswerRe: Jesús Alvarez Manrique Pin
Yayozama27-Sep-12 7:37
Yayozama27-Sep-12 7:37 
GeneralRe: Jesús Alvarez Manrique Pin
Member 901299827-Sep-12 7:57
Member 901299827-Sep-12 7:57 
GeneralRe: Jesús Alvarez Manrique Pin
Emmanuel Medina27-Sep-12 11:33
professionalEmmanuel Medina27-Sep-12 11:33 
GeneralRe: Jesús Alvarez Manrique Pin
Member 901299827-Sep-12 7:59
Member 901299827-Sep-12 7:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.