Skip to main content

Posts

Showing posts from August, 2014

rdlc serial no & page number

For Serial Number in rdlc report Follow this http://www.c-sharpcorner.com/UploadFile/a20beb/how-to-show-the-serial-number-in-reports-automatically-using/ For N/M page number in rdlc report follow This: http://stackoverflow.com/questions/4448549/how-do-i-get-page-numbers-to-appear-on-rldc-microsoft-reports-local-mode-when

kendo grid checkbox check validation

In the following above image i want to transfer from left side grid data to right side grid & only the selected grid item. I will check that - The left grid can check more than one checkbox - right side grid will check only one. - left & right side selection item will not same. Then all the selected check box in the left side will get for right side person for save or update as you want. Transfer button click: <button type="submit" class="btn btn-mini btn-primary" onclick="AccountsManagerTransferResponsiblity()"> <i class="icon-retweet"></i>Transfer </button> Script: function AccountsManagerTransferResponsiblity() { var gridData1 = $("#CustomerAccountManagerKendoGrid1").data("kendoGrid").dataSource.data(); var gridData2 = $("#CustomerAccountManagerKendoGrid2").data("kendoGrid").dataSource.data(); if (!CheckGr

Unable to find the report in the manifest resources. Please build the project, and try again.

After following the process If you are using your report class for your report then don’t convert the report in content. Then this problem will not arise again. Right click on your solution or crystal report folder. Go to Open Folder In File Explorer. Select your report. You have to choose only the rpt file not the cs file of your report. Copy the report & save it Desktop or another place. Now Delete the crystal report, If you are using source controller also delete from it. Now add the report as existing file where you save the rpt file, It will automatically generate it’s cs file. Now build & run your solution.

Crystal report formula for hiding page header or footer in last page

#Step:1 #Step:2 #Step:3 Please put this formual in Page Header or Page Footer->Section Expert-> Suppress PageNumber=TotalPageCount Hope it will help you.

Page wise total in Crystal Report

Create a formula field TOTAL1 and edit this code: WhilePrintingRecords; NumberVar total; total := 0; Place TOTAL1 in page header section. Create a formula field TOTAL2 and edit this code: WhilePrintingRecords; NumberVar total; total := total + CDbl ({field01}) where field01 is the field to summarize & CDbl is converting. Place TOTAL2 in details section. Create a formula field TOTAL3 and edit this code: WhilePrintingRecords; NumberVar total; Place TOTAL3 in page footer. you can also see This .