User Chris Tybur - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T06:27:33Zhttp://stackoverflow.com/feeds/user/741http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1674384/access-denied-when-loading-dependancy-dll-net/1674422#16744221Answer by Chris Tybur for Access denied when loading dependancy .dll .NETChris Tybur2009-11-04T15:12:36Z2009-11-04T15:12:36Z<p>Does the DLL access the registry or some other system folder that the lower privilege user isn't allowed to access? What is it trying to do when the error occurs?</p>
<p>You could also check whether the domain has some kind of group policy that's interfering with what the DLL is trying to do.</p>
http://stackoverflow.com/questions/1668135/how-to-prevent-vsewss-1-3-from-adding-assemblies-to-the-solution-manifest0How to prevent VSeWSS 1.3 from adding assemblies to the solution manifestChris Tybur2009-11-03T15:41:31Z2009-11-03T18:06:58Z
<p>I recently upgraded my SharePoint development machine to VSeWSS 1.3 and have noticed a behavior that I didn't think existed before. I have two custom web parts that use several common assemblies, and both will live in the same site. I'm trying to create a third 'common' web part that copies these files to the Bin folder and adds safe control entries to web.config so I can remove one of the web part solutions, if needed, without crippling the other one.</p>
<p>With the prior version of VSeWSS I thought it only included assemblies in the manifest if you included them in the given Visual Studio project. I've removed the common assemblies from the two web part projects, but entries for them still end up in their solution manifests. Obviously the extensions are looking at the references for the web part and going by that, even if the file are in another directory alltogether.</p>
<p>Is there any way to tell the extensions to not add assembly entries to the manifest even if they are referenced in the project? Or is there a better way to separate the common code from the web parts that use it?</p>
http://stackoverflow.com/questions/1633361/using-aspcompat-in-a-sharepoint-web-part-page1Using AspCompat in a SharePoint web part pageChris Tybur2009-10-27T20:09:27Z2009-10-27T20:27:20Z
<p>I'm in the process of creating a SharePoint web part that needs to use a single-threaded COM component. I've discovered that in order to make this work well, I need to add the AspCompat="true" directive to the page where the web part will live. The problem is I can't seem to set up such a page.</p>
<p>I created a new blank web part page via the regular browser interface, then added AspCompat to it using SharePoint Designer. But that causes it to become un-ghosted and the SafeMode parser says that directive isn't allowed. I then modified the blank web part page template to include the directive and created a new page, but got the same error.</p>
<p>I basically need to set up a page within my SharePoint site that is stored in the file system, has that directive, and can contain my web part. How would I go about creating such a page?</p>
http://stackoverflow.com/questions/1608757/open-close-connection-to-unc-without-credentials/1619691#16196911Answer by Chris Tybur for Open/close connection to UNC without credentialsChris Tybur2009-10-25T01:26:34Z2009-10-25T01:26:34Z<p>According to the documentation of the <a href="http://msdn.microsoft.com/en-us/library/aa385413%28VS.85%29.aspx" rel="nofollow">WNetAddConnection2</a> function, you can pass in Null for the user name to use the user context of the current process. I assume that means it will use the security context of the account running your client application. MSDN also says to pass in Null for the password to use the password associated with whatever user name is specified.</p>
<p>Maybe setting both to Null will just magically work.</p>
http://stackoverflow.com/questions/1610743/reading-excel-files-in-vb-net-leaves-excel-process-hanging/1611084#16110840Answer by Chris Tybur for Reading excel files in vb.net leaves excel process hangingChris Tybur2009-10-23T02:12:49Z2009-10-23T02:21:32Z<p>I ran into this problem and what I found worked was making sure I called the Close() method on all Workbook and Workbooks objects, as well as the Quit() method on the Excel Application object. I also call System.Runtime.InteropServices.Marshal.ReleaseComObject on every Excel object was instantiated. I do all this in reverse order of age, so the newest object gets cleaned up first and the oldest, which is the Application object, gets taken care of last. I don't know if the order really matters, but it seems like it might.</p>
<p>I've seen examples where GC.Collect() was called at the very end, but I've never had to do that to get the excel.exe process to end.</p>
http://stackoverflow.com/questions/1543131/finding-a-unc-path-on-another-server/1564130#15641300Answer by Chris Tybur for Finding a UNC Path on another server?Chris Tybur2009-10-14T03:44:15Z2009-10-14T03:44:15Z<p><a href="http://bytes.com/topic/c-sharp/answers/224901-how-can-i-get-names-shared-folders-host" rel="nofollow">Here</a> is a post on enumerating the shares on a given host using C#.</p>
<p>It uses the <a href="http://msdn.microsoft.com/en-us/library/aa394435%28VS.85%29.aspx" rel="nofollow">Win32_Share WMI class</a>, which has the disk path of the share as one of its properties. It might be possible to use that class to search for a particular share, given a UNC path. Or if you knew the name of the share you can simply loop through the enumeration results until you find it.</p>
http://stackoverflow.com/questions/1428059/sql-server-bulk-insert-fails-network-related/1428084#14280840Answer by Chris Tybur for SQL Server Bulk Insert fails (Network related)Chris Tybur2009-09-15T16:00:41Z2009-09-15T16:11:38Z<p>Yes, it will look for the file on the SQL server itself.</p>
<p>If you can map a network drive to the C drive of your SQL server, then you can just copy the file over before running the bulk insert.</p>
<p>If you absolutely can't get any access to the server's file system, then you can look at doing something like this:</p>
<ul>
<li>write a program that reads your text file and inserts the contents into single record in a temporary table that has a Text field, perhaps using a stored procedure</li>
<li>have the program execute the <a href="http://msdn.microsoft.com/en-us/library/ms162802.aspx" rel="nofollow">bcp command</a> to export the data from the temporary table into a text file on the SQL server's local file system, to a folder that the account under which the SQL service is running has write permission</li>
<li>have the program run a bulk insert command specifying the path to the text file on the server</li>
<li>delete the text file and the temporary table</li>
</ul>
http://stackoverflow.com/questions/1360054/suppress-the-reboot-prompt-for-the-net-3-5-sp1-redist0Suppress the reboot prompt for the .NET 3.5 SP1 redistChris Tybur2009-09-01T00:35:39Z2009-09-01T13:15:12Z
<p>I have an InstallShield 2009 Basic MSI project that I've modified to load the 3.5 SP1 redistributable for the .NET framework. It loads fine but as soon as it finishes it displays a prompt saying the system has to reboot, and you can either say yes and it will reboot, or no and it will stop the install.</p>
<p>I then went in and edited the .NET Framework 3.5 Service Pack 1 (Web Download) redistributable using InstallShield's prerequisite editor. I changed the behavior if it needs a reboot to 'Note it, fail to resume if the machine is rebooted, and reboot after the installation'. I interpreted that as meaning the reboot prompt would not be shown until the end of the install, but it still showed up in the same place.</p>
<p>Is there a way to suppress the prompt until the end of the install? Do I need to pick a different option from that drop-down in the pre-req editor?</p>
<p>Bonus question: if I need to run my install unattended, is there a way to automatically have it reboot after the entire install is finished if one is needed?</p>
<p>EDIT:
The command switches mentioned below would probably work, but in the case of running the install unattended it will be launched from another program, and I really don't want to modify that app just for this one case. Here's a better question: is a reboot <strong>really</strong> required after installing .NET 3.5 SP1, or is it one of those things where a reboot would be good but is not absolutely needed for programs to start using the 3.5 framework?</p>
http://stackoverflow.com/questions/1360016/setting-query-timeout-on-a-stored-procedure-in-sql-server-2005/1360073#13600732Answer by Chris Tybur for Setting query timeout on a stored procedure in SQL Server 2005Chris Tybur2009-09-01T00:44:14Z2009-09-01T00:44:14Z<p>I have never heard of setting a timeout for executing a stored procedure on the server side. Usually you would specify the timeout for the command that runs the procedure in the data provider you are using, such as ADO.NET.</p>
http://stackoverflow.com/questions/1319361/web-service-return-value-issue-in-vb-net/1351869#13518690Answer by Chris Tybur for Web Service return value issue in VB.netChris Tybur2009-08-29T16:52:02Z2009-08-29T18:36:33Z<p>You would need to do something like this:</p>
<pre><code><WebMethod()> Public Function HelloWorld(ByVal str As String) As Boolean
Dim status As Boolean = False
If str <> "" Then
Dim t As New Thread(AddressOf DoItNow)
t.Start()
return true
End If
End Function
</code></pre>
<p>Strictly speaking, the web method doesn't return before the additional processing starts, but it does return immediately after the new thread is launched, so the time difference is very small. Once you return from a method its execution is pretty much done, so whatever you want it to start needs to be started before the Return statement.</p>
http://stackoverflow.com/questions/1330659/updating-dotnetnuke-module-from-another-app0Updating DotNetNuke module from another appChris Tybur2009-08-25T20:08:54Z2009-08-26T18:13:19Z
<p>I have several DNN modules that I wish to update silently, using the portal's built-in module upgrade facilities called from a separate application, in this case a Windows service. I was able to make it all work with version 4.3 of the portal by modifying the DNN source in key areas to allow DotNetNuke.dll to function outside of a web application. I'm now trying to do the same thing with the 4.9.0 source code and I'm having problems.</p>
<p>Everything works fine until DNN tries to read from the database. I have my Windows service project, the DNN library project, and several other related projects loaded in one VS solution (the additional projects are the same ones that are in the main solution file provided with the DNN source). I call PaInstaller.Install in my service to update each module. Execution gets to reflection.vb and then it tries to create a DotNetNuke.Data.SqlDataProvider object based on the type name. It raises an exception when calling System.Web.Compilation.BuildManager.GetType. The exception says:</p>
<p>Could not load type 'DotNetNuke.Data.SqlDataProvider' from assembly 'System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'</p>
<p>I read this to mean it simply couldn't locate the DotNetNuke.SqlDataProvider.dll assembly. What's strange is that assembly is in the Bin folder for the DNN library project, and I also have it in the folder where my Windows service is running. The actual SqlDataProvider project is also loaded in the solution. I can't for the life of me understand why the runtime environment can't locate the assembly.</p>
<p>Has anyone tried something like this before, or know what could cause an assembly not to be found while stepping through the DNN source? Am I better off using something other than BuildManager.GetType to get an instance of the SQL provider type?</p>
http://stackoverflow.com/questions/1318886/keyboard-recommendation-for-a-developer/1318917#13189170Answer by Chris Tybur for Keyboard Recommendation for a DeveloperChris Tybur2009-08-23T16:14:12Z2009-08-23T16:14:12Z<p>I bought a <a href="http://www.daskeyboard.com/" rel="nofollow">Das keyboard</a> a few months ago and love it dearly. Just like the IBM keyboards of old: nice clicky sound, simple, sturdy, no annoying multimedia controls, built-in USB hub, etc.</p>
http://stackoverflow.com/questions/1285377/my-application-commandlineargs-cant-open-file/1303744#13037440Answer by Chris Tybur for My.Application.CommandLineArgs - can't open fileChris Tybur2009-08-20T03:08:24Z2009-08-20T03:21:26Z<p>It would be hard to real-time debug a program meant to be invoked via the Open With context menu option, since it's launched directly by the OS.</p>
<p>It might help to know the text of the error you're getting. It could be that when Windows invokes a .NET app via Open With, it doesn't populate My.Application.CommandLineArgs at all. Or it might put the file name further down in the collection. You could try</p>
<pre><code>For Each s As String In My.Application.CommandLineArgs
MessageBox.Show(s)
Next
</code></pre>
<p>to see exactly how many items are there and their values. In any case, I would do some Google searching on how to intercept the context argument sent to an application using Open With.</p>
http://stackoverflow.com/questions/1302077/can-i-stop-a-program-during-execution-any-other-way-than-by-throwing-an-error/1303638#13036380Answer by Chris Tybur for Can I stop a program during execution any other way than by throwing an error?Chris Tybur2009-08-20T02:19:56Z2009-08-20T02:19:56Z<p>In your service you can handle the OnCustomCommand event, then have your class that does the telnet processing send a command to the service via the ExecuteCommand method of the System.ServiceProcess.ServiceController class. This special command would basically tell the service to stop itself, which can be also be done by the ServiceController object.</p>
<p>From your class:</p>
<pre><code>Dim oServCtl As System.ServiceProcess.ServiceController
oServCtl.ServiceName = "MyServiceName"
oServCtl.ExecuteCommand(128)
</code></pre>
<p>Within your service:</p>
<pre><code>Protected Overrides Sub OnCustomCommand(ByVal command As Integer)
Dim oServCtl As System.ServiceProcess.ServiceController
If command = 128 Then
oServCtl = New System.ServiceProcess.ServiceController
oServCtl.ServiceName = "MyServiceName"
oServCtl.Stop()
oServCtl.Close()
End If
End Sub
</code></pre>
<p>You can use custom commands from 128 and up.</p>
http://stackoverflow.com/questions/1229086/upgrading-sharepoint-web-parts1Upgrading SharePoint web partsChris Tybur2009-08-04T18:13:39Z2009-08-05T11:13:24Z
<p>I have several custom web parts that I'm in the process of deploying to production. During this process I've found a handful of minor things that need to be tweaked in the various parts. To deploy the new code I create a new solution package, deactivate then delete the features, retract then delete the solution, then do it all again in reverse order with the new package. Needless to say, this can be time consuming. Is it necessary to completely remove a web part in order to upgrade it, or can a web part/feature/solution be upgraded in place?</p>
http://stackoverflow.com/questions/1223059/sql-server-linked-server-with-different-active-directory-domain-credentials/1223326#12233260Answer by Chris Tybur for SQL Server Linked Server with different active directory domain credentialsChris Tybur2009-08-03T16:38:43Z2009-08-03T16:38:43Z<p>You can change the properties of the linked server so it uses an alternate set of credentials. From SSMS if you right-click on the linked server and go to Properties -> Security, you can change how the authentication is done for the remote server. I don't know if you can specify a Windows-based login for the remote security context, but it's worth a try.</p>
http://stackoverflow.com/questions/731485/async-thread-dies-in-sharepoint-web-part1Async thread dies in SharePoint web partChris Tybur2009-04-08T19:34:58Z2009-07-30T11:00:04Z
<p>I wrote a custom web part for SharePoint 2007 that loads an existing user control. One of the things the user control does is an asynchronous upload of a file via FTP. I'm using a third-party FTP library that has BeginUpload/EndUpload methods for async file transfer. I also have an update panel in the user control that I use to display a running total of the number of bytes that have been transferred, based on an event raised by the FTP library. I've added all the necessary AJAX settings to web.config.</p>
<p>Everything works great if I run the user control by itself from a separate project. But when I access the web part that hosts the control and try an upload, the FTP library transfers about 64 KB and then the thread it's running on dies. The message I get in the VS output window is:</p>
<p>The thread 'Win32 Thread' (0xf34) has exited with code 0 (0x0).</p>
<p>I get several of those and then the FTP library throws an exception (basically it times out), the IIS worker processes blow up, and the whole thing comes to a halt. Is there something special I need to do in my SharePoint configuration or the web part to make this work? It seems to be something about SharePoint since the same code works fine if SP is out of the picture.</p>
http://stackoverflow.com/questions/1202514/passwordpropertytext-not-working0PasswordPropertyText not workingChris Tybur2009-07-29T19:31:22Z2009-07-29T20:11:59Z
<p>I have a SharePoint web part with a web-browsable property that stores a password. I've decorated the property with the PasswordPropertyText attribute but whenever I edit the web part it shows the actual password rather than dots or asterisks. Here is my property declaration:</p>
<pre><code><Personalizable(PersonalizationScope.Shared), _
PasswordPropertyText(True), _
WebBrowsable(True), _
WebDisplayName("Your Password"), _
Public Property MyPassword() As String
Get
return m_myPassword
End Get
Set(value as String)
m_myPassword = value
End Set
End Property
</code></pre>
<p>Does SharePoint 2007 respect this attribute, or am I just not using it correctly?</p>
http://stackoverflow.com/questions/1066159/problem-with-net-remoting-c/1066283#10662830Answer by Chris Tybur for Problem with .Net Remoting (C#)Chris Tybur2009-06-30T21:54:53Z2009-06-30T21:54:53Z<p>Could a firewall be blocking tcp port 8000 in your environment? You could try switching to http just as a test.</p>
http://stackoverflow.com/questions/899342/combo-box-drop-down-closes-unexpectedly-when-on-tab-control0Combo box drop-down closes unexpectedly when on tab controlChris Tybur2009-05-22T18:36:43Z2009-05-26T15:45:01Z
<p>I have a modal form with a single instance of the built-in .NET 2.0 tab control. The tab control has several pages, and on one of them is a combo box that isn't populated until the user activates it for the first time. When that happens, I handle the DropDown event and run a process that takes several seconds, then I add the items returned by that process to the combo box.</p>
<p>It works fine, except right after the list portion of the combo box is dropped down, it immediately closes as if some other control took the focus. I've narrowed it down to the fact that there is a tab control on the form, and the process that retrieves items for the combo box takes more than 4 seconds. If I create a completely blank form with just the combo box, I don't see this behavior.</p>
<p>Needless to say, this is strange beyond belief. Any idea why the tab control would interfere with the control that currently has focus?</p>
<p>EDIT:</p>
<p>Here is the event handler code for the given combo box. Basically I'm building a list of SQL servers on the network. The thing that takes several seconds is the call to GetDataSources.</p>
<pre><code>Private Sub cmbServer_DropDown(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmbServer.DropDown
Dim oTable As DataTable
Dim lstServers As List(Of String)
Dim lstAliases As List(Of String)
Try
If cmbServer.Items.Count = 0 Then
System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor
oTable = System.Data.Sql.SqlDataSourceEnumerator.Instance.GetDataSources
lstServers = New List(Of String)
For Each oRow As DataRow In oTable.Rows
If oRow("InstanceName").ToString = "" Then
lstServers.Add(oRow("ServerName").ToString)
Else
lstServers.Add(oRow("ServerName").ToString & "\" & oRow("InstanceName").ToString)
End If
Next oRow
'Retrieve any server aliases on the client and add them to the server list
lstAliases = GetSQLServerAliases()
If lstAliases IsNot Nothing Then
For Each sAlias As String In lstAliases
lstServers.Add(sAlias)
Next sAlias
End If
lstServers.Sort()
For Each sServer As String In lstServers
cmbServer.Items.Add(sServer)
Next sServer
End If
Catch ex As Exception
ErrHandler("frmRefreshDB", "cmbServer_DropDown", ex.Source, ex.Message, ex.InnerException)
Finally
System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.Default
If oTable IsNot Nothing Then
oTable.Dispose()
End If
End Try
End Sub
</code></pre>
http://stackoverflow.com/questions/899342/combo-box-drop-down-closes-unexpectedly-when-on-tab-control/911381#9113810Answer by Chris Tybur for Combo box drop-down closes unexpectedly when on tab controlChris Tybur2009-05-26T15:45:01Z2009-05-26T15:45:01Z<p>I was able to solve this problem.</p>
<p>I first added a breakpoint to the LostFocus event of the combo box and looked at the stack trace per Steve Dignan's suggestion, but that didn't reveal anything. One thing that is special about my form is this combo box is normally disabled and only becomes enabled when the user checks a box on the same tab page. The solution was to explicitly set the focus to the combo box when the box was checked, like so:</p>
<pre><code>Private Sub chkAltServer_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles chkAltServer.CheckedChanged
Try
If chkAltServer.Checked Then
UnlockControl(cmbServer)
cmbServer.Focus()
Else
LockControl(cmbServer)
End If
Catch ex As Exception
ErrHandler("frmOptions", "chkAltServer_CheckedChanged", ex.Source, ex.Message, ex.InnerException)
End Try
End Sub
</code></pre>
<p>The drop-down portion of the combo box then showed normally.</p>
http://stackoverflow.com/questions/837635/creating-drives-to-remote-resources-in-windows/838077#8380771Answer by Chris Tybur for Creating drives to remote resources in windows?Chris Tybur2009-05-08T03:14:07Z2009-05-08T03:14:07Z<p>My initial thought would be you would need to write a shell extension to be able to show your FTP site, and that it would best be shown as a <a href="http://en.wikipedia.org/wiki/Special%5FFolders" rel="nofollow">special folder</a> in Windows Explorer. Your extension would ideally be written in a non-managed language that supported COM (C++, VB 6, etc). It would need to respond to events like:</p>
<ul>
<li>The user highlighting a folder on the server</li>
<li>The user double-clicking on a folder on the server</li>
<li>The user dragging and dropping files to and from the server</li>
<li>The user wanting to disconnect/reconnect from the server</li>
</ul>
<p>When you intercept these events you would issue the appropriate FTP command to accomplish the task (use LIST to get the contents of a directory, MKD to create a directory, STOR to upload a file, etc). You would have to take the results of these commands and show them in the folders view and the listview within Windows Explorer, and for that you will likely need to get up close and personal with the Win32 API. For that you can turn to books like Charles Petzold's classic <a href="http://rads.stackoverflow.com/amzn/click/157231995X" rel="nofollow">Programming Windows</a>. Also check out this <a href="http://www.codeproject.com/KB/shell/shellextguide1.aspx" rel="nofollow">tutorial</a> on writing shell extensions.</p>
<p>It sounds like an interesting project.</p>
http://stackoverflow.com/questions/820866/is-it-possible-to-duplicate-the-following-credential-process-in-vb-net/832630#8326300Answer by Chris Tybur for Is it possible to duplicate the following credential process in VB.NET?Chris Tybur2009-05-07T02:28:44Z2009-05-07T02:28:44Z<p>I do a similar thing to map network drives for copying files between machines. I didn't write the code but it's pretty much the same as yours, except for two things:</p>
<ul>
<li><p>After the Impersonate method returns I close both tokens using the CloseHandle routine, before I exit my impersonator method.</p></li>
<li><p>At the top of the impersonator the first thing that happens is a call to RevertToSelf, presumably to cancel any previous impersonation.</p></li>
</ul>
<p>I don't know if they would make a difference but it's worth a try. Here are the relevant declarations:</p>
<pre><code>Declare Auto Function CloseHandle Lib "kernel32.dll" (ByVal handle As IntPtr) As Long
Declare Auto Function RevertToSelf Lib "advapi32.dll" () As Long
</code></pre>
http://stackoverflow.com/questions/832465/how-good-bad-is-sharepoint-programming/832585#8325856Answer by Chris Tybur for How good/bad is sharepoint programming?Chris Tybur2009-05-07T02:03:13Z2009-05-07T02:03:13Z<p>I knew nothing about SharePoint 3 months ago. Since then I've had to create a couple of custom web parts for my company's new support site and I have to agree with your friend, it's a big mess.</p>
<p>At first I was impressed by how much you could do with the platform without any coding at all. But it's been frustrating getting my stuff to work properly. I tried to incorporate a user control I had written earlier that worked great in a regular web app, but a key part simply wouldn't work in SharePoint for reasons that are still beyond me. I managed to find a workaround, but lost two weeks in the process.</p>
<p>It was also disheartening to learn that the development environment has to be a machine actually running SharePoint, which has to run under Windows 2003/2008. I had to set up a virtual machine on my existing system, which isn't a big deal but it's one more hurdle you have to overcome.</p>
<p>In all, it seemed way too confusing for what you're trying to do. I agree with the sentiment that a lot of time is spent on installation, configuration, and deployment versus actual development. Maybe the 2010 version will be better. It's certainly not a product I would look forward to working with.</p>
http://stackoverflow.com/questions/799949/deferred-loading-of-treeview-in-net/800545#8005450Answer by Chris Tybur for Deferred loading of TreeView in .NETChris Tybur2009-04-29T01:42:20Z2009-04-29T01:42:20Z<p>I've also wondered how to get the + to show up next to childless nodes, but I never found a good way. My solution was to handle the MouseDoubleClick event like so:</p>
<pre><code>Private Sub tvwMain_MouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles tvwMain.MouseDoubleClick
Dim oNode As TreeNode
oNode = tvwMain.GetNodeAt(e.X, e.Y)
If oNode IsNot Nothing Then
If oNode.Nodes.Count = 0 Then
'add children here
End If
End If
End Sub
</code></pre>
http://stackoverflow.com/questions/731485/async-thread-dies-in-sharepoint-web-part/800496#8004960Answer by Chris Tybur for Async thread dies in SharePoint web partChris Tybur2009-04-29T01:16:06Z2009-04-29T01:16:06Z<p>I submitted this problem to Microsoft SharePoint developer support and they were able to reproduce the error with the FTP library I'm using, which comes from ComponentSpace. Normally what I'm trying to do is possible, but for some reason it just didn't want to work.</p>
<p>Their solution was to save the file on the web server by doing a Request.Files(0).SaveAs and then doing the FTP upload. Not ideal, but it gives me the progress indicators I wanted.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98481#984810Answer by Chris Tybur for What's the best API you've ever used?Chris Tybur2008-09-19T00:55:15Z2009-04-19T11:54:05Z<p>I really liked the SQL-DMO library the first time I used it (SQL 2000), and ended up writing several utilities around it. The nice thing was it exposed nearly every aspect of a SQL server to your code, making it possible to write an app that could do lots of the fancy things that Enterprise Manager could do, but in a way that was easy for non-technical users.</p>
http://stackoverflow.com/questions/673450/sharepoint-users-ad-group-membership1SharePoint user's AD group membershipChris Tybur2009-03-23T13:55:05Z2009-04-02T20:32:34Z
<p>I've been tasked with creating a SharePoint web part for our new web site. One of the things it needs to know is which AD groups the current user belongs to (each site user will belong to one or more special security groups within the domain.) Is there a part of the SharePoint API that exposes this information, or do I need to query AD directly?</p>
http://stackoverflow.com/questions/619855/code-review-ado-net-data-access-utility-class-vb/621099#6210990Answer by Chris Tybur for Code Review: ADO.NET Data Access Utility Class (VB)Chris Tybur2009-03-07T01:22:52Z2009-03-07T01:22:52Z<p>A few observations:</p>
<p>1) You can make your execution routines more flexible by using a ParamArray as an argument. That way you can have just a handful of methods that can handle different types of SQL parms and variable numbers of them. The caller can simply pass in however many values a given stored procedure needs, then you can use SqlCommandBuilder.DeriveParameters to populate your SqlCommand object. The caller would have to make sure they passed the parms in the order the SP expects them, but that should be acceptable.</p>
<p>2) It looks like all SqlCommand executions use the default timeout. There may be cases where you need to increase it, so having that as an optional argument to ReturnDataSet/ReturnDataTable/etc. might be advantageous.</p>
<p>3) You might consider having a separate set of routines that do the same kinds of things, but inside a transaction.</p>
http://stackoverflow.com/questions/614111/running-class-as-new-thread/615804#6158041Answer by Chris Tybur for Running class as new threadChris Tybur2009-03-05T17:43:09Z2009-03-05T19:17:17Z<p>I've created several different classes that incorporate BackgroundWorker. What I generally do is have a BackgroundWorker component on the form that will be open when the job is being performed, then I pass that instance to the constructor of my job class.</p>
<p>Here is what your job class might look like:</p>
<pre><code>Private m_bwMain As BackgroundWorker
Public Sub New(ByVal bwMain As BackgroundWorker)
m_bwMain = bwMain
'additional setup code here
End Sub
</code></pre>
<p>To start a job, you would do something like this in the Click event handler of your Start Download button:</p>
<pre><code>lblStatus.Text = "Initializing ..."
bgwMain.RunWorkerAsync(someFileName)
</code></pre>
<p>I declare my job class as a private member of the current form, then instantiate it in the BackgroundWorker.DoWork event. From there you can call your method to download a file:</p>
<pre><code>Private Sub bgwMain_DoWork(ByVal sender As Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles bgwMain.DoWork
m_oJobEngine = New JobEngine(CType(sender, BackgroundWorker))
m_oJobEngine.DownloadFile(CStr(e.Argument))
End Sub
</code></pre>
<p>To report progress to the user, you can handle the events raised by your class in your main form. You just need to make sure the job class object declaration has the WithEvents keyword. From those handlers you can call the ReportProgress method of BackgroundWorker. From within ReportProgress you can make whatever changes you need to the UI to indicate progress. Here's an example:</p>
<pre><code>Private Sub m_oJobEngine.DownloadProgress(ByVal bgw as Backgroundworker, ByVal bytesTransferred as Long) Handles m_oJobEngine.DownloadProgress
bgw.ReportProgress(0, bytesTransferred)
End Sub
Private Sub bgwMain_ProgressChanged(ByVal sender As Object, ByVal e As System.ComponentModel.ProgressChangedEventArgs) Handles bgwMain.ProgressChanged
lblStatus.Text = CLng(e.UserState).ToString & " bytes transferred."
End Sub
</code></pre>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1633361/using-aspcompat-in-a-sharepoint-web-part-page/1633453#1633453Comment by Chris Tybur on Using AspCompat in a SharePoint web part pageChris Tybur2009-11-02T21:29:01Z2009-11-02T21:29:01ZI ended up creating a new solution package containing a module being deployed as a feature, similar to what you suggested in your other answer. The solution installs correctly and seems to put things in the right place. I see my ASPX page with AspCompat in the Pages library, however, when I browse to it I still get a message saying the AspCompat directive isn't allowed. I set the content type for the file to GhostableInLibrary. I know it's looking at the disk file because if I rename it I can no longer browse to it. Why would it still have a problem with that directive?http://stackoverflow.com/questions/1633361/using-aspcompat-in-a-sharepoint-web-part-page/1633453#1633453Comment by Chris Tybur on Using AspCompat in a SharePoint web part pageChris Tybur2009-10-28T15:19:43Z2009-10-28T15:19:43ZOK, the error was caused by not including the Path attribute in the <file> element.http://stackoverflow.com/questions/1633361/using-aspcompat-in-a-sharepoint-web-part-page/1633453#1633453Comment by Chris Tybur on Using AspCompat in a SharePoint web part pageChris Tybur2009-10-28T14:55:05Z2009-10-28T14:55:05ZYour answer to that other question seems promising. I figured I could just modify the existing feature manifest of my web part to include an ASPX page that contains AspCompat. When I went into the file containing the elements for my feature I could add another <module> element, but after I added a <file> element underneath it Visual Studio suddenly couldn't parse the package solution when in WSP View. The error it gave was 'Value cannot be null. Parameter name: path2'. Do I need to create a new feature within my web part just for the ASPX page?http://stackoverflow.com/questions/1608757/open-close-connection-to-unc-without-credentials/1619691#1619691Comment by Chris Tybur on Open/close connection to UNC without credentialsChris Tybur2009-10-27T16:47:34Z2009-10-27T16:47:34ZOn the server, the only thing that comes to mind is to go into Computer Management and go to System Tools -> Shared Folders -> Open Sessions and see if there's evidence of the client connection to the given share. If the server is running Windows 2008 you can fire up the Share and Storage Management snap-in to see the same info. I assume a session will appear for the given user during the file copy, then disappear shortly after the call to WNetCancelConnection2. I always set the last parameter of that function to 1 to force a disconnect.http://stackoverflow.com/questions/1478673/asp-net-learning-net-framework-3-0-3-5/1478754#1478754Comment by Chris Tybur on ASP.NET - Learning .NET Framework 3.0 / 3.5Chris Tybur2009-09-25T19:15:22Z2009-09-25T19:15:22ZI have this book, and I agree it's easy to understand and has been very useful.http://stackoverflow.com/questions/1477618/how-do-i-change-a-windows-services-startup-type-in-net-post-install/1477694#1477694Comment by Chris Tybur on How do I change a Windows Service's startup type in .NET (post-install)?Chris Tybur2009-09-25T16:06:48Z2009-09-25T16:06:48ZModifying the registry would be the best way to change the startup type post-install. You can use the Microsoft.Win32.Registry class to do it.http://stackoverflow.com/questions/1330659/updating-dotnetnuke-module-from-another-app/1336559#1336559Comment by Chris Tybur on Updating DotNetNuke module from another appChris Tybur2009-09-02T22:55:25Z2009-09-02T22:55:25ZInitiating a bulk install from a Windows service worked beautifully. Definitely easier than my original approach.http://stackoverflow.com/questions/1330659/updating-dotnetnuke-module-from-another-app/1336559#1336559Comment by Chris Tybur on Updating DotNetNuke module from another appChris Tybur2009-08-27T16:47:22Z2009-08-27T16:47:22ZAnything you can post would be helpful. I'll experiment with it and see how far I get.http://stackoverflow.com/questions/1330659/updating-dotnetnuke-module-from-another-app/1336559#1336559Comment by Chris Tybur on Updating DotNetNuke module from another appChris Tybur2009-08-27T00:23:05Z2009-08-27T00:23:05ZI didn't know there was a bulk install option. That sounds like it would work for me. Is there any documentation for it anywhere? What exactly does the HTML response look like, and how would I know the bulk install succeeded?http://stackoverflow.com/questions/1229086/upgrading-sharepoint-web-parts/1230025#1230025Comment by Chris Tybur on Upgrading SharePoint web partsChris Tybur2009-08-06T19:42:46Z2009-08-06T19:42:46Zstsadm -o upgradesolution is what I was looking for. I've read up on its caveats but none of those apply to my immediate situation, so I can safely use it.http://stackoverflow.com/questions/1202843/why-is-my-entire-site-a-tiny-bit-smaller-in-firefoxComment by Chris Tybur on Why is my entire site a tiny bit smaller in Firefox?Chris Tybur2009-07-29T20:39:23Z2009-07-29T20:39:23ZI like the insanity tag. That's something I often feel when dealing with things that don't look right between browsers, or even in one browser.http://stackoverflow.com/questions/521298/when-to-use-struct-in-cComment by Chris Tybur on When to use struct in C#?Chris Tybur2009-03-04T00:03:21Z2009-03-04T00:03:21ZI've always gone by the thinking in the second edit to the question: if I have a handful of related value types, I'll create a struct. I may have several of these small units of data and I don't really want to create a bunch of additional class files for what would only be a few dozen lines of code.http://stackoverflow.com/questions/95700/vb-net-or-c-2008-multi-threaded-import/509999#509999Comment by Chris Tybur on VB.Net (or C#) 2008 Multi Threaded ImportChris Tybur2009-02-04T04:05:52Z2009-02-04T04:05:52ZI've successfully used the BackgroundWorker component in a couple of VB.NET projects. It's hard to beat if your multi-threading needs are fairly simple.http://stackoverflow.com/questions/422783/accessing-row-data-in-telerik-radgrid-server-side/423312#423312Comment by Chris Tybur on Accessing Row Data In Telerik RadGrid (Server Side)Chris Tybur2009-01-08T14:47:07Z2009-01-08T14:47:07ZSo far I've only dealt with bound columns, but check out <a href="http://www.telerik.com/help/aspnet/grid/gridreferencecontrolsinroweditform.html" rel="nofollow">telerik.com/help/aspnet/…</a> and <a href="http://www.telerik.com/help/aspnet/grid/grdusinggetitemsgetcolumnmethods.html" rel="nofollow">telerik.com/help/aspnet/…</a>, they might be helpful.http://stackoverflow.com/questions/285429/terminal-services-get-client-name-while-running-as-administrator/289229#289229Comment by Chris Tybur on Terminal Services: Get Client Name While Running As AdministratorChris Tybur2008-11-14T15:16:15Z2008-11-14T15:16:15ZClean as in working, or as in straightforward?