본문 바로가기

분류 전체보기590

Adding Images dynamically at runtime in Crystal report 검증 되지 않음 Method I: Using recordset 1. Add a recordset and add a table in that. Add a column of System.Byte[] (Only System.Byte is available in the data type of data Table, Manually add the System.Byte[] in that. System.Byte not allowed for images).Then use the below code 2. Design the report with that dataset. You can add this System.Byte[] column as part of your main data table which have the a.. 2009. 5. 13.
CrystalReport 에서 TextObject 사용하기 TextObject text; text = CrystalReportSource1.ReportDocument.ReportDefinition.ReportObjects["text1"] as TextObject; text.Text = "dfd"; 2009. 5. 13.
CrystalReport db Connection 연결과 파라미터 넘기기 //TableLogOnInfo객체생성 CrystalDecisions.Shared.TableLogOnInfo cryLogonInfo = new CrystalDecisions.Shared.TableLogOnInfo(); //계정정보설정 cryLogonInfo.ConnectionInfo.ServerName = "db"; cryLogonInfo.ConnectionInfo.Password = "1234"; cryLogonInfo.ConnectionInfo.UserID = "sa"; cryLogonInfo.ConnectionInfo.DatabaseName = "pubs"; //계정추가 CrystalReportViewer1.LogOnInfo.Add(cryLogonInfo); //로그인창 false 설정 Crystal.. 2009. 5. 13.
New Image Generator control in ASP.Net 3.5 New Image Generator control in ASP.Net 3.5 Introduction Storing images in database BLOB field and displaying it on aspx page is one of the common tasks we do in asp.net projects. Asp.Net itself does not have an in build control to bind the image stored in database. To display an image stored in database, we will write an HttpHandler which will fetch the image from database and do a binary write... 2009. 5. 13.