I wanted to export registry in C# .Net project. First of all I noticed that the Microsoft.Win32.Registry doesnt' provide this function.I've searched a web and found VB.NET implementation at http://www.controlled-insan... Unfortunately the code calls a few functions that were not included on the page and I wrote ( or copied from others web sites) them to make the code compilable. Because my particular project is in C# and I ......
I am using IXSSO from ASP.NET to access remote Indexing Services Catalog (See also my posts COM CleanUp when using IXSSO in .Net and Fill Dataset with rows in a specified range http://thespoke.net/blogs/m... . When testing it from workstation I started to receive "Access is denied" exception in CreateRecordset call. According to Hilary Cotter http://groups.google.com.au... ......
I am using WebDav query to search e-mails and public folders from Exchange Server 2003. The code is based on the Visual Basic .NET sample http://msdn.microsoft.com/l... However when I started to test the code with impersonation, I ve got a problem.The scenario was the following I am using client on workstation running IE6 that login to ASP.NET web server using Windows Authentication with impersonation. The server ASP.NET ......
I am using IXSSO to access Index Server similar to described in article “Query Index Server with IXSSO in .NET” on ASP101. (See also my post how to use Fill Dataset with rows in a specified range http://thespoke.net/blogs/m... Recently I found a useful tip to dispose COM objects after the use. I noticed that it is required to check for null before calling ReleaseComObject. So the finally section should be like this finally { // recommended in http://www.eggheadcafe.com/... ......
I am using MetaBuilders.ComboBox[^] and recently found that I am not able to specify SelectedValue in Page_OnLoad event. The html list has “selected“ as expected , but text box is not populated with selected value. It is required to add SelectedValue to the MetaBuilders.WebControls.Co... /// /// Overrides . /// Should be overridden to addition to SelectedIndex /// public override string SelectedValue { get { return base.SelectedValue; } set { base.SelectedValue = value; // this.isLoaded ......