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...
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...
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...
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
{...
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...
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...
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...
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
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...
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...
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]}...
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...
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...
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...
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...
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...
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)
{...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.