Please help me with the following using the 5.0.2 1-How to write automatic page numbers in PDF files generated? 2-How to write footers? Kindly point me to an example that really works. I have seen several that did not work. Thanks EK
ekareem
Posts
-
How to write automatic page numbers in PDF files generated using iTextSharp -
Legal issue - Using controls from Code Project in commercial applicationsHi I want to use one of the controls in the Code Project in a commercial appliction. I read the license but I don't get the legal details. I understood that I can use the control as long as I mention the copy right (or at least that is what I gathered). My questions are: 1- Do I have to get permission from the author first to use his/her control or not? 2- Are there other obligations on me towards any other party? Thanks much. EK
-
Drag-And-Drop Binding - Simple QuestionHi I have the following questions with regards to drag-drop type of databinding in windows forms. Platform: windows forms data bound form with the database as a source... Bound column is defined as Identity in target SQL Server database The databinding is created by draging-droping the datasource Binding Navigator is automatically created Senario: When clicking the "BindingNavigatorAddNewItem" (the one with +) the bound text field to the identity column is incremented by 1. Qustions: Q1 - Is there a row added after to the underlying datatable after the click? Is the row added to the datatable only when you press the save button? Q2 - Where is the code that increments this value? Q3 - How to control the process of incrementing the value and showing it on the textbox? For example, I tried to create an event handler for this button but as soon as the code gets to this handler, the increment would have been completed already. I have also tried to use the BindingSource.CancelEdit() but that did not work either. Thanks for your help.
-
How to change the color of the group box border line?Thanks.
-
How to change the color of the group box border line?How to change the color of the group box border line? I see no property that does this. Thanks.
-
Class inheritance compile errorThanks much.
-
Class inheritance compile errorCould someone point out why there is an error here? Thanks.
class BankAccount { decimal m_ID; public BankAccount(string ID) { m_ID = 0; } } class SavingsAccount : BankAccount { decimal m_ID; //***Compile Error at the following line: No overload for method 'BankAccount' takes '0' arguments public SavingsAccount(string ID) { m_ID = 0; } }
-
Services - prevent from being stopped?Hi, I would suggest a different approach. Let the service start a separate program with the file name as a parameter. Let that program deal with the database as long as it needs to. By doing this your service can do its new function regardless of the the file size. Of course I am assuming that a service can launch an application - I may be wrong. Regards Ekareem.
-
Calling Non-Com functions from VB.NETHi, I need to call a function in a library that is niether a COM or .NET. (Similar to API but not an API function). I don't need to pass parameters to this function. What do I need to do exactly? Do I need to add a reference? (I guess not). How will the run-time know where it is? Regards, Ekareem