Click here to Skip to main content
15,889,472 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: error : System.ServiceModel.CommunicationException was unhandled by user code Message="The remote server returned an error: NotFound." Pin
Arun Jacob9-Sep-09 18:47
Arun Jacob9-Sep-09 18:47 
GeneralRe: error : System.ServiceModel.CommunicationException was unhandled by user code Message="The remote server returned an error: NotFound." Pin
gantww10-Sep-09 4:43
gantww10-Sep-09 4:43 
GeneralRe: error : System.ServiceModel.CommunicationException was unhandled by user code Message="The remote server returned an error: NotFound." Pin
Arun Jacob10-Sep-09 18:00
Arun Jacob10-Sep-09 18:00 
GeneralRe: error : System.ServiceModel.CommunicationException was unhandled by user code Message="The remote server returned an error: NotFound." Pin
samiran bhuin24-Mar-11 23:27
samiran bhuin24-Mar-11 23:27 
QuestionRightToLeft TabControl ? Pin
Mohammad Dayyan9-Sep-09 1:20
Mohammad Dayyan9-Sep-09 1:20 
QuestionWCF service problem in silverlight application Pin
Nekkantidivya8-Sep-09 22:20
Nekkantidivya8-Sep-09 22:20 
AnswerRe: WCF service problem in silverlight application Pin
Arun Jacob8-Sep-09 22:30
Arun Jacob8-Sep-09 22:30 
QuestionWPF ToolKit Datagrid -- Urgent Pin
avi_dadi20028-Sep-09 21:35
avi_dadi20028-Sep-09 21:35 
Hi Everybody,
      I'm using WPFToolkit march 2009.When i bind the data to the grid dynamically.I'm getting one extra column(Empty) last , to avoid that i wrote 4 lines of code as follws,
foreach (DataGridColumn column in dgRecordSearch.Columns)
{
   if (column.Equals(dgRecordSearch.Columns.Last()))
   {
      column.Width = new DataGridLength(1.0, DataGridLengthUnitType.Star);
   }
   else
   {
      column.Width = new DataGridLength(1.0, DataGridLengthUnitType.Auto);
   }
}

But now first tome after button click I'm getting one column at first "#FF0054E3" if i click second time the same button everything is fine. only first time i'm getting this column. In my button click event i wrote the the code to bind the grid.
Sorry i forgot one thing: this problem with larrge data only , if only 2 to 20 records in my grid everything is coming fine.If more data exists this prob is coming.

Thanks in advance.

Avinash
AnswerRe: WPF ToolKit Datagrid -- Urgent Pin
Christian Graus9-Sep-09 10:23
protectorChristian Graus9-Sep-09 10:23 
QuestionImplementing stop functionality for downloading data from db in WPF app in MVP Pin
Krishna Aditya8-Sep-09 20:52
Krishna Aditya8-Sep-09 20:52 
AnswerRe: Implementing stop functionality for downloading data from db in WPF app in MVP Pin
Christian Graus9-Sep-09 10:26
protectorChristian Graus9-Sep-09 10:26 
GeneralRe: Implementing stop functionality for downloading data from db in WPF app in MVP Pin
Krishna Aditya9-Sep-09 21:27
Krishna Aditya9-Sep-09 21:27 
GeneralRe: Implementing stop functionality for downloading data from db in WPF app in MVP Pin
Christian Graus10-Sep-09 14:30
protectorChristian Graus10-Sep-09 14:30 
Questionhow to access the layout control from view to viewmodel Pin
anandmca8-Sep-09 20:33
anandmca8-Sep-09 20:33 
AnswerRe: how to access the layout control from view to viewmodel Pin
Pete O'Hanlon8-Sep-09 21:43
mvePete O'Hanlon8-Sep-09 21:43 
Question3rd party control for wpf graphic editing Pin
xkrja7-Sep-09 23:20
xkrja7-Sep-09 23:20 
AnswerRe: 3rd party control for wpf graphic editing Pin
Richard MacCutchan8-Sep-09 1:26
mveRichard MacCutchan8-Sep-09 1:26 
GeneralRe: 3rd party control for wpf graphic editing Pin
xkrja8-Sep-09 4:04
xkrja8-Sep-09 4:04 
GeneralRe: 3rd party control for wpf graphic editing Pin
Richard MacCutchan8-Sep-09 4:48
mveRichard MacCutchan8-Sep-09 4:48 
QuestionHow to add text to the GridView in wpf? Pin
Krishna Aditya7-Sep-09 20:49
Krishna Aditya7-Sep-09 20:49 
AnswerRe: How to add text to the GridView in wpf? Pin
ABitSmart7-Sep-09 21:11
ABitSmart7-Sep-09 21:11 
GeneralRe: How to add text to the GridView in wpf? Pin
Krishna Aditya7-Sep-09 21:17
Krishna Aditya7-Sep-09 21:17 
GeneralRe: How to add text to the GridView in wpf? Pin
ABitSmart7-Sep-09 21:25
ABitSmart7-Sep-09 21:25 
GeneralRe: How to add text to the GridView in wpf? Pin
Krishna Aditya7-Sep-09 21:36
Krishna Aditya7-Sep-09 21:36 
GeneralRe: How to add text to the GridView in wpf? Pin
ABitSmart7-Sep-09 21:52
ABitSmart7-Sep-09 21:52 

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.