For issues relating to development with C#, version 2.0.

learn more… | top users | synonyms

0
votes
1answer
25 views

Removing duplicates Mailitem based on Subject ,body , Recipient name,Received Time

I am using VS 2010 , Dot Net Framework 2.0 . I have created a project in Extensibility->Shared Add-ins for Outlook. I want to remove duplicate Mail-item based on Subject ,body , Recipient ...
0
votes
3answers
46 views

How to assign Mandatory Properties in class object in C#

Im working on .Net using c#. In c# classes want to use optional properties, like i have PERSON class, in that have properties like NAME,AGE,CITY and GENDER. public class PERSON { public string ...
0
votes
0answers
13 views

Look for string(s) in data columns

I am trying to write the logic for a custom validator that requires checking a specific column of a data table for existence of a set of strings. User must make some selections from three different ...
2
votes
3answers
76 views

Get domain name of a url in C# / .NET [duplicate]

The code: string sURL = "http://subdomain.website.com/index.htm"; MessageBox.Show(new System.Uri(sURL).Host); gives me "subdomain.website.com" But I need the main domain "website.com" for any url ...
0
votes
0answers
21 views

creating hierarchichal XML structure dynamically

I am creating an XML as shown by below code public class Group { [XmlElement(typeof(Manager))] public Employee [] Staff; [XmlElement (typeof(int)), XmlElement (typeof(string)), XmlElement ...
-1
votes
1answer
58 views

Reading data from Smart Card Reader ACR122U-A2

This is a followup question to my earlier question: Read and Write Card Details using a Smart Card Reader I have got the SDK and gone through the reference manual and sample code. But the SDK ...
0
votes
1answer
44 views

LDAP get group names

I am getting "Logon failure: unknown user name or bad password" error when I try to get the groups a user belongs to. User authentication works fine and this is what I can't understand. How can I ...
0
votes
2answers
40 views

List of all uncommon elements in arraylist

I have 2 ArrayList, which contains the filenames, now one list has more names and other might have less, or sometime equal, i want to list the filenames which are not common in both arraylist and ...
0
votes
3answers
51 views

Partial String in array of strings

I have an array of strings like {"ABC_DEF_GHIJ", "XYZ_UVW_RST", ...} and want to search if my array contains a string partially matching "ABC_DEF". It should return either index (0) or the string ...
0
votes
0answers
92 views

How to use Microsoft.SQLServer.Manageddts.dll without installing SQL Server?

I have a .net tool that has the application and the database on the same server(windows server 2003 with SQLserver 2005 32 bit). As a part of transition I decided to move the application to a Windows ...
-1
votes
1answer
41 views

Use fileinfo in stream

This is my code am trying to make a stream from the url and and i want to cut file into 6 pieces and download , because of that i want to connect the stream to file info but am getting some errors. ...
2
votes
1answer
57 views

Split file from a url

I had some codes to split files and join ,Now am trying to make a program that split file from a url and download , for example ...
0
votes
1answer
12 views

Anchor tag name searchinh using regular expression

I have this anchor tag standard <a href = "\code.ixc">temp_file</a> There could be 10 files listed this way. Now I want to search "temp_file" string. I used <a ...
0
votes
0answers
11 views

Unable to connect: incorrect log on parameters

Hi friend I've created a crystal report with parameter,its running successfully in while executing in source code but it does not load in while i config after IIS its shows the error like unable to ...
0
votes
0answers
37 views

Remote directory files listing using C#

This could be common ques for you but I am not able to resolve exception coming into my code. I am trying to list down all file names which exist at "http://www.ibiblio.org/pub/". When I types this ...
0
votes
0answers
105 views

how to retrive textbox value from grid view at RowUpdating command

i have grid view that show features of service. i bound all features in grid view and Inserting,Updating,Deleting with this criteria Click here. After running this project i can not updating existing ...
0
votes
0answers
20 views

token passing in C# to pass authentication credentials

I am creating an application in Visual studio 2005 using C# windows forms. In the process I have to download multiple files at a time and each file requires authentication. So when I download a file ...
0
votes
0answers
35 views

Unhandled exception when unplugged the SerialPort Device while communicating

I am communicating with the serial port, in the middle of the communicating if the device is physically unplugged form the PC, the serial port class is throwing the exception and we are handling it, ...
0
votes
0answers
83 views

invoke Java Restful web service from c#

Hi I have a java web service in which one method is present I need to invoke the method in C#(ASP.NEt 2.0) but it is giving The remote server returned an error: (405) Method Not Allowed. I am ...
-9
votes
4answers
76 views

Embedded statement error [duplicate]

I have a simple custom list class and I am trying to implement IComparable to it, but it's not working to be honest. I tried MSDN and other blogs and still same. public class sortDateTime : ...
0
votes
1answer
236 views

Gridview controls disabled in rowdatabound but not showing same setting later

I am disabling a TextBox in the gridview` based on some condition. Later, while I am traversing the griview, when I check the TextBox.Enabled property, it is displaying as true. however I had set it ...
2
votes
0answers
27 views

How do I load system.data configuration section when my entry point is a DLL and the hosting application is not .NET

I am working on a .NET DLL that is interacted with via COM in a number of different applications written in Java, Visual Basic 6 and c++. The application is using SQLite for client databases and we ...
0
votes
1answer
157 views

Unable to schedule a C# .exe file to run using Windows task scheduler

I have created a windows application using C# in visual studio 2005. I hav got windows 7 on my machine. Now I am trying to run this .exe file using windows task scheduler but my .exe file needs one ...
0
votes
2answers
68 views

How to Communiccate between JD Edwards Enterprise one 9.0 and .Net

I have problem that how to communicate Jd Edwards Enterprise one 9.0 with .Net,and my project manager told me to look at the "fatclient" as it acts as a middle ware between these two,but there is no ...
0
votes
1answer
145 views

convert structure to char pointer in c# [closed]

Below is the piece of code written in c++, how can i convert it in c#. If you check the pams_get_msgw function , the first param is of (char*), how can i pass the same in c# . struct ...
0
votes
1answer
41 views

Replace a string with another in request.rawurl not working

I want to replace some string in my url like this request.RawUrl.ToString().Replace("sometext566666", "othertest") but it s not working why is it so? For example, the original url is like ...
1
vote
1answer
80 views

Data structure to define a “flexible table” in C# 2.0?

I'm trying to implement a data structure in C# 2.0 that could be represented like this: | field1 | field2 | field3 | ... (variable length) ... +--------+--------+--------+------------------- 1 | ...
0
votes
1answer
175 views

run JQuery dialog window from code behind

I'd like to open dialog window from code behind in a button onClick. How to run the script? <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" ...
1
vote
1answer
368 views

Adding CustomUI Ribbon using Shared Add-in(not VSTO) in Outlook 2007,2010,2013

I am using VS 2010 and my project template is Extensibility->Shared Add-in. I want an ribbon with a button which should invoke my form in outlook. I am not able to understand how to do this? I ...
0
votes
1answer
112 views

Split a long String in c# without breaking a words [duplicate]

i want to break a long String in c# without breaking a words Example: S AAA BBBBBBB CC DDDDDD V Breaking Character on 7 Count S AAA BBBBBBB CC DDDDDD
0
votes
0answers
368 views

Upload file using jquery-ajax and path is in string

I am working on ASP.net 2.0 web application using C#. I need to upload a file where path of the file is in string. Methos in cs file [WebMethod] [ScriptMethod(ResponseFormat = ...
0
votes
1answer
180 views

SQL Injection vs. Microsoft Data Access Application Block SQL helper class

I am using Microsoft helper class (http://www.sharpdeveloper.net/source/SqlHelper-Source-Code-cs.html) I am using this method to insert data in table: string query = @"INSERT INTO table(col1, col2) ...
2
votes
2answers
57 views

Is there any way to replicate a memory can't be read error message in my C# application?

This is one of those problems that make you want to find a nice piece of rope. This problem is more annoying than a brother-in-law stops by unannounced wanting to borrow money. Let me state upfront ...
3
votes
1answer
133 views

Adding C# attribute to wsdl.exe generated property?

I have a class which is automatically generated via wsdl.exe, I need to add the [System.Xml.Serialization.XmlIgnoreAttribute()] attribute to one of the properties, but I can't modify the class ...
1
vote
1answer
121 views

(System.Web.UI.HtmlControls.HtmlAnchor) is not compatible with the type of control (System.Web.UI.HtmlControls.HtmlGenericControl)

I am getting this error when I am trying to load my .net 2.0 code in to one of our server. The base class includes the field 'imageDescription', but its type (System.Web.UI.HtmlControls.HtmlAnchor) ...
0
votes
1answer
44 views

Static Hashtable in WebService

I have developed a simple XML web service which uses a static hashtable for storing two column table from the database. The hashtable is loaded with values initially in the first call to web service. ...
1
vote
0answers
47 views

Handling embedded newline characters in log messages using log4net

When a log message contains embedded new line characters, then the alignment of such log messages is not proper in the log file. For example, if I am using the conversion pattern: [%-5level] ...
0
votes
0answers
126 views

asp.net debug compilation = false throws javascript error

i am getting Javascript error after i modified the web.config [debug compilation = false ] i have embedded javascript in my code using webResource [assembly: WebResource("ClientModels.js", ...
3
votes
2answers
125 views

How to show a message with icon in notification are using C#

I am doing a code in which if updates are available then I want to show a pop up message with ballon using C#. This is like same as "Java Updates available". With the help of notifyicon class and ...
6
votes
4answers
601 views

How to make a textbox accept only digits and formats numbers with commas?

I need a text box that: (1) only accepts digits as characters. (2) automatically continues to format numeric values with commas as the user types into it. For example, 1 becomes 1.00 ...
1
vote
2answers
43 views

c# net2.0 Console App merge arguments in one single string

I have one console app which receives a variable number of arguments. I need to remove the first element (args[0]) and merge all the others into a single string. How I can do that in .NET 2.0?
0
votes
0answers
139 views

Capturing images from Webcam using picturebox

I have a windowsform with two pictureboxes to capture images from webcam. The first picturebox display the webcam image and the second picturebox display the captured image. Then how to write code to ...
0
votes
0answers
40 views

How to change DataGridViewAutoSizeColumnMode dynamically in c#

I have Master form and it displays Purchase Register,Invoice Register,Purchase Return and Sales Return details in DataGridView according to the parameter of constructor passed. But there is a problem ...
1
vote
1answer
58 views

How to stop c#2.0 race condition occuring when spawning a new thread before the old one is finished?

I'm implementing a printer queue to process GDI conversion in c#2.0. The jobs to process are added by a main thread, which sets up a thread per printer to process these jobs. After all the jobs are ...
0
votes
1answer
68 views

C# Insert all rows or none?

I have done simple My sql transactions. But Is there a way to make transactions through c# ? Example: Insert all rows from a file or never insert anything. Are there any examples or directions for ...
1
vote
1answer
114 views

Converting XML into a c# object

I have am trying to create a class which gets a small xml file from a directory and makes it into a object, I always have problems with attributes. I would like the class to have a list of dimensions ...
1
vote
2answers
63 views

Detect trust level

How can a .NET application detect the trust level in which it is running under? Specifically, I'm wanting a way to do something like if (RUNNING IN GREATER THAN MEDIUM TRUST) { // set private ...
2
votes
1answer
128 views

List of arrays sorting

I have a list of <string[]>. Added items would look like this list.Add(new string[]{"1", "A", "333", "666", "16.02.2013 03:00"}); list.Add(new string[]{"2a", "A", "333", "666", "16.02.2013 ...
0
votes
0answers
67 views

How to edit a listviewitem in separate user control and then update the corresponding item in listview using c# in winforms?

I have this scenario. I am developing a winform app. My main form has 3 different panels. Panel1 for various inputs, Panel2 for MenuCategory buttons & Panel3 contains SelectedMenuItem List (a ...
0
votes
0answers
34 views

MissingMethodException on WinCE 5

I have two classes and both are implemented as singleton ... maybe not the nicest architecture but that should'nt matter so far. This is how I´ve implemented the two singletons: private static ...

1 2 3 4 5 27