473,545 Members | 2,041 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

GridView RowCommand Not Firing

AG
I have a gridview that I bind to a List(of Type) at runtime.
Not using a datasource control.
The gridview has a template column with an imagebutton whose commandname is
set to 'Delete'.
The footer template has an commandbutton with the commandname set to
'Insert'.
Both buttons cause postback, however the RowCommand event does not fire.

How can I get the rowcommand to fire?

TIA
--

AG
Email: discuss at adhdata dot com


Oct 11 '06 #1
13 41977
On Wed, 11 Oct 2006 09:48:51 -0400, "AG"
<NO**********@n ewsgroups.nospa mwrote:
>I have a gridview that I bind to a List(of Type) at runtime.
Not using a datasource control.
The gridview has a template column with an imagebutton whose commandname is
set to 'Delete'.
The footer template has an commandbutton with the commandname set to
'Insert'.
Both buttons cause postback, however the RowCommand event does not fire.

How can I get the rowcommand to fire?

TIA
Here is some sample code that does work with the linkbutton.

<asp:GridView ID="GridViewAva ilablePictures" runat="server"
AutoGenerateCol umns="False" DataKeyNames="i d"
DataSourceID="O bjectDataSource AvailablePictur es"
OnRowCommand="G ridViewAvailabl ePictures_RowCo mmand">
<Columns>
<asp:TemplateFi eld>
<ItemTemplate >
<asp:LinkButt on ID="LinkAssignB utton" runat="server"
CommandName="As sign"
Text="Assign Picture To Session" Visible="true">
</asp:LinkButton>
<br />
<asp:Label ID="Label1" runat="server" Text='<%#
Bind("FileName" ) %>'></asp:Label>
</ItemTemplate>
</asp:TemplateFie ld>
<asp:TemplateFi eld HeaderText="id" InsertVisible=" False"
SortExpression= "id">
<ItemTemplate >
<asp:Image ID="Image1" runat="server"
ImageUrl='<%# "~/DisplayImage.as hx?sizex=120&pi ctureid=" + Eval("id")
%>' />

</ItemTemplate>
</asp:TemplateFie ld>

<asp:BoundFie ld DataField="Desc ription"
HeaderText="Des cription" SortExpression= "Descriptio n"
Visible="False" />

</Columns>
</asp:GridView>
Peter Kellner
http://peterkellner.net
Oct 11 '06 #2
AG
Peter,

Thanks for the quick reply.
If I use a datasource control as in your sample, the rowcommand event will
fire.
I am not using a datasource control, but setting the datasource of the
gridview to a List(of Type) at runtime.

--

AG
Email: discuss at adhdata dot com

"PeterKelln er" <pk**********@7 3rdstreet.comwr ote in message
news:mv******** *************** *********@4ax.c om...
On Wed, 11 Oct 2006 09:48:51 -0400, "AG"
<NO**********@n ewsgroups.nospa mwrote:
>>I have a gridview that I bind to a List(of Type) at runtime.
Not using a datasource control.
The gridview has a template column with an imagebutton whose commandname
is
set to 'Delete'.
The footer template has an commandbutton with the commandname set to
'Insert'.
Both buttons cause postback, however the RowCommand event does not fire.

How can I get the rowcommand to fire?

TIA

Here is some sample code that does work with the linkbutton.

<asp:GridView ID="GridViewAva ilablePictures" runat="server"
AutoGenerateCol umns="False" DataKeyNames="i d"
DataSourceID="O bjectDataSource AvailablePictur es"
OnRowCommand="G ridViewAvailabl ePictures_RowCo mmand">
<Columns>
<asp:TemplateFi eld>
<ItemTemplate >
<asp:LinkButt on ID="LinkAssignB utton" runat="server"
CommandName="As sign"
Text="Assign Picture To Session" Visible="true">
</asp:LinkButton>
<br />
<asp:Label ID="Label1" runat="server" Text='<%#
Bind("FileName" ) %>'></asp:Label>
</ItemTemplate>
</asp:TemplateFie ld>
<asp:TemplateFi eld HeaderText="id" InsertVisible=" False"
SortExpression= "id">
<ItemTemplate >
<asp:Image ID="Image1" runat="server"
ImageUrl='<%# "~/DisplayImage.as hx?sizex=120&pi ctureid=" + Eval("id")
%>' />

</ItemTemplate>
</asp:TemplateFie ld>

<asp:BoundFie ld DataField="Desc ription"
HeaderText="Des cription" SortExpression= "Descriptio n"
Visible="False" />

</Columns>
</asp:GridView>
Peter Kellner
http://peterkellner.net

Oct 11 '06 #3
Hello AG,

Based on my experience, no matter we bind GridView through
DataSourceContr ol or normal data object collection, the RowCommand and
other Row based postback event(RowUpdati ng, RowEditing .... ) should work.
For your scenario, I think it is likely a page or control specific issue.
Here is a smiple test page with a GridView that bind to a custom class
Array, and I use a submit button and image button in the TemplateColumn,
also a submit button(with CommandName="In sert") in the footer template, all
these buttons can trigger the RowXXX event correctly. I've included the
complete page's aspx and codebehind source below, you can test it on your
side to see whether it works.

==============a spx============ ===
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="GridView1" runat="server"
AutoGenerateCol umns="false" OnRowCommand="G ridView1_RowCom mand"
OnRowDeleting=" GridView1_RowDe leting" OnRowEditing="G ridView1_RowEdi ting"
ShowFooter="Tru e">
<Columns>
<asp:BoundFie ld DataField="Cate goryID"
HeaderText="Cat egoryID" />
<asp:BoundFie ld DataField="Cate goryName"
HeaderText="Cat egoryName" />
<asp:BoundFie ld DataField="Desc ription"
HeaderText="Des cription" />
<asp:TemplateFi eld HeaderText="Tem plateField">
<ItemTemplate >
<asp:Button ID="btnEdit" runat="server" Text="Edit"
CommandName="Ed it" />
<asp:ImageButto n ID="imgBtn" runat="server"
ImageUrl="http://wcf.netfx3.com/Themes/default/images/logo.gif"
CommandName="Ed it" />
</ItemTemplate>
<FooterTemplate >
<asp:Button ID="btnInsert" runat="server" Text="Insert"
CommandName="In sert" />
</FooterTemplate>
</asp:TemplateFie ld>
<asp:CommandFie ld ShowDeleteButto n="True" />
</Columns>
</asp:GridView>

</div>
</form>
</body>
=============== =============

=========code behind========= =====
public partial class dataaccess_Cust omVOGridView : System.Web.UI.P age
{
protected void Page_Load(objec t sender, EventArgs e)
{
if (!IsPostBack)
{
BindGrid();

}

}

private void BindGrid()
{
CategoryVO[] categories = new CategoryVO[10];

for (int i = 0; i < categories.Leng th; i++)
{
CategoryVO vo = new CategoryVO();
vo.CategoryID = i + 1;
vo.CategoryName = "Category_" + vo.CategoryID;
vo.Description = "Descriptio n of " + vo.CategoryName ;

categories[i] = vo;
}

GridView1.DataS ource = categories;
GridView1.DataB ind();
}
protected void GridView1_RowCo mmand(object sender,
GridViewCommand EventArgs e)
{

Response.Write( "<br/>GridView1_RowC ommand: " + e.CommandName);
}
protected void GridView1_RowDe leting(object sender,
GridViewDeleteE ventArgs e)
{
Response.Write( "<br/>GridView1_RowD eleting " + e.RowIndex);
}
protected void GridView1_RowEd iting(object sender,
GridViewEditEve ntArgs e)
{
Response.Write( "<br/>GridView1_RowE diting " + e.NewEditIndex) ;
}
}
=============== ===========

=========custom class========== =====
public class CategoryVO
{
private int _id;
private string _name;
private string _description;
public CategoryVO()
{

}

public CategoryVO(int id, string name, string description)
{
_id = id;
_name = name;
_description = description;
}
public int CategoryID
{
get { return _id; }
set { _id = value; }
}

public string CategoryName
{
get { return _name; }
set { _name = value; }
}

public string Description
{
get { return _description; }
set { _description = value; }
}
}
=============== =============== ===

Please feel free to let me know if you have any further questions or new
finding.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

=============== =============== =============== =====

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

=============== =============== =============== =====

This posting is provided "AS IS" with no warranties, and confers no rights.
Oct 12 '06 #4
AG
Steven,

Thanks for the reply.
I have tracked down my problem.
It has to do with master pages.

In a normal page, your sample works fine.

I put it in a content control on a content page.
The RowCommand for the template column did not fire.
It DID fire for the delete column, which is NOT a template column.
This is what was confusing me.

Bottom line is that the ContentPlaceHol der of the masterpage had viewstate
turned off.
Once I turned it back on, all the events fired.

On another note.
I like the idea of using the footer of the gridview to add a new record.
However, if there is no data, the gridview does not render at all.
Is there any way to render the header and footer if there is no data for the
gridview?

--

AG
Email: discuss at adhdata dot com

"Steven Cheng[MSFT]" <st*****@online .microsoft.comw rote in message
news:9V******** ******@TK2MSFTN GXA01.phx.gbl.. .
Hello AG,

Based on my experience, no matter we bind GridView through
DataSourceContr ol or normal data object collection, the RowCommand and
other Row based postback event(RowUpdati ng, RowEditing .... ) should work.
For your scenario, I think it is likely a page or control specific issue.
Here is a smiple test page with a GridView that bind to a custom class
Array, and I use a submit button and image button in the TemplateColumn,
also a submit button(with CommandName="In sert") in the footer template,
all
these buttons can trigger the RowXXX event correctly. I've included the
complete page's aspx and codebehind source below, you can test it on your
side to see whether it works.

==============a spx============ ===
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="GridView1" runat="server"
AutoGenerateCol umns="false" OnRowCommand="G ridView1_RowCom mand"
OnRowDeleting=" GridView1_RowDe leting" OnRowEditing="G ridView1_RowEdi ting"
ShowFooter="Tru e">
<Columns>
<asp:BoundFie ld DataField="Cate goryID"
HeaderText="Cat egoryID" />
<asp:BoundFie ld DataField="Cate goryName"
HeaderText="Cat egoryName" />
<asp:BoundFie ld DataField="Desc ription"
HeaderText="Des cription" />
<asp:TemplateFi eld HeaderText="Tem plateField">
<ItemTemplate >
<asp:Button ID="btnEdit" runat="server" Text="Edit"
CommandName="Ed it" />
<asp:ImageButto n ID="imgBtn" runat="server"
ImageUrl="http://wcf.netfx3.com/Themes/default/images/logo.gif"
CommandName="Ed it" />
</ItemTemplate>
<FooterTemplate >
<asp:Button ID="btnInsert" runat="server" Text="Insert"
CommandName="In sert" />
</FooterTemplate>
</asp:TemplateFie ld>
<asp:CommandFie ld ShowDeleteButto n="True" />
</Columns>
</asp:GridView>

</div>
</form>
</body>
=============== =============

=========code behind========= =====
public partial class dataaccess_Cust omVOGridView : System.Web.UI.P age
{
protected void Page_Load(objec t sender, EventArgs e)
{
if (!IsPostBack)
{
BindGrid();

}

}

private void BindGrid()
{
CategoryVO[] categories = new CategoryVO[10];

for (int i = 0; i < categories.Leng th; i++)
{
CategoryVO vo = new CategoryVO();
vo.CategoryID = i + 1;
vo.CategoryName = "Category_" + vo.CategoryID;
vo.Description = "Descriptio n of " + vo.CategoryName ;

categories[i] = vo;
}

GridView1.DataS ource = categories;
GridView1.DataB ind();
}
protected void GridView1_RowCo mmand(object sender,
GridViewCommand EventArgs e)
{

Response.Write( "<br/>GridView1_RowC ommand: " + e.CommandName);
}
protected void GridView1_RowDe leting(object sender,
GridViewDeleteE ventArgs e)
{
Response.Write( "<br/>GridView1_RowD eleting " + e.RowIndex);
}
protected void GridView1_RowEd iting(object sender,
GridViewEditEve ntArgs e)
{
Response.Write( "<br/>GridView1_RowE diting " + e.NewEditIndex) ;
}
}
=============== ===========

=========custom class========== =====
public class CategoryVO
{
private int _id;
private string _name;
private string _description;
public CategoryVO()
{

}

public CategoryVO(int id, string name, string description)
{
_id = id;
_name = name;
_description = description;
}
public int CategoryID
{
get { return _id; }
set { _id = value; }
}

public string CategoryName
{
get { return _name; }
set { _name = value; }
}

public string Description
{
get { return _description; }
set { _description = value; }
}
}
=============== =============== ===

Please feel free to let me know if you have any further questions or new
finding.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

=============== =============== =============== =====

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

=============== =============== =============== =====

This posting is provided "AS IS" with no warranties, and confers no
rights.


Oct 12 '06 #5
Thanks for your reply AG,

Based on your further description, I'm getting abit closer to the problem
your encountered. And I think the main cause here should be your
ContentPlaceHol der's ViewState is disabled rather than master page. As
for Template databound control such as GridView, DataGrid, after
databinding, they'll store the bound data into ViewState so that we do not
need to rebind the data in seqentual postback. However, when you disable
the ViewState of them or their container control, the bound data won't be
persisted after databinding, therefore we need to perform databinding on
each page request(no matter the intial request or postback).

I've modified my last test example and put the content page in a
ContentPlaceHol der within a master page and set its EnableViewState to
"false". And as long as I bind data to the GridView in each page request,
all the postback commands (our custom button in templateField or built-in
button field ) can work as expected. My modified page codebehind is as
below:

=============== ===
protected void Page_Load(objec t sender, EventArgs e)
{

BindGrid();

}
=============== =====

All the other code remains the same. So is your page also rebinding the
data to the GridView in each request? You can test the same behavior
through the my page or your modifeid version to see whether it works.

If there is anything unclear or any other questions , please feel free to
let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

Oct 13 '06 #6
AG
Steven,

Thanks.
I had already confirmed your comments and have turned on viewstate for the
content placeholder. It being off was not intentional. Probably an
unintentional scroll of the mousewheel.
While I can get my project to do what I want now that I know how things
work, I do think that it should be considered a bug that the events don't
fire without viewstate for a template column, but DO fire for a
commandfield.

Please address the below item.

On another note.
I like the idea of using the footer of the gridview to add a new record.
However, if there is no data, the gridview does not render at all.
Is there any way to render the header and footer if there is no data for the
gridview?

--

AG
Email: discuss at adhdata dot com

"Steven Cheng[MSFT]" <st*****@online .microsoft.comw rote in message
news:3L******** ******@TK2MSFTN GXA01.phx.gbl.. .
Thanks for your reply AG,

Based on your further description, I'm getting abit closer to the problem
your encountered. And I think the main cause here should be your
ContentPlaceHol der's ViewState is disabled rather than master page. As
for Template databound control such as GridView, DataGrid, after
databinding, they'll store the bound data into ViewState so that we do not
need to rebind the data in seqentual postback. However, when you disable
the ViewState of them or their container control, the bound data won't be
persisted after databinding, therefore we need to perform databinding on
each page request(no matter the intial request or postback).

I've modified my last test example and put the content page in a
ContentPlaceHol der within a master page and set its EnableViewState to
"false". And as long as I bind data to the GridView in each page request,
all the postback commands (our custom button in templateField or built-in
button field ) can work as expected. My modified page codebehind is as
below:

=============== ===
protected void Page_Load(objec t sender, EventArgs e)
{

BindGrid();

}
=============== =====

All the other code remains the same. So is your page also rebinding the
data to the GridView in each request? You can test the same behavior
through the my page or your modifeid version to see whether it works.

If there is anything unclear or any other questions , please feel free to
let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no
rights.

Oct 13 '06 #7
Thanks for your reply AG,

As for the Footer, Header template for empty datasource case, I'm afraid so
far the GridView can not display any GridViewRow when there is no data
record in the DataSource since GridViewRow is generated based on DataSource
records. However, if you do want to provide a "insert item" interface even
when there is no data supplied in the DataSource, you can consider use the
"EmptyDataTempl ate" to provide a insert user interface so that the user can
directly see the insert item panel when the datasource is empty(contains no
record). e.g.

=============== =====

<asp:GridView ID="GridView1" runat="server" ............... ....>
............... ............... .
<EmptyDataTempl ate>
<asp:TextBox ID="TextBox1" runat="server"> </asp:TextBox>
<asp:TextBox ID="TextBox3" runat="server"> </asp:TextBox>
<asp:Button ID="btnInsert" runat="server" Text="Edit"
CommandName="In sert" />
</EmptyDataTempla te>
</asp:GridView>
=============== =====

Please feel free to let me know if there is any thing else you wonder.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

Oct 16 '06 #8
AG
Thanks Steven,

I do know about the EmptyDataTempla te. It just seems like duplication of
work.
The 1.1 datagrid did show header/footer even if there were no data rows and
I was hoping that there was a way to duplicate that. I wll just have to use
another method.

--

AG
Email: discuss at adhdata dot com

"Steven Cheng[MSFT]" <st*****@online .microsoft.comw rote in message
news:h4******** ******@TK2MSFTN GXA01.phx.gbl.. .
Thanks for your reply AG,

As for the Footer, Header template for empty datasource case, I'm afraid
so
far the GridView can not display any GridViewRow when there is no data
record in the DataSource since GridViewRow is generated based on
DataSource
records. However, if you do want to provide a "insert item" interface
even
when there is no data supplied in the DataSource, you can consider use the
"EmptyDataTempl ate" to provide a insert user interface so that the user
can
directly see the insert item panel when the datasource is empty(contains
no
record). e.g.

=============== =====

<asp:GridView ID="GridView1" runat="server" ............... ....>
............... ............... .
<EmptyDataTempl ate>
<asp:TextBox ID="TextBox1" runat="server"> </asp:TextBox>
<asp:TextBox ID="TextBox3" runat="server"> </asp:TextBox>
<asp:Button ID="btnInsert" runat="server" Text="Edit"
CommandName="In sert" />
</EmptyDataTempla te>
</asp:GridView>
=============== =====

Please feel free to let me know if there is any thing else you wonder.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no
rights.

Oct 16 '06 #9
Thanks for your reply AG,

Yes, the different implementation of GridView and DataGrid make us have to
handle the empty datasource scenario differently. Actually, this change is
also made according to some feedback from the community. Anyway, it seems
that we would prefer a more flexible interface of such a template databound
control. I think this is a good point that you can submit the request for
the ASP.NET product team to refer.

http://connect.microsoft.com/VisualS...k.aspx?Feedbac
kID=118879

Also, if you meet any new problem in the developing or if anything else we
can help, please feel free to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

Oct 16 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
9101
by: Zule | last post by:
Hi, I am creating a Composite Control within which I have a GridView. In this GridView, I have three TemplateFields, the last one being a template with a LinkButton which is meant to be clicked so I can capture this event to do something about it. The problem is that in the CreateChildControls method, I initialize the GridView and link its...
5
1760
by: Mike P | last post by:
I have a ButtonField in my GridView with a CommandName, and I have a method which I am using to capture each click of the button : protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "OpportunityDetails")
1
2461
by: keithb | last post by:
What causes a GridView RowCommand Event to intercept a RowDeleting Event? How to cure it? Thanks, Keith
6
28110
by: Kevin Attard | last post by:
I am using a GridView inside a UserControl which has a template column for deleting the rows. Before databinding the gridview i am attaching the RowCommand and RowDataBound event. I am using the RowDataBound event to set the commandargument of the delete button. The event is being fired and works fine. When I press the delete button, the...
1
4436
by: jobs | last post by:
Can I have data on Gridview column as a link that runs a row command and/or a subroutine/function in the vb.net codebehind? I thought about asp:command, but don't see where I can bind my data in this? <ItemTemplate> <asp:Command ID="View" SkinID="Button" Text="View" CommandName="View" runat="server" />
2
11017
by: John007 | last post by:
I am using a GridView in ASP.Net 2.0 to Insert, Edit, Update and Delete. I am using ItemTemplate and EditItemTemplate and the buttons are LinkButtons. I am inserting a new row from the footer. The RowCommand event is firing twice when I hit the Edit, Update, Delete and Insert buttons. The AutoEventWireup is set to false. What am I missing? Thanks.
0
1086
by: =?Utf-8?B?Tkg=?= | last post by:
Hi, I have a gridview in a template field of another gridview. How do I capture the RowCommand for that nested child gridview? I cant seem to figure it out. Thanks
0
2640
by: =?Utf-8?B?YmVuamk=?= | last post by:
Hi, I've got a gridview that I bind programmatically to a view of a typed dataset. One column has a command button, and in the RowCreated event, I test to see if it's a DataRow, and if it is, I grab the button and attach a value: { Response.Write("<br/>" + e.Row.Cells.Controls.ToString() + "<br/>"); // Retrieve the LinkButton control...
0
1860
by: progman417 | last post by:
Hello, I've got a Web User Control containing a gridview with a "select record" button on each row. When the user clicks the button I want to call an event handler in the main page. My problem is that the event handler hasn't been set when I check it in the GridView RowCommand event, i.e. if (btnSelectRecordHandler != null) ...
0
7473
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7408
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7661
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
5340
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
4949
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3458
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3444
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1020
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
712
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.