Get Info From GridView DB And Print It To PDF - Background Color For ITextSharp
Jan 22, 2012
I am making a page that can get some info from a DB from a gridview and then print it to a PDF file. But I am having problems with the background color. If I use this line of code
Code : cell.BackgroundColor = New Color(System.Drawing.ColorTranslator.FromHtml("#008000"))
Then i get this error : System.Drawing.Color' has no constructors
If i changes it to this code
Code : cell.BackgroundColor = System.Drawing.ColorTranslator.FromHtml("#008000")
Then I get this error: Value of type 'System.Drawing.Color' cannot be converted to 'iTextSharp.text.BaseColor'.
My code is: (the error is underline)
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim cmd As New OleDbCommand()
Dim myAdapter As New OleDbDataAdapter()
Dim myDataSet As New DataSet()
cmd.CommandType = CommandType.Text
cmd.CommandText = "select CustomerID,City,Country from customers"
[Code] .....
View 4 Replies
Similar Messages:
May 15, 2012
I found your tutorial online at[URL] .... and finally understand how to send content from a page to a .pdf .
In your tutorial you mention that you modified the iTextSharp Library DLL so the gridview would be rendered with all the background colors. How to modify that DLL. I really want my gridviews to all go to pdfs with pretty formatting, but can't figure out how or what to change?
The output in your sample is great, and would love to use it as a starting point to modify my gridviews.
View 1 Replies
Dec 20, 2010
im using styles to print a gray scale page (see style example) the page is well colored but if i try to print it ignore the background colors.How is it possible to indicate that the page must be printed as it looks on my monitor save for the body background color that would be white instead gray?
[Code]....
font-size:16pt; color:#656565; font-weight:bold; text-align:center; background-color:#dfdfdf; border:solid 1px #777
[Code]....
777;
View 5 Replies
Jan 27, 2010
I have the data in the tables. For some columns i have set the background coloe, but its not showing up in the print page.
How do i need to save the color at the back?
Code:
<td colspan="3" align="right" style="background-color: Gray; font-weight: bold">
<asp:Label ID="lbl_st" runat="server">
</asp:Label>
-
<asp:Label ID="lbl_end" runat="server"></asp:Label>
</td>
View 1 Replies
Oct 22, 2010
I'm having some trouble with editing a gridview row's background color when Editing it.
The thing is, I am using the RowDataBound event method to change e.Row.BackColor based on a criteria when displaying the report( 3 different colors depending on result ). For the rows that don't fall under that criteria, a GridView's property <EditRowStyle BackColor="#999999" /> is applied upon clicking the Edit button.
However, I can't seem to find a way to change the color of those that do fall under the criteria since RowDataBound seems to be called all the time, overriding any changes I make.
View 3 Replies
Jun 19, 2012
This is my grid view code
BorderColor="#919191" BorderStyle="Solid" BorderWidth="1px" GridLines="Both" HeaderStyle-BorderStyle="Solid" HeaderStyle-BorderColor="#919191" HeaderStyle-BorderWidth="1px" RowStyle-BorderColor="#919191" RowStyle-BorderStyle="Solid" RowStyle-BorderWidth="1px"
It is like this .....
View 1 Replies
May 7, 2015
How Coloring cells and rows in a Gridview using javascript with these examples of this page. url...
View 1 Replies
Apr 9, 2014
how to change backcolor of gridview In ModalPopupExtender
View 1 Replies
Jan 18, 2011
I m using this code
Menu menu = new Menu();
menu.MenuItemClick += new MenuEventHandler(menu_MenuItemClick);
menu.BackColor = System.Drawing.Color.AliceBlue;
But i want that background color of menu should be seprate two Different color red and AliceBlue
View 3 Replies
Jul 16, 2010
I have a GridView. In my RowDataBound event I add attributes for the mouse onclick event, which sets the row's background color to red when the row is clicked. This works. I have a button outside of the GridView. When I click this button, I want to read each row of the GridView, and if its background color is red I want to perform some processing on the row. I tried the following code and even when the row's background is red, I cannot get its background color (bgc is empty).
[Code]....
View 9 Replies
Jan 13, 2011
I am able to change the girdview caption in code like this:GridView1.Caption = "New grid title"But I can not find how to change the background color where this caption (in the entire girdviews heading).
View 4 Replies
Jun 20, 2012
i want to differentiate the row of gridview based on condition.
i have used template column in gridview .
eg
name rate
a 0 display the background of this row is red color
b 1000 display the background of this row is green color
c 500 display the background of this row is green color
View 1 Replies
Oct 23, 2010
How can I make the background color of a GridView cell dependent on the boolean value of field?
[Code]....
[Code]....
View 1 Replies
Jan 10, 2010
i want to add b.colr to gridview row
html code
<div>
View 9 Replies
May 7, 2015
I want a RowDataBound if the previous date in filed check in not found be red color
Like the date 10/10/2014 not found so 10/11/214 be red and how can i edit the date to be dd/mm/yyyy
Name Checkin Checkout Branch
450 10/6/2014 9:13:38 AM 10/6/2014 6:01:50 PM branch0
450 10/7/2014 9:16:34 AM 10/7/2014 6:44:21 PM branch0
450 10/8/2014 9:11:53 AM branch0
450 10/8/2014 6:03:25 PM branch0
450 10/11/2014 9:17:33 AM 10/11/2014 6:29:16 PM branch0 (red color )
450 10/11/2014 4:50:42 PM branch0
450 10/12/2014 9:09:38 AM branch0
View 1 Replies
May 20, 2010
I am pulling information from two different databases (structure is the same) and putting them into two datatables. The problem I am having is figuring how to merge the data togther in a single gridview and change cell background color for only the data in the second datatable.
View 4 Replies
Sep 15, 2013
In my asp.net+vb web I am using the below code to highlight the row...
If e.Row.DataItem("Auth") Is System.DBNull.Value <> True AndAlso e.Row.DataItem("Auth") > e.Row.DataItem("Held")
Then e.Row.BackColor = Drawing.Color.LightCoral
I want now only to give colour to the cell in the field and not the entire row ....
View 1 Replies
Aug 3, 2012
i have gridview in which i have a Image button with id (' ImageButton3 ') on click of which i want to hide that corresponding row , by first highlighting it by followed fadeIn effect ....
Here is code of gridview:
<asp:GridView ID="grid" runat="server" AutoGenerateColumns="False" CssClass="mGrid" ShowFooter="true"
AlternatingRowStyle-CssClass="altrow" DataKeyNames="productid" Width="100%" BorderWidth="0px"
AllowPaging="True" PagerStyle-HorizontalAlign="Center" PagerStyle-VerticalAlign="Middle">
<RowStyle Height="50px" />
[Code] ....
This is code for javascript:
<script type="text/javascript">
$(document).ready(function() {
$("[id*=ImageButton3]").live("click", function() {
$(this).closest("tr").hide();
return false;
});
});
</script>
But the code i am using only hide the row , i am not able to get the effects of fadeIn and highlighting ..
Also i want i know that am i using right code to hide gridview row ?
View 1 Replies
May 7, 2015
In my asp.net+vb web I was using this code to change row colour of gridview
Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
If e.Row.RowType = DataControlRowType.DataRow Then
If e.Row.DataItem("bloodgp") Is System.DBNull.Value <> True AndAlso e.Row.DataItem("bloodgp") Then
e.Row.BackColor = Drawing.Color.LightGreen
End If
End If
End Sub
Now I want to change the cell backcolour to red for those cells are blank ....
View 1 Replies
Jan 24, 2014
I have a grid(15 rows,8 columns) in which each cell contains a template field checkbox. When i checked it the current cell's background should change.
Problem:- Unable to find out particular cell.
View 1 Replies
Feb 15, 2014
I have a grid with 5 rows and 5 columns, All containing templetefield(Combobox)I am trying to set the background color of my grid cell(contain combobox) depending upon which item is selected. (again, dependent on item selection, so background color is not permanent). How can i achieve this?
View 1 Replies
Jul 14, 2010
I have a master page and set it's back ground color in the body tag <body style="background-color:Red">. Now that is fine for the Master page. How do I set the back ground color of the content page to a different color?
View 12 Replies
Jan 31, 2011
I have a web page that allows a user to view a pdf and print pdf. The print pdf is a copy of the display pdf and i am using ItextSharp to inject the javascript to allow auto printing. I have a method that allows a user to upload a pdf and it calls this method below to copy the display copy into a pdf. Both pdf's are then saved in the database. However , when a user goes to click on the print button on my web page they receive the following error "expected a dict object". below is my code that adds in the auto print, which works fine for me but not on my clients site.
I am doing anything wrong that could be corrupting the file. The original pdf content is passed in as a Binary Object. Also i am using ASP.NET MVC2.
MemoryStream originalPdf = new MemoryStream(Content.BinaryData);
MemoryStream updatedPdf = new MemoryStream();
updatedPdf.Write(Content.BinaryData,0, Content.BinaryData.Length);[code]....
View 1 Replies
Apr 2, 2013
I want to print one TexBox (TextMode = "MultiLine") to pdf with ITEXTSHARP !!
My problem is that when I print the textbox contained ,he displays contained in html forma
Here is my code printing
PdfPTable TblB = new PdfPTable(1);
float[] Awidthss = new float[] { 4f};
TblB.SetWidths(Awidthss);
PdfPCell B1 = new PdfPCell(new Phrase(10, " ", f3));
B1.BackgroundColor = new BaseColor(ColorTranslator.FromHtml("#e9e9e9"));
[Code]..
View 1 Replies
Jan 14, 2010
i have report which is of an .rpt report. i need to set the background color for the report but still by default it is showing me the white color
rptReportViewer.BackColor = System.Drawing.Color.FromKnownColor(selectedKnownColor);
Is there any other way i can define my background color for the reports[.rpt]
View 2 Replies