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


Tag filtered by:  .NET1.0 [x]
Answer 13 May 2013   license: CPOL
The problem is with objDataAccessUtilities.ExecuteDataReader(command); instead of this we have to useobjDataAccessUtilities.ExecuteNonQuery(command);
Answer 13 May 2013   license: CPOL
If you type "ORA-06550" in google (or any other ORA error) you'll get the explanation. In this case, not much of help as it seems to be a generic error. My guess is that it might be because you add prm3 twice (not sure though): //btw is "paramters" a typ-o ? ...
Question 13 May 2013   license: CPOL
In my code am getting following error.ORA-06550: line 1, column 7:PLS-00306: wrong number or types of arguments in call to 'SAVE_DATA'ORA-06550: line 1, column 7:PL/SQL: Statement ignoredWhat will be the reason for this?code am using is, List listparamters =...
Catalog 12 May 2013   license: Commercial
Unsurpassed Documentation Comment generation and updating for C#, Visual Basic, C++/CLI, C++, C, Java and UnrealScript code. Keep your comments readable and in sync with the code with a minimum of effort. Plus other coding utilities.
Article 12 May 2013   license: CPOL
.NET Framework Cultures with Culture Specific Formats and Mapping with SQL Server Language. CultureInfo, DateFormat, Number Format, Currency Format, Percent Format, Infinity Format etc.
Catalog 11 May 2013   license: Limited Time Trial
IncrediBuild is an easy-to-use platform for accelerating Windows-based processes through advanced Grid Computing technology. IncrediBuild speeds up Visual Studio and make based code builds as well as data builds, scripts and applications.
Article 8 May 2013   license: CPOL
This is an alternative for "XCrypt - Encryption and decryption class wrapper".
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.
Article 26 Apr 2013   license: MIT
Reflexil is an assembly editor and runs as a plug-in for Reflector or JustDecompile. Reflexil is able to manipulate IL code and save the modified assemblies to disk. Reflexil also supports "on-the-fly" C#/VB.NET code injection.
Tip/Trick 23 Apr 2013   license: CPOL
This tutorial explains how to send mails with attachments
Article 21 Apr 2013   license: MPL
A C# implementation of the Fortune algorithm to compute 2D Voronoi graphs.
Catalog 25 Mar 2013   license: Shareware
With the SDK/DLL,Developers can read barcodes regardless of orientation, skewing or flipping. Barcodes can be detected and read from specific areas of interest. and barcodes can be read from a variety of supported image file formats.
Catalog 21 Mar 2013   license: Fully Function Evaluation version
Aspose.Cells for SharePoint is a flexible solution for converting Excel documents into multiple document formats within MS SharePoint. Now convert documents right from the SharePoint document library into XLS, XLSX, CSV, HTML, ODS, PDF, XML & TXT.
Catalog 21 Mar 2013   license: Fully Function Evaluation version
Aspose.BarCode is a .NET component for generation and recognition of Linear and 2D barcodes on all kinds of .NET applications. It supports WPF with 29+ Barcode symbologies. It allows you to insert barcodes into PDF, Word & Excel and take image output in BMP, GIF, JPEG, PNG & WMF formats.
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.
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.
Answer 12 Mar 2013   license: CPOL
This should answer your question, in a step-by-step fashion:http://www.dotnetfunda.com/articles/article1084-saving-images-into-the-database-in-aspnet-and-displaying-to-the-gridview-.aspx[^]
Question 10 Mar 2013   license: CPOL
I need to show some values which i got from Database in my grid as below,Name ScoreMaths ScorePhysicsA 1 5B 2 6C 3 7D 4 8So i added new...
Answer 7 Mar 2013   license: CPOL
Add rowdeleting event.protected void gridview1_RowDeleting(object sender, GridViewDeleteEventArgs e) { int ID = (int)gridview1.DataKeys[e.RowIndex].Value; // primary key // you can write code here to delete record using ID// use sql query to delete data//e.g String strQuery =...
Answer 7 Mar 2013   license: CPOL
Hi,go through this-Gridview row Deleteing[^]the-gridview-fired-event-rowediting-which-wasnt-handled[^]
Question 7 Mar 2013   license: CPOL
I want to remove duplicate values from my gird row. For that am checking each row with the next row.If any match is there then it should remove that rowam using below code for removing row,Gridview1.DataSource=dt;GridView1.DataBind();If(//here am checking rows if any match found it...
Answer 25 Feb 2013   license: CPOL
Add a reference to the System.Numerics assembly, then add using System.Numerics; to the c# source and then declare your numbers using the type BigInteger instead of int.
Answer 25 Feb 2013   license: CPOL
No, the sizes of integers types are 1, 2, 4, 8, 16, 32, 64 or maybe 128 bytes…On the presentation of integer values, please see: http://en.wikipedia.org/wiki/2%27s_complement[^].This is by far the most usual representation. This article should explain everything to you.—SA
Question 25 Feb 2013   license: CPOL
Hi Experts,I have face many time a Question. why the Integer size is 2,147,483,647 .What numeric datatype we are using if the length of data is more then 80 characters.If you have any suggestion or Solution for that then pls share it.Thanks
Article 19 Jan 2013   license: LGPL3
RSS 2.0 framework implements the RSS 2.0 specification in strongly typed classes. The framework enables you to create and consume valid RSS 2.0 feeds in your code in just a few minutes.
Catalog 16 Jan 2013   license: Commercial
Crypto Obfuscator For .Net provides superior code protection, obfuscation and automatic exception reporting. It supports WinRT/Metro, WPF, Silverlight , WP 8/7. It supports XAP file and XAML/BAML obfuscation, MSBuild Integration and more!
Tip/Trick 15 Jan 2013   license: CPOL
Database driven N-Level Dynamic Menu Control using C#.NET and SQL Server with stylesheet CSS
Article 4 Jan 2013   license: CPOL
How to effectively build modular .NET applications of any size using messages, commands and components of MCM-Framework.Net?
Article 28 Nov 2012   license: CPOL
This article shows you how to design events for your classes.
Catalog 27 Nov 2012   license: Fully Function Evaluation version
Wijmo has full support for MVVM (Model View View-Model) development. We chose Knockout as our officially supported MVVM library. Wijmo has a Knockout Integration Library that provides seamless support for MVVM in every widget. We also included support for all jQueryUI widgets.
Article 21 Nov 2012   license: CPOL
An article clarifying the various ways of comparing two values for equality in .NET
Answer 7 Nov 2012   license: CPOL
private void TextBox_KeyPress(object sender, KeyPressEventArgs e){ if (e.KeyChar == '\r') { if (this.ActiveControl != null) { this.SelectNextControl(this.ActiveControl, true, true, true, true); } e.Handled = true; // Mark the event as handled ...
Catalog 1 Nov 2012   license: Fully Function Evaluation version
SpreadsheetGear 2012 enables ASP.NET, Windows Forms, WPF and Silverlight developers to easily take advantage of powerful Excel compatible reporting, dashboards, charting, spreadsheet controls, the fastest and most complete Excel compatible calculations and more.
Catalog 1 Nov 2012   license: Commercial
The Google Spreadsheet Data Provider for ADO.NET gives developers the power to easily connect .NET applications with real-time data from spreadsheets stored in Google Docs. The Google Spreadsheet Data Provider makes these Google Spreadsheets look like SQL tables in your apps.
Article 20 Sep 2012   license: MPL
IMAPLibrary supports the basic IMAP protocol functions to fetch messages from the mailbox.

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


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