error occured for me in online : File or assembly name CrystalKeyCodeLib, or one of its dependencies, was not found. how to upload assembly name CrystalKeyCodeLib in online.
shanthi jothi
Posts
-
crystal report -
Remove SpaceThankyou very much
-
Remove SpaceHi, How to remove the blank spaces in middle in the string using asp.net 2.0 Example Reminder 1 replace Reminder1
-
Rad EditorRadEditor1.Html="";
-
Rad EditorHi, If am clear the text in textbox means TextBox1.Text=""; and how to clear the rad editor text.
-
Regular Expression ValidationHow to validate pin code of india and fax through regular expression validator.
-
Control [modified]hi, I am Talking first i have send the question in new message. Next the question display in the table and you are replay answer to see me in the same page.and question under answer in our codeproject.
thankyou.
modified on Tuesday, December 9, 2008 2:45 AM
-
ControlHi, Which Control you are use in codeproject FAQ. Please replay. Thankyou.
-
GirdviewHi, Girdview paging with checkbox I have select the items in gridview checkbox.the selected items are list in another gridview.Please help me.How to solve this task.
-
ErrorHi, I have create chart in excel for grid data in asp.net 2.0. my code is Dim xlWorkBook As Excel.Workbook Dim xlWorkSheet As Excel.Worksheet xlWorkBook = New Excel.Application().Workbooks.Add(Missing.Value) xlWorkBook.Application.Visible = True xlWorkSheet = xlWorkBook.ActiveSheet ' Gets the dataset containing the data 'ds4 is gridview dataset Dim dsData As DataSet = ds4 Dim i As Integer = 2 ' Outputting the fieldnames in pink bold color xlWorkSheet.Cells(1, 1) = "Student ID" xlWorkSheet.Cells(1, 2) = "Student Name" xlWorkSheet.Cells(1, 3) = "Maths" xlWorkSheet.Cells(1, 4) = "science" xlWorkSheet.Cells(1, 5) = "Total" xlWorkSheet.Range("$A1:$E1").Font.ColorIndex = Excel.Constants.xlColor1 xlWorkSheet.Range("$A1:$E1").Font.Bold = True ' Outputting the data For Each dr As DataRow In dsData.Tables(0).Rows xlWorkSheet.Cells(i, 1) = dr(0) xlWorkSheet.Cells(i, 2) = dr(1) xlWorkSheet.Cells(i, 3) = dr(2) xlWorkSheet.Cells(i, 4) = dr(3) ' Building the formula for calculating the sum xlWorkSheet.Cells(i, 5).Formula = "=SUM($C{0}:$D{0})".Replace("{0}", i.ToString()) ' Going to the next row i = i + 1 Next ' Auto fit the columns xlWorkSheet.Columns.AutoFit() ' Generating the graph Dim chart As Excel.Chart chart = xlWorkBook.Charts.Add() With chart .ChartType = Excel.XlChartType.xlColumnClustered .SetSourceData(xlWorkSheet.Range("A1:E11"), 2) .HasTitle = True .ChartTitle.Characters.Text = "Students' marks" .Axes(1, Excel.XlAxisGroup.xlPrimary).HasTitle = True .Axes(1, Excel.XlAxisGroup.xlPrimary).AxisTitle.Characters.Text = "Students" .Axes(2, Excel.XlAxisGroup.xlPrimary).HasTitle = True .Axes(2, Excel.XlAxisGroup.xlPrimary).AxisTitle.Characters.Text = "Marks" End With 'Catch ex As Exception ' Throw ex 'End Try the error is [IndexOutOfRangeException: Cannot find table 0.] Please help me
-
Export to excelHi, How to export datagrid datas in excel with chart format.
-
[Message Deleted][Message Deleted]
-
Validationhi, please tell me the validationexpression for validating the date (dd-mm-yyyy format ) Thank you.
-
Page size in wordHi, How to set the page size in word Response.ClearContent() Response.AddHeader("content-disposition", "attachment; filename=MyExcelFile.doc") Response.ContentType = "application/vnd.word" Dim sw As New System.IO.StringWriter Dim htw As New HtmlTextWriter(sw) Label1.RenderControl(htw) Response.Write(sw.ToString()) Response.End()
-
Export imageI can not did you.Please help me
-
Export imageHi, How to export image with table in asp.net to ms-word. Please send me reply. Thank you,
-
ErrorI am receiving this error when I try to run my application. XML Parsing Error: no element found Line Number 1, Column 1: The Line no :1 is ]]> Please help me how i am clear this error. Thank you.
-
[Message Deleted][Message Deleted]
-
Asp.net version conversion problemhi, I am convert in my project asp 1.1 to 2.0. if i am change in my asp 2.0 project that is a have add in one button control Protected Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click the error is has multiple definition with identical signtures. Please help me how i am add button in my project. Thank you,
-
ValidationHi, please tell me how to validate ” dd/mm/yyyy” date format using comparevalidator…