Click here to Skip to main content
15,921,990 members

Videos


Page 4 of 56
1 2 3 4 5 6 7 8 9 10


.

()
» »
Updated:
Rating: ()
61. how to bind data in WPF
Best examples is,WPF Autocomplete Textbox Control[^]WPF AutoComplete Folder TextBox[^]Mark as answer if it is helpful
Venkatesh Mookkan Updated: 3 Aug 2011
Rating: ( (No votes))
62. How to access class with auto implemented property?
First of all, you should initialize the property with string.Empty in the class constructor which will solve the null value problem.class AIproperty{ public string CustomerName{ get; set; } public AIproperty() { this.CustomerName = string.Empty; }}Mark it...
Venkatesh Mookkan Updated: 1 Aug 2011
Rating: 5.00/5 ( (1 vote))
63. select query(select sum )
SELECT SUM (num) , name, cod FROM Table1 GROUP BY name, codMark it as answer if it is helpful
Forth.NET » »
Venkatesh Mookkan Updated: 1 Aug 2011
Rating: 4.40/5 ( (2 votes))
64. List view binding working but nothing is displayed
The problem could be from the margin of the BORDER.
Venkatesh Mookkan Updated: 28 Jul 2011
Rating: ( (No votes))
65. Date Timepicker image
Edit its ControlTemplate with the help of Expression Blend. You can change the size of the control there.
Venkatesh Mookkan Updated: 17 Jul 2011
Rating: 5.00/5 ( (1 vote))
66. Binding to a datagrid
You cannot achieve this directly. Binding a collection normally act as rows and not as columns. You should maintain the columns in a separate collection bind to the Columns property of the DataGrid.Mark it as answer if it is helpful.
Silverlight » Silverlight4 »
Venkatesh Mookkan Updated: 17 Jul 2011
Rating: ( (No votes))
67. Is there a 3rd party component which provides a “Microsoft Excel”-like grid
I don't think there is a readily available control for SpreadSheet.Use DataGrid to mimic like SpreadSheet. Xceed is one of the popular DataGrid control.
Venkatesh Mookkan Updated: 17 Jul 2011
Rating: 5.00/5 ( (1 vote))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
68. Pathlistboxes & binding data
I am sure you are taking about WPF/Silverlight. Use DataTemplate for the ListBoxItem. Write your DataTemplate to using the string path as ImageSource for a Image control.It would be better post some code to make us understand the question better. Let me know.Update 1:ImageSource is not...
PathListBox » »
Venkatesh Mookkan Updated: 17 Jul 2011
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
69. how to use the timers?
The way you are trying to implement is wrong.Check the documentation here[^]
Venkatesh Mookkan Updated: 12 Jul 2011
Rating: ( (No votes))
70. problem with datetimetoshort in windows form
Assign the actual value to Nullable DateTime object. Then check HasValue and use it.Example:DateTime? dateTime = [DB VALUE];if (dateTime.HasValue){ // use your logic to show dateTime.ToShortString();}Mark it as answer if it is helpful.
Venkatesh Mookkan Updated: 12 Jul 2011
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
71. 2 same data in field error
I understand your problem.The problem is in the query. As you know that CostCenter, Category, Course Code can have multiple data in table. But the combination of all the three can have only one record.So, your queries should be like,CostCenter:Select distinct [CostCenter] from...
Web Development » ASP.NET »
Venkatesh Mookkan Updated: 12 Jul 2011
Rating: 5.00/5 ( (2 votes))
72. Translate telugu unicode to telugucharacters
Hi Ramakrishna,There is no direct way to convert a English to Telugu (or any other language) directly. But in the ideal world, there are third parties providing translating APIs. Ex: Google Translation provides an wonderful APIs for translating English to other language.Take a look on...
General » »
Venkatesh Mookkan Updated: 12 Jul 2011
Rating: ( (No votes))

Page 4 of 56
1 2 3 4 5 6 7 8 9 10