473,666 Members | 2,634 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

label in footertemplate of datagrid

How can I place a Label control in the FooterTemplate of a DataList
control?

I tried this

<script runat="server">
Sub Page_Load(obj As Object, ea As EventArgs)
Dim dblTotal As Double
Dim sqlReader As SqlDataReader

dblTotal = 'calling a function which returns a Double
sqlReader = 'calling another function which returns
SqlDataReader

dlCart.DataSour ce = sqlReader
dlCart.DataBind
lblTotal.Text = dblTotal
End Sub
</script>

<form runat="server">
<asp:DataList ID="dlCart" runat="server">
<HeaderTemplate >
<table>
<th>ID</th>
<th>Product</th>
<th>Unit Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate >
<tr>
.........
</tr>
</ItemTemplate>
<FooterTemplate >
<tr>
<td colspan=2>TOTAL :</td>
<td><asp:Labe l ID="lblTotal" runat="server"/></td>
</tr>
</table>
</FooterTemplate>
</asp:DataList>
</form>

But it throws the error

Name 'lblTotal' is not declared.

pointing to

lblTotal.Text = dblTotal

How do I add a Label within the FooterTemplate of a DataList so that
the total can be displayed under the Unit Price column? Or is there any
other way by which I can display the total under the Unit Price column
in the DataList?

Oct 1 '06 #1
7 2526
Handle ItemDataBound event. Detect the footer item by the ItemType. Use
FindControl ("lblTotal") to locate the label inside the footer item.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
How can I place a Label control in the FooterTemplate of a DataList
control?

I tried this

<script runat="server">
Sub Page_Load(obj As Object, ea As EventArgs)
Dim dblTotal As Double
Dim sqlReader As SqlDataReader

dblTotal = 'calling a function which returns a Double
sqlReader = 'calling another function which returns
SqlDataReader

dlCart.DataSour ce = sqlReader
dlCart.DataBind
lblTotal.Text = dblTotal
End Sub
</script>

<form runat="server">
<asp:DataList ID="dlCart" runat="server">
<HeaderTemplate >
<table>
<th>ID</th>
<th>Product</th>
<th>Unit Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate >
<tr>
........
</tr>
</ItemTemplate>
<FooterTemplate >
<tr>
<td colspan=2>TOTAL :</td>
<td><asp:Labe l ID="lblTotal" runat="server"/></td>
</tr>
</table>
</FooterTemplate>
</asp:DataList>
</form>

But it throws the error

Name 'lblTotal' is not declared.

pointing to

lblTotal.Text = dblTotal

How do I add a Label within the FooterTemplate of a DataList so that
the total can be displayed under the Unit Price column? Or is there any
other way by which I can display the total under the Unit Price column
in the DataList?

Oct 1 '06 #2
Eliyahu, could you please show me a small example of what you have
suggested? I haven't done anything like that anytime.

Eliyahu Goldin wrote:
Handle ItemDataBound event. Detect the footer item by the ItemType. Use
FindControl ("lblTotal") to locate the label inside the footer item.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
How can I place a Label control in the FooterTemplate of a DataList
control?

I tried this

<script runat="server">
Sub Page_Load(obj As Object, ea As EventArgs)
Dim dblTotal As Double
Dim sqlReader As SqlDataReader

dblTotal = 'calling a function which returns a Double
sqlReader = 'calling another function which returns
SqlDataReader

dlCart.DataSour ce = sqlReader
dlCart.DataBind
lblTotal.Text = dblTotal
End Sub
</script>

<form runat="server">
<asp:DataList ID="dlCart" runat="server">
<HeaderTemplate >
<table>
<th>ID</th>
<th>Product</th>
<th>Unit Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate >
<tr>
........
</tr>
</ItemTemplate>
<FooterTemplate >
<tr>
<td colspan=2>TOTAL :</td>
<td><asp:Labe l ID="lblTotal" runat="server"/></td>
</tr>
</table>
</FooterTemplate>
</asp:DataList>
</form>

But it throws the error

Name 'lblTotal' is not declared.

pointing to

lblTotal.Text = dblTotal

How do I add a Label within the FooterTemplate of a DataList so that
the total can be displayed under the Unit Price column? Or is there any
other way by which I can display the total under the Unit Price column
in the DataList?
Oct 1 '06 #3
OK...Eliyahu... I got it...this is it...(for those who might find this
useful)

<script runat="server">
Sub Page_Load(obj As Object, ea As EventArgs)
Dim sqlReader As SqlDataReader

sqlReader = 'calling another function which returns
SqlDataReader

dlCart.DataSour ce = sqlReader
dlCart.DataBind
End Sub

Sub BindItem(ByVal obj As Object, ByVal ea As
DataListItemEve ntArgs)
Dim dblTotal As Double

dblTotal = 'calling a function which returns a Double

If (ea.Item.ItemTy pe = ListItemType.Fo oter) Then
CType(ea.Item.F indControl("lbl Total"), Label).Text =
dblTotal
End If
End Sub
</script>

<form runat="server">
<asp:DataList ID="dlCart" OnItemDataBound ="BindItem" runat="server">
<HeaderTemplate >
<table>
<th>ID</th>
<th>Product</th>
<th>Unit Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate >
<tr>
.........
</tr>
</ItemTemplate>
<FooterTemplate >
<tr>
<td colspan=2>TOTAL :</td>
<td><asp:Labe l ID="lblTotal" runat="server"/></td>
</tr>
</table>
</FooterTemplate>
</asp:DataList>
</form>

Thanks, Eliyahu, for your useful suggestion..... ..........:)

Eliyahu Goldin wrote:
Handle ItemDataBound event. Detect the footer item by the ItemType. Use
FindControl ("lblTotal") to locate the label inside the footer item.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
How can I place a Label control in the FooterTemplate of a DataList
control?

I tried this

<script runat="server">
Sub Page_Load(obj As Object, ea As EventArgs)
Dim dblTotal As Double
Dim sqlReader As SqlDataReader

dblTotal = 'calling a function which returns a Double
sqlReader = 'calling another function which returns
SqlDataReader

dlCart.DataSour ce = sqlReader
dlCart.DataBind
lblTotal.Text = dblTotal
End Sub
</script>

<form runat="server">
<asp:DataList ID="dlCart" runat="server">
<HeaderTemplate >
<table>
<th>ID</th>
<th>Product</th>
<th>Unit Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate >
<tr>
........
</tr>
</ItemTemplate>
<FooterTemplate >
<tr>
<td colspan=2>TOTAL :</td>
<td><asp:Labe l ID="lblTotal" runat="server"/></td>
</tr>
</table>
</FooterTemplate>
</asp:DataList>
</form>

But it throws the error

Name 'lblTotal' is not declared.

pointing to

lblTotal.Text = dblTotal

How do I add a Label within the FooterTemplate of a DataList so that
the total can be displayed under the Unit Price column? Or is there any
other way by which I can display the total under the Unit Price column
in the DataList?
Oct 1 '06 #4
<asp:DataList ID="dlCart" runat="server"
OnItemDataBound ="dlCart_ItemDa taBound">

In the script:

Sub dlCart_ItemData Bound(sender As Object, e As DataListItemEve ntArgs)
If e.Item.ItemType = ListItemType.Fo oter
Dim dblTotal As Double
dblTotal = 'calling a function which returns a Double
Dim TotalLabel As Label = CType(e.Item.Fi ndControl("lblT otal"),
Label)
TotalLabel .Text = dblTotal
End If
End Sub
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** **************@ h48g2000cwc.goo glegroups.com.. .
Eliyahu, could you please show me a small example of what you have
suggested? I haven't done anything like that anytime.

Eliyahu Goldin wrote:
>Handle ItemDataBound event. Detect the footer item by the ItemType. Use
FindControl ("lblTotal") to locate the label inside the footer item.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffma il.comwrote in message
news:11******* *************** @i3g2000cwc.goo glegroups.com.. .
How can I place a Label control in the FooterTemplate of a DataList
control?

I tried this

<script runat="server">
Sub Page_Load(obj As Object, ea As EventArgs)
Dim dblTotal As Double
Dim sqlReader As SqlDataReader

dblTotal = 'calling a function which returns a Double
sqlReader = 'calling another function which returns
SqlDataReader

dlCart.DataSour ce = sqlReader
dlCart.DataBind
lblTotal.Text = dblTotal
End Sub
</script>

<form runat="server">
<asp:DataList ID="dlCart" runat="server">
<HeaderTemplate >
<table>
<th>ID</th>
<th>Product</th>
<th>Unit Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate >
<tr>
........
</tr>
</ItemTemplate>
<FooterTemplate >
<tr>
<td colspan=2>TOTAL :</td>
<td><asp:Labe l ID="lblTotal" runat="server"/></td>
</tr>
</table>
</FooterTemplate>
</asp:DataList>
</form>

But it throws the error

Name 'lblTotal' is not declared.

pointing to

lblTotal.Text = dblTotal

How do I add a Label within the FooterTemplate of a DataList so that
the total can be displayed under the Unit Price column? Or is there any
other way by which I can display the total under the Unit Price column
in the DataList?

Oct 1 '06 #5
Eliyahu, can you please tell me why does ASP.NET throw the error

Name 'lblTotal' is not declared.

pointing to the

lblTotal.Text = dblTotal

line in the Page_Load sub when lblTotal is used within the
FooterTemplate of the DataList control?

Thanks
Eliyahu Goldin wrote:
<asp:DataList ID="dlCart" runat="server"
OnItemDataBound ="dlCart_ItemDa taBound">

In the script:

Sub dlCart_ItemData Bound(sender As Object, e As DataListItemEve ntArgs)
If e.Item.ItemType = ListItemType.Fo oter
Dim dblTotal As Double
dblTotal = 'calling a function which returns a Double
Dim TotalLabel As Label = CType(e.Item.Fi ndControl("lblT otal"),
Label)
TotalLabel .Text = dblTotal
End If
End Sub
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** **************@ h48g2000cwc.goo glegroups.com.. .
Eliyahu, could you please show me a small example of what you have
suggested? I haven't done anything like that anytime.

Eliyahu Goldin wrote:
Handle ItemDataBound event. Detect the footer item by the ItemType. Use
FindControl ("lblTotal") to locate the label inside the footer item.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
How can I place a Label control in the FooterTemplate of a DataList
control?

I tried this

<script runat="server">
Sub Page_Load(obj As Object, ea As EventArgs)
Dim dblTotal As Double
Dim sqlReader As SqlDataReader

dblTotal = 'calling a function which returns a Double
sqlReader = 'calling another function which returns
SqlDataReader

dlCart.DataSour ce = sqlReader
dlCart.DataBind
lblTotal.Text = dblTotal
End Sub
</script>

<form runat="server">
<asp:DataList ID="dlCart" runat="server">
<HeaderTemplate >
<table>
<th>ID</th>
<th>Product</th>
<th>Unit Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate >
<tr>
........
</tr>
</ItemTemplate>
<FooterTemplate >
<tr>
<td colspan=2>TOTAL :</td>
<td><asp:Labe l ID="lblTotal" runat="server"/></td>
</tr>
</table>
</FooterTemplate>
</asp:DataList>
</form>

But it throws the error

Name 'lblTotal' is not declared.

pointing to

lblTotal.Text = dblTotal

How do I add a Label within the FooterTemplate of a DataList so that
the total can be displayed under the Unit Price column? Or is there any
other way by which I can display the total under the Unit Price column
in the DataList?
Oct 1 '06 #6
You can't refer to controls in templates directly by their id.Only
FindControl in the item events will do.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** ************@i3 g2000cwc.google groups.com...
Eliyahu, can you please tell me why does ASP.NET throw the error

Name 'lblTotal' is not declared.

pointing to the

lblTotal.Text = dblTotal

line in the Page_Load sub when lblTotal is used within the
FooterTemplate of the DataList control?

Thanks
Eliyahu Goldin wrote:
><asp:DataLis t ID="dlCart" runat="server"
OnItemDataBoun d="dlCart_ItemD ataBound">

In the script:

Sub dlCart_ItemData Bound(sender As Object, e As
DataListItemEv entArgs)
If e.Item.ItemType = ListItemType.Fo oter
Dim dblTotal As Double
dblTotal = 'calling a function which returns a Double
Dim TotalLabel As Label =
CType(e.Item.F indControl("lbl Total"),
Label)
TotalLabel .Text = dblTotal
End If
End Sub
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffma il.comwrote in message
news:11******* *************** @h48g2000cwc.go oglegroups.com. ..
Eliyahu, could you please show me a small example of what you have
suggested? I haven't done anything like that anytime.

Eliyahu Goldin wrote:
Handle ItemDataBound event. Detect the footer item by the ItemType.
Use
FindControl ("lblTotal") to locate the label inside the footer item.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffma il.comwrote in message
news:11******* *************** @i3g2000cwc.goo glegroups.com.. .
How can I place a Label control in the FooterTemplate of a DataList
control?

I tried this

<script runat="server">
Sub Page_Load(obj As Object, ea As EventArgs)
Dim dblTotal As Double
Dim sqlReader As SqlDataReader

dblTotal = 'calling a function which returns a Double
sqlReader = 'calling another function which returns
SqlDataReader

dlCart.DataSour ce = sqlReader
dlCart.DataBind
lblTotal.Text = dblTotal
End Sub
</script>

<form runat="server">
<asp:DataList ID="dlCart" runat="server">
<HeaderTemplate >
<table>
<th>ID</th>
<th>Product</th>
<th>Unit Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate >
<tr>
........
</tr>
</ItemTemplate>
<FooterTemplate >
<tr>
<td colspan=2>TOTAL :</td>
<td><asp:Labe l ID="lblTotal" runat="server"/></td>
</tr>
</table>
</FooterTemplate>
</asp:DataList>
</form>

But it throws the error

Name 'lblTotal' is not declared.

pointing to

lblTotal.Text = dblTotal

How do I add a Label within the FooterTemplate of a DataList so that
the total can be displayed under the Unit Price column? Or is there
any
other way by which I can display the total under the Unit Price
column
in the DataList?


Oct 3 '06 #7
But why can't controls be referred to by their IDs in templates?

Microsoft shouldn't have done this. It has made life all the more
tougher for ASP.NET developers.....
Eliyahu Goldin wrote:
You can't refer to controls in templates directly by their id.Only
FindControl in the item events will do.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** ************@i3 g2000cwc.google groups.com...
Eliyahu, can you please tell me why does ASP.NET throw the error

Name 'lblTotal' is not declared.

pointing to the

lblTotal.Text = dblTotal

line in the Page_Load sub when lblTotal is used within the
FooterTemplate of the DataList control?

Thanks
Eliyahu Goldin wrote:
<asp:DataList ID="dlCart" runat="server"
OnItemDataBound ="dlCart_ItemDa taBound">

In the script:

Sub dlCart_ItemData Bound(sender As Object, e As
DataListItemEve ntArgs)
If e.Item.ItemType = ListItemType.Fo oter
Dim dblTotal As Double
dblTotal = 'calling a function which returns a Double
Dim TotalLabel As Label =
CType(e.Item.Fi ndControl("lblT otal"),
Label)
TotalLabel .Text = dblTotal
End If
End Sub
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** **************@ h48g2000cwc.goo glegroups.com.. .
Eliyahu, could you please show me a small example of what you have
suggested? I haven't done anything like that anytime.

Eliyahu Goldin wrote:
Handle ItemDataBound event. Detect the footer item by the ItemType.
Use
FindControl ("lblTotal") to locate the label inside the footer item.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
<rn**@rediffmai l.comwrote in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
How can I place a Label control in the FooterTemplate of a DataList
control?

I tried this

<script runat="server">
Sub Page_Load(obj As Object, ea As EventArgs)
Dim dblTotal As Double
Dim sqlReader As SqlDataReader

dblTotal = 'calling a function which returns a Double
sqlReader = 'calling another function which returns
SqlDataReader

dlCart.DataSour ce = sqlReader
dlCart.DataBind
lblTotal.Text = dblTotal
End Sub
</script>

<form runat="server">
<asp:DataList ID="dlCart" runat="server">
<HeaderTemplate >
<table>
<th>ID</th>
<th>Product</th>
<th>Unit Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate >
<tr>
........
</tr>
</ItemTemplate>
<FooterTemplate >
<tr>
<td colspan=2>TOTAL :</td>
<td><asp:Labe l ID="lblTotal" runat="server"/></td>
</tr>
</table>
</FooterTemplate>
</asp:DataList>
</form>

But it throws the error

Name 'lblTotal' is not declared.

pointing to

lblTotal.Text = dblTotal

How do I add a Label within the FooterTemplate of a DataList so that
the total can be displayed under the Unit Price column? Or is there
any
other way by which I can display the total under the Unit Price
column
in the DataList?
Oct 6 '06 #8

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

Similar topics

6
1779
by: thejackofall | last post by:
I added a label server control in my aspx file. In the code behind, the IDE does not generate the corresponding object like it does with buttons and other objects. What am I doing wrong? Is there a way to force the IDE to re-generate the corresponding objects? Appreciate your input. J
1
1062
by: Vishal | last post by:
Hello, I have a datagrid, which calculates the total in the footer. I am using public variables and simply appending the data to it. However the footertemplate is called twice and therefore it shows the wrong amount in the footer. It shows the double of what it should show. Can somebody tell me why that is happening? Thanks
2
1468
by: Will Chamberlain | last post by:
I have a footer template for adding items to a database. When 'Add' button is pressed the footer is displayed with textboxes for inserting data. There is 1 field that should not be tampered with so I am trying to display the value in a label. I am using the following code: <Asp:label id="lblDLID" text='<%# Container.DataItem("DLID") %>' runat="server" /> In theory this should work like a charm but I am getting the following error:
1
1884
by: sakieboy | last post by:
I have a FOOTERTEMPLATE that consists of a 3 DropDownLists. When something from DDL1 is selected it then populates DDL2, when something from DDL2 is selected it then populates DDL3. DDL1 is currently populated, but when I make a selection, it just doesn't recognize that my FOOTERTEMPLATE is part of my Datagrid. I have 2 rows, the first one for the "Edit" and my FOOTERTEMPLATE for my "Add". The debug recognizes my 1st row but has no...
3
2027
by: David C | last post by:
Here is my goal. I have a textbox in the FooterTemplate of a datagrid <FooterTemplate> <asp:TextBox ID="txtFooterTextBox" Runat="server"></asp:TextBox> </FooterTemplate> When the html is created, in my case, it creates an html tag like this. <input name="userLiabilities:dgFinancials:_ctl9:txtFooterTextBox" type="text" id="userLiabilities_dgFinancials__ctl9_txtFooterTextBox" />
1
1800
by: Groove | last post by:
I have a typical Repeater that contains a Template (html table). The repeater / template lists many records and in the footer, I'd like to simply SUM up the $$ amounts from all the records in the repeater. Easy enough. So I tried to place a Label control in the footer and fill the Text of the label from code. I get the label is not declared error. So how can I go about doing this? I tried writing a helper function in the code-behind...
3
2885
by: rockdale | last post by:
Hi, All: I have a datagrid with TemplateColumn as following: <asp:TemplateColumn Visible="False" > <ItemStyle Width="0px"></ItemStyle> <ItemTemplate> <asp:Label id="lblMin_Value" Visible=False runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.min_value") %>'> </asp:Label>
2
3849
by: rn5a | last post by:
Consider the following code: <script runat="server"> Sub ShowData(obj As Object, ea As EventArgs) lblDate.Text = DateTime.Now.ToString("d") lblDate.DataBind() End Sub </script> <form runat="server"> <asp:Label ID="lblDate" OnDataBinding="ShowData" runat="server"/>
0
1183
by: rn5a | last post by:
One of the columns in a SQL Server 2005 DB table is named 'OrderDate' which stores the date & time on which an order has been placed. Since the 'OrderDate' of a particular order will be the same, I want to display the 'OrderDate' in a Label control & the rest of the records should be displayed in a DataList. This is how I approached it: <script runat="server"> Sub Page_Load(ByVal obj As Object, ByVal ea As EventArgs) Dim dSet As DataSet...
0
8440
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 usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8863
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. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8549
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8636
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7378
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6189
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 instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5661
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 into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4192
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1763
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.