Not sure that the DLL has to be registered. What I did was to put the DLL in the Bin folder then referenced it.
Then in your .cs file you use
using iTextSharp.text;
using iTextSharp.text.pdf;
That should be it.
Patrick
I use this method to get a button in a gridview, should be much the same for a checkbox, let see...
<script runat="server">
void chkBox1_CheckChanged(object sender, EventArgs e)
{
CheckBox cb = (CheckBox)sender;
GridViewRow grdRow = (GridViewRow)cb.Parent.Parent;
//get the row...
I had a requirement for something like this some time back. My solution was to add a checkbox on each row, user could then select as many as they needed.
Ah, yes. Place a checkbox in the grid, set index as 0 so it's an array. Then for each row you add to the grid add a checkbox using: Load...
Maybe another idea is to use temporary tables within sql server (assumption).
The idea is this: Each user had a unique ID whcih can be the table name; for instance: joebloggs runs a query on your database so in code you would have:
SELECT * INTO #joebloggs WHERE... and then the rest of your...
I think what you need is something like this ...
First get the date
XmlNode nd = xDoc.SelectNode("//G_NEW_DATE/NEW_DATE")
This will return the node, so just use toString() to get the value and compare. Once you have that and checked it use the same method to get the day/month/year
Hope...
SELECT * INTO <Table2> FROM <Table1>
Will create table2 and data.
If the tables already exists then the way to do it is:
INSERT INTO <Table2> (<FIELD_LIST>) SELECT * FROM <Table1>
Patrick
I wonder if SQLDMO or SQLSMO will give you the information you need?
Using these you can enumerate through the servers/databases and there may be a property that will give you the version of each database.
Patrick
Ok, I'm confused (I think).
What you have will work and return the version, I get 10.0.1600.22 when I run it.
So, then in VB you're going to do some conditional branching based on the version?
Yes/No/Maybe ??
Patrick
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.