Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: andegre
  • Content: Threads
  • Order by date
  1. andegre

    Video Editing

    Hello all, I have been tasked with writing a program to allow an end-user (WinForm at first, will eventually move to web page, but not right now) the ability to mark a point in a video, or multiple videos, then concatenate all of those little clips to create a new video. Question: What is a...
  2. andegre

    Calling a Sharepoint web service

    I'm trying to call the Sharepoint web service "Lists.asmx". I'm getting the SoapOperation exception but it doesn't give the "message" other than that so I'm having trouble trying to find out where to start looking in my code. Here's my C# code doing the call to the webservice: try...
  3. andegre

    Why throw a new exception rather than the one caught?

    http://msdn.microsoft.com/en-us/library/xhcbs8fz(v=VS.80).aspx This article talks about throwing exceptions, but my question is why do they say to throw a new exception, of the same type, but with a different title(?)? Why not just say: catch (Exception ex) { throw; } as opposed to...
  4. andegre

    Question about overloading methods

    I realize this is a very basic question, but is it possible to do this: public void PersistData(DataSet ds) { try { sqlCommand.ExecuteNonQuery() } catch (Exception ex) { throw ex } ) public bool PersistData(DataSet ds) { try {...
  5. andegre

    iisreset's needed a few times each day

    Hello all, I realize my question that I'm going to ask will not be able to be "solved" per se, but I would just like some suggestions on how to find the problem. This explanation may be quite long, so I apologize. Here it goes... Background Info: Servers: I have a large production environment...
  6. andegre

    iisreset's needed a few times each day

    Hello all, I realize my question that I'm going to ask will not be able to be "solved" per se, but I would just like some suggestions on how to find the problem. This explanation may be quite long, so I apologize. Here it goes... Background Info: Servers: I have a large production environment...
  7. andegre

    Anyone have experience with Xceed software?

    I have a process where I need to zip 10,000 files into one zip file, then FTP that zip file, then unzip the zip file. My problem is that I'm not sure I'm able to unzip the file via FTP connection. If anyone has experience with the Xceed software, or know of another way around this, that would...
  8. andegre

    System.OutOfMemoryException

    I get this error because I'm returning a dataset that contains 5.6 million rows. Where can I "up" the memory on the machine/server that I'm running on so that it has enough to finish the program? TIA
  9. andegre

    DataGridView - Changing the BackColor property

    I want to go through and change the backcolor for rows that are equal. I'm doing just a loop comparing the rows (not worried about performance), and when I find duplicates, I've tried to execute all 3 versions of this with no results: //dgv[cn, oCounter].Style.BackColor...
  10. andegre

    How do I create overridable methods

    I have a custom control at the top of many forms that contains customer information. The customer name is a link label that, when clicked, will open another form. How can I make that linklabel_click event overridable so I can have the overrided method on each of the forms that contains the...
  11. andegre

    Here's a brain-teaser for you...DataTable.Select

    Here is my output FROM THE IMMEDIATE WINDOW: dt.Select("PWDPermitStatusID = 1") {System.Data.DataRow[1]} [0]: {System.Data.DataRow} dt.Select("PWDPermitStatusID = 2") {System.Data.DataRow[1]} [0]: {System.Data.DataRow} dt.Select("PWDPermitStatusID = 3") {System.Data.DataRow[1]}...
  12. andegre

    Setup Project Help

    I've created a setup project where I have a folder under the "Application Folder" which is the name of my program. Inside that folder contains my executable and also my config file. I created a shortcut under the "User's Desktop" folder. For the shortcut, I tried to change the "Target" property...
  13. andegre

    Cross-Thread error/How to implement the Invoke method

    I have 2 forms, 1 which monitors my batch jobs in SQL Server Agent, and the other that throws up a new form to show the results of the last refresh (jobs that have failed since the last refresh). The second form is started by a background worker so the main [monitoring] form can keep refreshing...
  14. andegre

    MouseClick event not firing

    I have a form that holds a splitContainer where both of the panels contain a checkedListBox. The MouseEvent does not fire when clicking on the CheckedListBox, but it does fire when clicking on either the panels, or the splitcontainer, or the main form. (BTW - the Click event does not fire on the...
  15. andegre

    Retrieve Severity from SqlException

    What is the severity level in a tsql 'RAISERROR' statement mapped to in a SqlException? TIA
  16. andegre

    Connection Pooling .NET 3.5 vs .NET 1.1

    I have a very large ASP.NET web application that was recently upgraded from 1.1 to 3.5 framework. This has NOT hit production yet because I am still having performance problems. One thing I am noticing is the number of "connections" on the application servers. (Test environment has 4 servers...
  17. andegre

    Connection Pooling .NET 3.5 vs .NET 1.1

    I have a very large ASP.NET web application that was recently upgraded from 1.1 to 3.5 framework. This has NOT hit production yet because I am still having performance problems. One thing I am noticing is the number of "connections" on the application servers. (Test environment has 4 servers...
  18. andegre

    DataSet to BindingSource to DataGridView

    I don't know why I'm having such a hard time with this, but it will not show up in my DataGridView. Here's the code, does anyone know what's wrong with it? private void BindToGrid(DataSet dataSource) { if (dataSource != null) {...
  19. andegre

    Help with custom configuration class

    I created a customer configuration class Reports. I then created another class called "ReportsCollection". When I try and do the "ConfigurationManager.GetSection()", it doesn't populate my collection variable. Can anyone see any mistakes in my code? Here is the collection class: public...
  20. andegre

    msbuild equivalent of ASP.NET "Publish"

    I've tried doing the "msbuild" for one of my web applications and it doesn't copy the "Service References" or "Web References" folder out to my output directory. If I go into VS 2008 and just right-click on the project and select "Publish", it does exactly what I need. Does anyone know the...

Part and Inventory Search

Back
Top