Hi!
Need some help to explain the difference between a HashTable and a Dictionary.
We have a dataset that feeds a data export function, created last year using the visual designer in Visual Studio 2005.
To connect to the SQL CE database, it uses a connection string stored i...
Hello, I am having trouble getting machines to trust a WINAPP that is housed on a network drive. Usually I install applications locally but this is getting to be cumbersome when we need to do...
Hello, I have an app where I create an xml file from a database on the fly for the slideshow application that can be found on codeplex. Cool app! My modifications simply get the data from the ...
I am deploying a project using visual studio 2008 and with report tool Crystal report 9.0
i get the error "Load crpe32.dll" when I deployed project and run the program other clients
I add...
I'm using Visual Studio 2005. My project starts with a Sub Main, so I cannot use the built-in splash form capability of VS. So, I created a small form to use for a splash. I would like to d...
I am making a gridview programmatically since I am using it in a webpart. This means that I CAN NOT make it in the designer, so please don't suggest that.
I want to be able to click on a h...
When trying to run an application that uses .NET 1.1, such as Microsoft .NET Framework 1.1 Wizards, I get this error:
Common Language Runtime Debugging Services: Application has generated a...
Using VS2005 ASP.NET / C#
Hi I have two text boxes that are populated with dates picked from a calendar control and I would like to validate that the date in textbox2 is greater than the date...
Experts;
I got a question. Again it need to be with the sitemap. I have a table in my SQL database and there are some URLs that need to be repeat. But my sytemap provider doesn't like this.
...
I'm in the process of becoming conversant in ASP.NET for my website. And I'm trying to judge the work involved in adding eCommerce for a few of my products. I'd need to have credit card proc...
Here is my code, I'm wanting to fill a combobox from a column in an AS400 table:
Dim cn As iDB2Connection = New iDB2Connection("User ID=thegrinch;Password=elves;Data Source=1.1.1.1;Connecti...
I'm trying to assign values to columns in a dataset, but need to know what the datatype of the column is before I do, so I don't assign in invalid value.
Any ideas?
Hello,
I try to receive a notification when the delivery is successfull but I don't receive anything.
When I send the mail to a wrong addres I receive the unsuccessfull notification.
W...
In the code below I need to insert an if statement inside the statement.
After the { I need (using SQL Code...need the C#)
if strmls in ('F123456', 'F123457', 'F123458')
Line1 = A...
Hello, how do you control access to specific folders when using forms authentication and the ActiveDirectoryMembershipProvider? When using windows authenticaiton i could control access to a fo...
Hello,
I have created an external style sheet to change the colors and appearance of links on numerous pages throughout a web site developed in Visual Studio 2005 using C#.NET. Of the many ...
I have a .NET C# VS 2005 application that hits 100% utilization and stays there. I am having trouble finding information about how to troubleshoot this that I can understand. I understand thi...
I need a small app that determines if the pc has a network connection and if it does goes and gets any new files located on a share. I started by using oflline folders but it just takes to l...
Can someone put me on the right path trying to understand what needs to be done to receive a http request from a 3rd party?
My information provider says :
"We will post to you as each mes...
I am having an issue with too much data in the last read of a filestream. Writng to a file works fine but coverting it to a string is an issue. What happens is that it repeats some of the prev...
Hey Experts I am using 2 text editors from rad and a dropdownlist and textbox.
when I click edit the one rad text box fills the textbox with the information selected
How can I click edit a...
Hi Guys,
I am having difficulty figuring out how to reference the code to a file that is in another folder than the one in which the code resides.
Supposed there is X with Subfolder X1 ...
I would like to send data from <asp:TextBox> fields to an XML file for data storage.
If I have a form with FName, LName, PIN and Date fields; how do I send the inputs to an XML file?
if (Char.IsLetterOrDigit(e.KeyChar) == false)
{
if (e.KeyChar == (char)(Keys.Back))
{
e.Handled = false;
} else
{
e.Handled = true;
}
}
thisis my code which accepts...