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


Tag filtered by:  C#1.0 [x]
Answer 10 May 2013   license: CPOL
/*****************************...
Tip/Trick 9 May 2013   license: CPOL
Versioning file inclusion JavaScript by date of last modification
Answer 7 May 2013   license: CPOL
There will be a web.config/app.config file existing on that application. Check that.That is xml file usually contains all the configuartion information for the application.You will find the key CheckPassword inside AppSettings tag under parent tag configuration inside that file something...
Answer 7 May 2013   license: CPOL
With this code you can read the variables of your program that is saved in the web.config or app.config.you can access to it from all forms.
Question 6 May 2013   license: CPOL
In my new project they have used one code likestring A = System.Configuration.ConfigurationManager.AppSettings["CheckPassword"];What is the use of this code? why the are using this?What could be the use of this code?
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.
Tip/Trick 30 Apr 2013   license: CPOL
In the article I want illustrate how to hosting windows form in windows user control
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
Answer 23 Apr 2013   license: CPOL
Hi kanamala subin429,I assume that you need to split the data table into multiple tables. Here, you neded to take an data table array.This array has the advantage in the above scenario:- If the input data table has to be divided into unknown number of multiple tables, we can set the...
Answer 23 Apr 2013   license: CPOL
You can query your datatable like this:var tableWhereParentIdIsOne = MyDataTable.AsEnumerable().Where(r => r.Field("ParentId") == 1).CopyToDataTable();You can query your datatable using multiple where statements, sorting etc.DataTable tbl = new...
Answer 23 Apr 2013   license: CPOL
It looks a pretty simple task:Create a new output table.Read all the the input table, row by row. For each row: if the third field is 0 then create a new table (and discard the read row).if the third field is NOT 0, insert the read row into the current output table.
Answer 23 Apr 2013   license: CPOL
string sql = ""; sql = "select * from table where parentId =0 "; sql = sql + " select * from table where parentId =1 "; sql = sql+ " select * from table where parentId =5 "; sql = sql+ " select * from table where parentId =8 "; DataSet...
Question 22 Apr 2013   license: CPOL
I have a Datatable like this Id Name ParentId -------- -------- -------- 1 AA 0 2 BB 1 3 CC2 1 4 DD 1 5 EE 0 6 FF 5 7 GG ...
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.
Answer 7 Apr 2013   license: CPOL
refer following link it will help u http://csharp.net-informations.com/crystal-reports/csharp-crystal-reports-export-pdf.htm[^]
Question 7 Apr 2013   license: CPOL
i want to export crystal report to pdf i want to display i am getting error Invalid report file path. while exporting i am using this code protected void Button2_Click(object sender, EventArgs e) { string query; // string q = Request.QueryString["q"]; ...
Answer 5 Apr 2013   license: CPOL
Hi Sharath,As ThePhantomUpvoter suggested look into threading. I'd recommend Asynchronous programming or Background Workers too. You should be getting a fair knowledge about each of these by reading below links. Pick 1 to your liking :)Threading C#[^]Calling Synchronous Methods...
Question 4 Apr 2013   license: CPOL
Hey!I'm newbie to programming. My new program has 4 functions Lets say funcA(),funcB(),funcC() and funcD(). funcA() is used to read serial port. funcA() constantly reads a status of certain device and status becomes YES funcA() calls funcB(),funcC() and funcD() respectively. funcB(),funcC()...
Answer 2 Apr 2013   license: CPOL
There would be some task where we need to Get PDF Format Document from html.Following code is written under the button_click Event. protected void btnExportPDF_Click(object sender, EventArgs e){ Response.ContentType = "application/pdf"; ...
Answer 31 Mar 2013   license: CPOL
Thank you, jitusahu,The code is working divToPdf.RenderControl(hw);Already I have written the same code in my script but I have placed it before getting the datasource. Now moved it before StringReader command and its working.
Answer 31 Mar 2013   license: CPOL
http://www.aspdotnet-suresh.com/2011/04/how-to-export-gridview-data-to-pdf.html[^]
Question 31 Mar 2013   license: CPOL
Hi All,This is Arun from chennai. I m doing a project to export the data from Gridview to PDF. Everything was fine and a new pdf document has been opened whenever I click the PDF image but there was no records displayed in it.I have 15 records in Gridview and those records have displayed...
Catalog 29 Mar 2013   license: Commercial
Develop Windows shell extensions including context menu, property sheet, infotip, thumbnail, icon, overlay icon, drag-drop extensions, etc with EZShellExtensions.Net. Also supported are Active Directory extensions and IE toolbands and horizontal/vertical explorer bars.
Article 28 Mar 2013   license: Public Domain
A collection class providing data virtualization with large data sets.
Answer 26 Mar 2013   license: CPOL
All you need to do is put a hyperlink to the pdf file and set the target="_blank" but depending on the browser it may open in a new window or a new tab.
Question 26 Mar 2013   license: CPOL
I wanna add one link in my asp page. While clicking on page it should open one pdf file in new tabHow can i do this?Please help me
Answer 25 Mar 2013   license: CPOL
Refer following thread:How to run a Visual Studio application as 32-bit on a 64-bit machine[^]
Answer 25 Mar 2013   license: CPOL
You have to build Application by selecting Configuration Manager and Platform as x64. Build the application and run the same on 64 bit pc.
Question 25 Mar 2013   license: CPOL
I made an application using vs2005 that is 32 bit. This application does not run in 64 bit operating system. How to solve this problem?
Article 24 Mar 2013   license: CPOL
A beginner's guide to talking like a computer.
Catalog 21 Mar 2013   license: Limited Time Trial
Aspose.OCR for .NET is a character recognition component that allows developers to add OCR functionality in their web & Windows applications & web services. It allows to extract text from images easily.
Catalog 21 Mar 2013   license: Fully Function Evaluation version
Aspose.Total is a suite of 11 powerful .NET components including Word, Excel, PowerPoint, Editor, Project, PDF, Flash, Charting, Email, Barcode creation, Ad hoc query generation, Recurrence patterns and Network protocols.
Catalog 21 Mar 2013   license: Limited Time Trial
Aspose.Words is a .NET word processing component to read, write, modify & convert Word documents without using MS Word. It supports EPUB, OOXML, DOCX, DOC, WordML, ODT, XPS, HTML, MHTML, XHTML & PDF formats with rendering, printing & imaging features
Catalog 21 Mar 2013   license: Limited Time Trial
Aspose.Cells is a .NET component for spreadsheet reporting. It supports formula calculation engine, pivot tables, VBA, workbook encryption, spreadsheet formatting, formulae, functions, drawing objects and allows saving Excel file into other formats.
Catalog 21 Mar 2013   license: Limited Time Trial
Aspose.Pdf is a .Net Pdf component for creation & manipulation of Pdf docs without using Adobe Acrobat. It supports form field creation, PDF compression, table creation & manipulation, graph objects, custom fonts, import or export PDF form data etc. Create PDF by API, XML templates & XSL-FO files.
Catalog 21 Mar 2013   license: Fully Function Evaluation version
Aspose.Slides is a .NET component to read, write and modify a PowerPoint document without using MS PowerPoint. PowerPoint versions from 97-2007 and all three PowerPoint formats: PPT, POT, PPS are also supported. Also save PowerPoint slides into PDF.
Question 17 Mar 2013   license: CPOL
hi friends,am using visual studio 2008 sql server 2008i have taken a host godaddy account in that i have added my domain in the root directory i have uploaded my project unfortunately my website is not working its showing 500 server error i will show my web config file i have...
Question 15 Mar 2013   license: CPOL
Hi Guys,Can anyone please help me to enable drag n drop on my form to make a template for crystal reports.I have been ordered to add controls like image, shapes control and some control to type text.Any suggestion would be surely appreciated. Akky
Catalog 14 Mar 2013   license: Commercial
EZNamespaceExtensions.Net is a framework for fast, painless and easy development of Explorer namespace extensions in .Net. Namespace extension development is notorious for its difficulty, subtleties and for the sheer amount of time that is required.
Question 13 Mar 2013   license: CPOL
I want to export data in to excel from grid. My grid contains image.Am using the following code, private void CreateXL() { Response.Clear(); Response.AddHeader("content-disposition", "attachment;filename=xxxxxxxt.xls"); Response.Charset = ""; ...
Answer 13 Mar 2013   license: CPOL
Hi Kavitha,I think the below link will solve your problem. Take a look into that.http://www.aspsnippets.com/Articles/Export-GridView-with-Images-to-Word-Excel-and-PDF-Formats-in-ASP.Net.aspx[^]Regards,Manoj
Answer 12 Mar 2013   license: CPOL
Will do in 2 steps1)You need to save image url in database and same image you need to save in your project folder using property FileUpload1.SaveAs(strSavePath) where fileUpload1 is the fileupload control and strSavePath is the variable where you assigned the path where you want to save the...
Question 12 Mar 2013   license: CPOL
Hi, I want to show one image inside my datatable. Am using code, dr = dt.newrow(); dr[0]= dt.addrow(dr);How can i do this?Here am checking some values, For example the value in any cell is greater than 50 the it should show one...
Answer 12 Mar 2013   license: CPOL
just create a Image type cell with in the grid and then provide image source to that cell when ever you want to show image of up arrow. I think in that way you can achieve to show image but not storing them in DB even if you binding gridview from dataset table.
Answer 12 Mar 2013   license: CPOL
Store image path in database... and take image control in your gridview, when you bind the gridview the bind the image path to the ImageUrl Property of image control, it will show image in gridview.
Article 12 Mar 2013   license: CPOL
A tutorial on how to create a Multiple-Selection ComboBox for Silverlight

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


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