Search Results

0
votes
0answers
40 views

Programmatic word completion dictionary in windows mobile

I would like to be able to specify what shows up in in the windows mobile word completion programmatically. I have looked around, and found some links on how to make the word completion ma …
3
votes

ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008

Is the control that you are trying to reference inside of the repeater? If so then you need to look them up using the FindControl method. For example for: <asp:Re …
0
votes

Using a user control in a base page class

Assuming that you will be running in an environment that supports reflection you could use these methods. private void SetValue(Control control, string propertyName, object value) { …