Click here to Skip to main content
Page 1 of 230
Page Size: 10 · 25 · 50


Tag filtered by:  C#2.0 [x]
Answer 13 May 2013   license: CPOL
One of the way to do this is Converting your Image into Base64 String while sending and Convert Base64 String back to Image once retriwed on another Server.Have a look at below link for Converting Image to Base64 String and Base64 String to...
Question 13 May 2013   license: CPOL
Dear,In my application i need to transfer the images from one server to another server using Web Services, Please provide me the solution how to do...Thanks..
Question 13 May 2013   license: CPOL
Hello All,I am unable to delete a particular registry key from Win 7 64 bit. The deletion command result is successful but when i go and check in registry, the entry exists.In Win7 32 bit and other OS, it runs fine-deletes successfully. The problem is in 64 bit OS.Below is the code...
Answer 12 May 2013   license: CPOL
Try it with this version of the delete[^], and catch any exceptions that are raised.
Article 12 May 2013   license: CPOL
CSharp version of a flyout toolbar like we can find in CAD applications
Tip/Trick 12 May 2013   license: CPOL
A basic yet generic state machine implementation
Tip/Trick 11 May 2013   license: CPOL
A solution for monitoring Events called during test
Answer 10 May 2013   license: CPOL
/*****************************...
Tip/Trick 9 May 2013   license: CPOL
How to bind Derived Type in MVC View
Tip/Trick 9 May 2013   license: CPOL
Versioning file inclusion JavaScript by date of last modification
Question 9 May 2013   license: CPOL
I have a textbox in my search ASP.NET page to refine the user's search . Those are like title, subject, author,etc.,I have done the search by using title,but i need to search by subject, author in the same textbox.. This is my problem..
Question 7 May 2013   license: CPOL
I have created a windows service application with C# with .Net 2.0, and added a web service ashttp://localhost/postIncidents.ws.php?wsdlIt has the method "ReportIncident". I checked the windows service in local environment. It worked. Before I deploy it I added below code to get the...
Article 6 May 2013   license: CPOL
An introduction to the capabilities of Scryber for creating dynamic PDF documents with data sources and style.
Answer 5 May 2013   license: CPOL
Hi , i want code in C#. how to detect the usb device .if conneted USb .In which port USb pluged
Answer 3 May 2013   license: CPOL
Sounds like following should help: C# - Change width of scrollbars[^]
Question 3 May 2013   license: CPOL
HiI used one panel control with dynamically load some controls (like as grid format of data). so i want to increase panel scroll bar width. in windows application using c#.
Article 2 May 2013   license: CPOL
Imagine connecting church worship attenders with real-time content.
Catalog 2 May 2013   license: Commercial
Help authoring tool. Create CHM help files, manuals in PDF, Web help, RTF files, QtHelp, JavaHelp, EPUB and MOBI and even publish to WordPress. WYSIWYG editor with spellchecker and styles. Screenshot capture and image editor.
Question 2 May 2013   license: CPOL
Hi all,i want to use Bar chart and pie chart controls in my application for generating reports and i am using visual studio 2005 (frame work 2.0).so, pls help me that how to this controls and where from i can get.because these controls are not available in toolbox.Thanks,Raj
Answer 1 May 2013   license: CPOL
Hashtable ht = new Hashtable();ht.Add("0", "One");ht.Add("1", "Two");ht.Add("2", "Three");ht.Add("3", "Four"); int i=1;private void button1_Click(object sender, RoutedEventArgs e) { string in="\""+i+"\""; txtObjects.Text =i.tostring(); ...
Answer 1 May 2013   license: CPOL
You may iterate on Values[^] collection.
Answer 1 May 2013   license: CPOL
Quote:Hi,Generally Hashtable is used to store data in the format of Key and Value pairs.Assume that we are going to add data to Hashtable like this.Hashtable ht = new Hashtable();ht.Add("1", "One");ht.Add("2", "Two");ht.Add("3", "Three");ht.Add("4", "Four");The elements...
Question 1 May 2013   license: CPOL
Hi,how to view the data one by one in hashtable. for example when i click the "Next" button then show data one by one.
Article 1 May 2013   license: CPOL
This article talks about a small project that presents the idea of having a gridview which facilitate the addition and removal of rows dynamically at run time.
Article 1 May 2013   license: Ms-PL
YouTube™ video player API provides variety of customization features (ASP.NET, C#)
Question 30 Apr 2013   license: CPOL
How to get Client System Login from asp.net web application. I have followed.string uname = Request.LogonUserIdentity.Name; I i execute this in my local machine it is retrieving current user name, After deploying in Server, it is returning only Server Logged in Username.Server:...
Tip/Trick 30 Apr 2013   license: CPOL
In the article I want illustrate how to hosting windows form in windows user control
Question 28 Apr 2013   license: CPOL
How to create dynamic controls with event handling in WinCE 6.0 application using C#.NET?[EDIT]SHOUT removed[/EDIT]
Article 26 Apr 2013   license: CPOL
When you need to prompt user to close certain aplications on install/uninstall.
Answer 26 Apr 2013   license: CPOL
You pretty much don't have to do anything with most scanners: plug it in, scan a code and it will send the article number as if it had been typed on the keyboard. So as long as your user input focus is on the textbox, it will be typed in there without any additional code.If you want more,...
Question 26 Apr 2013   license: CPOL
hi, c# programmer, i want a tutorial step bay step for how to learn a barecode of product from machine barcode scanerr and show barcode chifree in textbox orr anyy atherr and tnx
Question 26 Apr 2013   license: CPOL
can any one please help me to find how to use rest api service to upload file(byte files) from a client to server .
Answer 25 Apr 2013   license: CPOL
This code will edit your app.config:var cfg = ConfigurationManager.OpenExeConfiguration(Assembly.GetExecutingAssembly().Location);cfg.AppSettings.Settings.Add("test1", "test2");cfg.Save();Make sure you check tha correct config file when you look for changes. Not the one in your project,...
Answer 25 Apr 2013   license: CPOL
hi try this,Key = txtKServerName.Text; Value = txtVServerName.Text; XmlNode appSettingsNode = xmlDoc.SelectSingleNode("configuration/appSettings"); try { if (KeyExists(Key)) { ...
Answer 25 Apr 2013   license: CPOL
Hi,try like this..// change the UpdateConfig function like below.private static void UpdateConfig(string key, string value){ try { Configuration configFile = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); ...
Question 25 Apr 2013   license: CPOL
I've a application in which I want to update app.config. And then read from it. But it's not happening, I'm getting the prior value not the updated value. My code like this :class Program { static string str= ConfigurationManager.AppSettings["UserID"]; // it returns "hello" ...
Answer 23 Apr 2013   license: CPOL
Also a ComboBox has a SelectionStart and a SelectionLength property. Hence you can work with Text.Substring and get the parts of the text you need.
Question 23 Apr 2013   license: CPOL
I need to get read a deselect text from a full text in a combobox where some text are selected. Suppose the searching text is emergency where emer is not highlighted but gency is highlighted. So I need to read this deselect text emer to perform operation. Help me plz.Thanks in advance.
Answer 19 Apr 2013   license: CPOL
First thing you should understand is: PDF is not a part of W3 standards. Even though many browsers support DPF viewers, it is done via plug-ins and never guaranteed.As an ASP.NET developer, you should never assume that the user can view the PDF document in browser, but the browser will...
Question 19 Apr 2013   license: CPOL
Hi All, In our web application we are using activePDF toolkit (3rd party component) to fill up carrier forms on the fly which are PDF files. The output file processed by the above library works fine when opened with adobe reader 8, 9 and10 on end user’s browser (IE); however, it...
Tip/Trick 19 Apr 2013   license: CPOL
Re-sizing images to equalize the width & height
Question 18 Apr 2013   license: CPOL
Hello All,I have an intranet web application that will send email notifications to Users(top level), if there is any registration or any requests needs to be approved.The web application may not be available to this user when he is outside. With in this email, the user should accept...
Answer 17 Apr 2013   license: CPOL
public void read(int lineNumber) { int counter = 0; string line; System.IO.StreamReader file =new System.IO.StreamReader("D:\\test1.txt"); string newstr = null; while ((line = file.ReadLine()) != null) { ...
Answer 17 Apr 2013   license: CPOL
ITs pretty simple. Read the file into a String array:http://msdn.microsoft.com/en-us/library/s2tte0y1.aspx[^]Do the modifications on the array, meaning RemoveAt command:http://msdn.microsoft.com/en-us/library/ms132414.aspx[^]And Write the newly modefied...
Question 17 Apr 2013   license: CPOL
Hello Guys,I am stuck in a small & simple problem of clipping a log file content.And this is URGENT!!Problem:I need a code in C# (2.0 framewrk) by which i can delete specific lines from a log file based on line number. I searched over net but everywhere i am getting solns based on C#4.0...
Question 17 Apr 2013   license: CPOL
hello,my problem is i want to take the values(numbers) that are inputted by user in certain part of the grid,sum all the inputted numbers and display in the textbox/label by button click event?any solution ?? thanks in advance.
Question 17 Apr 2013   license: CPOL
I want to get the list of installed printers when i am clicking the button in sharepoint 2010.I have written the code in C# application for getting printers list.In this case I am getting all installed printers in the list.Please find the below code which I have written in C#...

Page 1 of 230
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web01 | 2.6.130513.1 | Last Updated 13 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid