Hope someone can help with this problem...
Using Visual C# 2008 express and SQL Server enterprise 2008
running on a laptop (vista home .premium)
i've created a new database using SQL s...
I am using Visual Studio 2008 to create a C# WinForm. I have a ProgressBar that shows the progress of execution in a semi-accurate fashion. However I would like to add some eye candy to the pr...
I am trying to get the specific cell value from my GridView in the RowDataBound method.
But I am getting an error. Please help?
ARG !
This is driving me nutz!
I am converting one of my VB6 apps to C# (I'm pretty new to c#). I currently have this working great in VB6, but I can't seem to find how to do it in c#,...
I am having trouble passing the database connection information and possibly parameters into an embedded crystal report in a C# application. Here is the info:
I have a Crystal Report that ...
Greetings,
I have a C# app, which tests for connectivity by pinging a server.
When I start the ping processes, I also start a series of 8 cycling graphics that I want to use to show that...
Hello,
do you know how to convert this project to VS 2005? http://www.codeproject.com/KB/miscctrl/cpam.aspx
thanks
I'm inserting a record in a MS-access database. I'm doing it in the c# section of an asp.net site
I use this code:
cmd.Parameters.Add("@Myndatexti",OleDbType.Char, 50).Value = ((TextBo...
Hi expert !
Im new in C# and need help. With NET Framework 2.0 and C# 2008 i need to make MDIform and many child forms with different textboxes and buttons and so on. I need to make button...
Hi,
I need to select a Excel file or a CSV file to export it to a database. This database can be DB2 or Sqlserver.
It must export it to a new table or an existing table.
When it is a ne...
I am getting the following compile error message :
Cannot implicitly convert type 'string[]' to 'string'
I think this error relates to ._inputWords[0].
Greetings experts,
I need your help. I usually would prefer to be led in the right direction to find the answer for myself, but in this case, my brain is completely toast from a long, very ...
I am trying to write a Windows service in C# that listens on a udp port, and starts a process depending on the message it receives.
Every time I start the service I get the error message:
...
I am using WebRequest in a Windows form to retrun (scrape) the html of a web page.
The page I am using WebRequest to connect to has a check (onload I presume) to see if javascript is enable...
Hi I am new to winforms programming most experience is web forms.
How Do I open another form from a button and the close the current form with a button?
So I have
private void btnSt...
I have a page that includes a gridview control showing a list of contacts associated with a selected record. I have used the footer of the gridview to allow users to add new contacts if they ...
I have place an edit/update button on my gridview and I am using the following code to pickup any changes upon editting/updating.
Location_Type = ((TextBox)user_records.Rows[e.RowIndex].Fin...
I have written a console application in C# dot net 1.1 that simply runs a program (robocopy.exe) as another user (Impersonation). The app works fine on my computer. It is supposed to be execut...
have a string for example:
string MySentence;
What I want to be able to do is parse that sentence and seperate all the words/entries that are seperated by a space into a seperate mini st...
I have a windows form that is using the web browswer control. I have a method that opens a page in the web browser control. When the web browser control is finished loading the page, it look...
Can some one help me conert an IEnumerable of objects to a List of the same type. I have a method that returns an IEnumerable of objects to take advantage of the yield return but on the other ...
I have a asp.net page (c# code) which i have included an HTML anchor tag to move the user down the page. In brief this is not working!
My anchor is written as
<a href="#records"></a>
...
I've run into a bit of a snag and I need some reading resources, help, whatever form I can get it in.
The Form I've created is simple. I dropped a ListView control on to it, a Button and a La...
I am having a few problems with permissions in windows Vista using C# code from an MCTS book. It is a simple calculator program with some of the buttons restricted depending on the Role of th...
I am using streamwriter to open a text or csv file and write something.
This is the example I found
Streamwriter sw= new streamwriter("file.txt",true)
sw.Writeline("hello");
I want to kn...