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


Tag filtered by:  .NET1.1 [x]
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.
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.
Answer 7 May 2013   license: CPOL
It is all about html and javascript. So there are lots of tab components written for .Net 1.0 or higher. This is a good example:Tab control for ASP.NET Applications[^]
Article 6 May 2013   license: BSD
A foray into the world of creating composite custom controls with design-time support.
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.
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[^]
Answer 6 Mar 2013   license: CPOL
It should work...The .NET Frameworks are backward compatible, so if the 3.5 or 4.0 framework is installed on the server, it will run applications that were designed for the 1.1 framework.You will need to install on the server the Crystal Reports redistributable. The installer is on your...
Question 6 Mar 2013   license: CPOL
Dear,We have one windows based application developed in visual studio 2003 and crystal reports are also included in it.On back end SQL server 2000 is used.Now, our client wants to migrate this application to Windows server 2008 R2 (64bit).We are wondering if..1. .This application...
Answer 5 Mar 2013   license: CPOL
The reason could be that you wrotexx.Tables["0"]instead ofxx.Tables[0]Difficult to say more, as the code you provided would not even compile.
Answer 5 Mar 2013   license: CPOL
The place where you are binding your dataset, put a break point and see. Your dataset is empty, that's why it cannot find table 0.For example if you are using a procedure to get the data and that you are binding to the dataset, then your procedure is not returning any row.
Answer 5 Mar 2013   license: CPOL
try this: DataSet dataSetObject = new DataSet(); sqlDataAdapterObject.Fill(dataSetObject); DataTable dataTableObject = dataSetObject.Tables[0].DefaultView.ToTable(true, "Fieldname");
Question 5 Mar 2013   license: CPOL
How can i sove th error :Cannot find table 0.? what could be the reason?getting error in this code,DataSet xxx= new DataSet();dt = xx.Tables[0].DefaultView.ToTable(true, "Fieldname"); Please help me.A big thanks in advance
Answer 5 Mar 2013   license: CPOL
Hi KavithaleYou have to remove the '=' in the for loop. b'cos "i" value is starting from 0. for example, if u have 10 records in a gridview. you have to consider 0 to 9for (int i = 0; i
Question 4 Mar 2013   license: CPOL
I want to check the values in grid row one by one.How can i do that?My grid contains one row and am adding rows using dr.add row but i need to check the each values in row for validation(Avoiding duplicate values)How can i avoid duplicate values?please share your logic and knowledge
Answer 4 Mar 2013   license: CPOL
foreach (GridViewRow gr in yourGrid.Rows) {//Your validation code in add Button}
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
Answer 14 Jan 2013   license: CPOL
SampleIn your case you will have to do the same thing over and over for each element on your array of script url. Next, lets load jquery from the document onload event
Article 10 Jan 2013   license: CPOL
This is all about Task list window which is helpful in managing our comments within the code.
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?
Answer 30 Dec 2012   license: CPOL
Hi,Try the following,http://stackoverflow.com/questions/10757047/copy-a-table-row-from-one-table-to-another-using-jquery[^]
Question 26 Dec 2012   license: CPOL
hi to allI have two html tablesin one table i have a checkbox in every rowmy aim is selected rows move to another table..pls help me..
Article 18 Dec 2012   license: CPOL
Using asynchronous progress bars on your form from start to finish
Question 17 Dec 2012   license: CPOL
hi to all,I want to add scripts dynamically...but scripts not worked for me..plz help me..function IncludeScritps() {var scrpt =...

Page 1 of 85
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