473,756 Members | 1,904 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Button Click event not getting called

SAL
Hello,
I'm working, basically my first, AJAX page and am having a few problems.
One is that the Click event for a button I have in UpdatePanel1 is not
getting called. I've tried with the button both inside and outside of the
updatepanel and the event doesn't get called either way. What might I be
missing here?

Incidently, something else, kind of weird, is happening when the button is
clicked, a required field validator control in a detailsview that I have on
the page displays it's text, which in this case is just an astrix.
<asp:UpdatePane l ID="UpdatePanel 1" runat="server" UpdateMode="Alw ays">
<ContentTemplat e>
<asp:GridView ID="gvStormDeta il"
runat="server"
AutoGenerateCol umns="False"
DataSourceID="d sStormDetail"
EnableViewState ="False"
SkinID="gridvie wSkin"
Width="672px"
DataKeyNames="S tormValueID">
<Columns>
<asp:CommandFie ld ShowDeleteButto n="True" />
<asp:TemplateFi eld>
<ItemTemplate >
<asp:HyperLin k ID="hlMap" runat="server"
Target="_map">M ap</asp:HyperLink>
</ItemTemplate>
</asp:TemplateFie ld>
<asp:BoundFie ld DataField="Stor mValueID"
HeaderText="Sto rmValueID" InsertVisible=" False"
ReadOnly="True" SortExpression= "StormValue ID"
Visible="False" />
<asp:BoundFie ld DataField="Stor mAssetType"
HeaderText="Ass et Category" SortExpression= "StormAssetType " >
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:BoundFie ld DataField="Stor mAssetTypeID"
HeaderText="Sto rmAssetTypeID" SortExpression= "StormAssetType ID"
Visible="False" />
<asp:BoundFie ld DataField="Stor mAssetName"
HeaderText="Sto rm Asset Name" SortExpression= "StormAssetName " >
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:BoundFie ld DataField="StmF acilityClkID"
HeaderText="Stm FacilityClkID" SortExpression= "StmFacilityClk ID" >
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:TemplateFi eld HeaderText="Des cription"
SortExpression= "Descriptio n">
<EditItemTempla te>
<asp:TextBox ID="TextBox2" runat="server"
Text='<%# Bind("Descripti on") %>'></asp:TextBox>
</EditItemTemplat e>
<ItemTemplate >
<asp:Label ID="lblDescript ion" runat="server"
EnableViewState ="False" Height="24px"
Text='<%# Bind("Descripti on") %>'
Width="232px"></asp:Label>
</ItemTemplate>
<ItemStyle HorizontalAlign ="Center" />
</asp:TemplateFie ld>
<asp:TemplateFi eld HeaderText="Est imated Value"
SortExpression= "EstValue">
<EditItemTempla te>
<asp:TextBox ID="TextBox1" runat="server"
Text='<%# Bind("EstValue" ) %>'></asp:TextBox>
</EditItemTemplat e>
<ItemTemplate >
<asp:Label ID="lblEstValue " runat="server"
Text='<%# Bind("EstValue" , "{0:C0}") %>'></asp:Label>
<asp:TextBox ID="txtEstValue " runat="server"
EnableViewState ="False" Text='<%# Bind("EstValue" , "{0:C0}") %>'
Visible="False" Width="96px"></asp:TextBox>
</ItemTemplate>
<ItemStyle HorizontalAlign ="Right" />
</asp:TemplateFie ld>
<asp:BoundFie ld DataField="Cnty AssetID"
HeaderText="Cnt yAssetID" SortExpression= "CntyAssetI D"
Visible="False" />
<asp:TemplateFi eld></asp:TemplateFie ld>
<asp:BoundFie ld DataField="ModU ser" HeaderText="Mod User"
SortExpression= "ModUser">
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:BoundFie ld DataField="ModD ate"
DataFormatStrin g="{0:MM/dd/yyyy}" HeaderText="Mod Date"
HtmlEncode="Fal se" SortExpression= "ModDate">
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
</Columns>
</asp:GridView>
<br />
<asp:ObjectData Source ID="dsStormDeta il" runat="server"
SelectMethod="G etStormAssetsBy CntyAssetdId"
TypeName="Storm AssetsMainBLL"
EnableViewState ="False"
DeleteMethod="D elete">
<SelectParamete rs>
<asp:SessionPar ameter Name="id"
SessionField="c ntyAssetId" Type="Int32" />
</SelectParameter s>
<DeleteParamete rs>
<asp:Paramete r Name="stormValu eId" Type="Int32" />
</DeleteParameter s>
</asp:ObjectDataS ource>
<br />
<asp:Button ID="btnUpdate" runat="server" EnableViewState ="False"
Text="Update All" OnClick="btnUpd ate_Click"/>
<br />
</ContentTemplate >
<Triggers>
<asp:AsyncPostB ackTrigger ControlID="dvSt ormInsert"
EventName="Item Inserting" />
</Triggers>
</asp:UpdatePanel >
Nov 20 '08 #1
4 3731
an update panel will not postback if validation has an error.

-- bruce (sqlwork.com)
"SAL" wrote:
Hello,
I'm working, basically my first, AJAX page and am having a few problems.
One is that the Click event for a button I have in UpdatePanel1 is not
getting called. I've tried with the button both inside and outside of the
updatepanel and the event doesn't get called either way. What might I be
missing here?

Incidently, something else, kind of weird, is happening when the button is
clicked, a required field validator control in a detailsview that I have on
the page displays it's text, which in this case is just an astrix.
<asp:UpdatePane l ID="UpdatePanel 1" runat="server" UpdateMode="Alw ays">
<ContentTemplat e>
<asp:GridView ID="gvStormDeta il"
runat="server"
AutoGenerateCol umns="False"
DataSourceID="d sStormDetail"
EnableViewState ="False"
SkinID="gridvie wSkin"
Width="672px"
DataKeyNames="S tormValueID">
<Columns>
<asp:CommandFie ld ShowDeleteButto n="True" />
<asp:TemplateFi eld>
<ItemTemplate >
<asp:HyperLin k ID="hlMap" runat="server"
Target="_map">M ap</asp:HyperLink>
</ItemTemplate>
</asp:TemplateFie ld>
<asp:BoundFie ld DataField="Stor mValueID"
HeaderText="Sto rmValueID" InsertVisible=" False"
ReadOnly="True" SortExpression= "StormValue ID"
Visible="False" />
<asp:BoundFie ld DataField="Stor mAssetType"
HeaderText="Ass et Category" SortExpression= "StormAssetType " >
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:BoundFie ld DataField="Stor mAssetTypeID"
HeaderText="Sto rmAssetTypeID" SortExpression= "StormAssetType ID"
Visible="False" />
<asp:BoundFie ld DataField="Stor mAssetName"
HeaderText="Sto rm Asset Name" SortExpression= "StormAssetName " >
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:BoundFie ld DataField="StmF acilityClkID"
HeaderText="Stm FacilityClkID" SortExpression= "StmFacilityClk ID" >
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:TemplateFi eld HeaderText="Des cription"
SortExpression= "Descriptio n">
<EditItemTempla te>
<asp:TextBox ID="TextBox2" runat="server"
Text='<%# Bind("Descripti on") %>'></asp:TextBox>
</EditItemTemplat e>
<ItemTemplate >
<asp:Label ID="lblDescript ion" runat="server"
EnableViewState ="False" Height="24px"
Text='<%# Bind("Descripti on") %>'
Width="232px"></asp:Label>
</ItemTemplate>
<ItemStyle HorizontalAlign ="Center" />
</asp:TemplateFie ld>
<asp:TemplateFi eld HeaderText="Est imated Value"
SortExpression= "EstValue">
<EditItemTempla te>
<asp:TextBox ID="TextBox1" runat="server"
Text='<%# Bind("EstValue" ) %>'></asp:TextBox>
</EditItemTemplat e>
<ItemTemplate >
<asp:Label ID="lblEstValue " runat="server"
Text='<%# Bind("EstValue" , "{0:C0}") %>'></asp:Label>
<asp:TextBox ID="txtEstValue " runat="server"
EnableViewState ="False" Text='<%# Bind("EstValue" , "{0:C0}") %>'
Visible="False" Width="96px"></asp:TextBox>
</ItemTemplate>
<ItemStyle HorizontalAlign ="Right" />
</asp:TemplateFie ld>
<asp:BoundFie ld DataField="Cnty AssetID"
HeaderText="Cnt yAssetID" SortExpression= "CntyAssetI D"
Visible="False" />
<asp:TemplateFi eld></asp:TemplateFie ld>
<asp:BoundFie ld DataField="ModU ser" HeaderText="Mod User"
SortExpression= "ModUser">
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:BoundFie ld DataField="ModD ate"
DataFormatStrin g="{0:MM/dd/yyyy}" HeaderText="Mod Date"
HtmlEncode="Fal se" SortExpression= "ModDate">
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
</Columns>
</asp:GridView>
<br />
<asp:ObjectData Source ID="dsStormDeta il" runat="server"
SelectMethod="G etStormAssetsBy CntyAssetdId"
TypeName="Storm AssetsMainBLL"
EnableViewState ="False"
DeleteMethod="D elete">
<SelectParamete rs>
<asp:SessionPar ameter Name="id"
SessionField="c ntyAssetId" Type="Int32" />
</SelectParameter s>
<DeleteParamete rs>
<asp:Paramete r Name="stormValu eId" Type="Int32" />
</DeleteParameter s>
</asp:ObjectDataS ource>
<br />
<asp:Button ID="btnUpdate" runat="server" EnableViewState ="False"
Text="Update All" OnClick="btnUpd ate_Click"/>
<br />
</ContentTemplate >
<Triggers>
<asp:AsyncPostB ackTrigger ControlID="dvSt ormInsert"
EventName="Item Inserting" />
</Triggers>
</asp:UpdatePanel >
Nov 20 '08 #2
SAL
That detailsView is in another updatepanel though Bruce. I have two
updatepanels on the page. Updatepanel1 has a Gridview and a button called
btnUpdate.
Updatepanel2 has a detailsview in it. That's where the requiredfield
validator is. Why in the world would it ...
Oh, is it because I have the UpdateMode in Updatepanel1 set to always? If
it's not set to always, it doesn't update when a new record is added via the
detailsview in Updatepanel2...
That can't be it because I've put the btnUpdate both inside and outside of
UpdatePanel1...

Is this making any sense???

S

"bruce barker" <br*********@di scussions.micro soft.comwrote in message
news:24******** *************** ***********@mic rosoft.com...
an update panel will not postback if validation has an error.

-- bruce (sqlwork.com)
"SAL" wrote:
>Hello,
I'm working, basically my first, AJAX page and am having a few problems.
One is that the Click event for a button I have in UpdatePanel1 is not
getting called. I've tried with the button both inside and outside of the
updatepanel and the event doesn't get called either way. What might I be
missing here?

Incidently, something else, kind of weird, is happening when the button
is
clicked, a required field validator control in a detailsview that I have
on
the page displays it's text, which in this case is just an astrix.
<asp:UpdatePane l ID="UpdatePanel 1" runat="server"
UpdateMode="Al ways">
<ContentTemplat e>
<asp:GridView ID="gvStormDeta il"
runat="server"
AutoGenerateCol umns="False"
DataSourceID="d sStormDetail"
EnableViewState ="False"
SkinID="gridvie wSkin"
Width="672px"
DataKeyNames="S tormValueID">
<Columns>
<asp:CommandFie ld ShowDeleteButto n="True" />
<asp:TemplateFi eld>
<ItemTemplate >
<asp:HyperLin k ID="hlMap" runat="server"
Target="_map"> Map</asp:HyperLink>
</ItemTemplate>
</asp:TemplateFie ld>
<asp:BoundFie ld DataField="Stor mValueID"
HeaderText="St ormValueID" InsertVisible=" False"
ReadOnly="True" SortExpression= "StormValue ID"
Visible="False " />
<asp:BoundFie ld DataField="Stor mAssetType"
HeaderText="As set Category" SortExpression= "StormAssetType " >
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:BoundFie ld DataField="Stor mAssetTypeID"
HeaderText="St ormAssetTypeID" SortExpression= "StormAssetType ID"
Visible="False" />
<asp:BoundFie ld DataField="Stor mAssetName"
HeaderText="St orm Asset Name" SortExpression= "StormAssetName " >
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:BoundFie ld DataField="StmF acilityClkID"
HeaderText="St mFacilityClkID" SortExpression= "StmFacilityClk ID" >
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:TemplateFi eld HeaderText="Des cription"
SortExpression ="Descriptio n">
<EditItemTempla te>
<asp:TextBox ID="TextBox2" runat="server"
Text='<%# Bind("Descripti on") %>'></asp:TextBox>
</EditItemTemplat e>
<ItemTemplate >
<asp:Label ID="lblDescript ion" runat="server"
EnableViewStat e="False" Height="24px"
Text='<%# Bind("Descripti on") %>'
Width="232px"> </asp:Label>
</ItemTemplate>
<ItemStyle HorizontalAlign ="Center" />
</asp:TemplateFie ld>
<asp:TemplateFi eld HeaderText="Est imated Value"
SortExpression ="EstValue">
<EditItemTempla te>
<asp:TextBox ID="TextBox1" runat="server"
Text='<%# Bind("EstValue" ) %>'></asp:TextBox>
</EditItemTemplat e>
<ItemTemplate >
<asp:Label ID="lblEstValue " runat="server"
Text='<%# Bind("EstValue" , "{0:C0}") %>'></asp:Label>
<asp:TextBox ID="txtEstValue " runat="server"
EnableViewStat e="False" Text='<%# Bind("EstValue" , "{0:C0}") %>'
Visible="False"
Width="96px" ></asp:TextBox>
</ItemTemplate>
<ItemStyle HorizontalAlign ="Right" />
</asp:TemplateFie ld>
<asp:BoundFie ld DataField="Cnty AssetID"
HeaderText="Cn tyAssetID" SortExpression= "CntyAssetI D"
Visible="False" />
<asp:TemplateFi eld></asp:TemplateFie ld>
<asp:BoundFie ld DataField="ModU ser"
HeaderText="Mo dUser"
SortExpression ="ModUser">
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
<asp:BoundFie ld DataField="ModD ate"
DataFormatStri ng="{0:MM/dd/yyyy}" HeaderText="Mod Date"
HtmlEncode="Fal se" SortExpression= "ModDate">
<ItemStyle HorizontalAlign ="Center" />
</asp:BoundField>
</Columns>
</asp:GridView>
<br />
<asp:ObjectData Source ID="dsStormDeta il" runat="server"
SelectMethod="G etStormAssetsBy CntyAssetdId"
TypeName="Storm AssetsMainBLL"
EnableViewState ="False"
DeleteMethod="D elete">
<SelectParamete rs>
<asp:SessionPar ameter Name="id"
SessionField=" cntyAssetId" Type="Int32" />
</SelectParameter s>
<DeleteParamete rs>
<asp:Paramete r Name="stormValu eId" Type="Int32" />
</DeleteParameter s>
</asp:ObjectDataS ource>
<br />
<asp:Button ID="btnUpdate" runat="server" EnableViewState ="False"
Text="Update All" OnClick="btnUpd ate_Click"/>
<br />
</ContentTemplate >
<Triggers>
<asp:AsyncPostB ackTrigger ControlID="dvSt ormInsert"
EventName="Ite mInserting" />
</Triggers>
</asp:UpdatePanel >

Nov 21 '08 #3
Hi,

The validation will still stop the postback even the Validation control and
the Button control are put in different UpdatePanels.

To see if it's caused by the client side validation you can try to set
CausesValidatio n="false" to test:

<asp:Button ID="btnUpdate" runat="server" EnableViewState ="False"
Text="Update All" OnClick="btnUpd ate_Click"
CausesValidatio n="false"/>

Can the Click event handler get called in this way?

Regards,
Allen Chen
Microsoft Online Community Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subs...#notifications.

Note: MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 2 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. 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/en-us/subs.../aa948874.aspx
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 21 '08 #4
SAL
Sweet.
That did the trick Allen thanks.
Appreciate the help once again....
S

"Allen Chen [MSFT]" <v-******@online.m icrosoft.comwro te in message
news:xr******** ******@TK2MSFTN GHUB02.phx.gbl. ..
Hi,

The validation will still stop the postback even the Validation control
and
the Button control are put in different UpdatePanels.

To see if it's caused by the client side validation you can try to set
CausesValidatio n="false" to test:

<asp:Button ID="btnUpdate" runat="server" EnableViewState ="False"
Text="Update All" OnClick="btnUpd ate_Click"
CausesValidatio n="false"/>

Can the Click event handler get called in this way?

Regards,
Allen Chen
Microsoft Online Community Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subs...#notifications.

Note: MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 2 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. 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/en-us/subs.../aa948874.aspx
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no
rights.

Nov 21 '08 #5

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

Similar topics

3
5139
by: Jason Kyle Baginski | last post by:
Here's a little test app to demonstrate a problem I'm having. It creates four buttons, each one with the different FlatStyle types available. Three of them behave exactly the same way(and the way I'd anticipate), but the FlatStyle.System one does not. If you click on any of the buttons, use the enter key, or the spacebar, they will bring up a messagebox that says "Activate". Except the FlatStyle.System one, which will bring up _two_...
1
2734
by: Divya | last post by:
Hello This is my 1st project where I have to create a Webcontrol. I have created a simple custom control with a button and 2 labels added to a panel. My problem is that the event handler that I have assigned to the button , is not getting invoked. Could anyone please go thru the code and let me know what I am missing here? Thanks in advance My custom control is as follows using System using System.Web using System.Web.UI using...
2
4020
by: Oney | last post by:
I want to open a popup window when user click the web server button control When user click the button, only OnClik="OpenWindow(12)" is sent but no event happend no popup opened.After that, user click again popup window is open. So user must click twice! So I must raise event twice. How can I do that or do you advice any solution? Thanks!
1
1313
by: Steve | last post by:
Hello, In my first (of 2) aspx page I have 2 listboxes. I populate the first listbox in the PageLoad event If Not IsPostBack Then .... When I select an item from the first listbox, lst1, the 2nd listbox gets populated and writes some text to a
3
8814
by: Imran Aziz | last post by:
Hello All, I have a search text and button that post data and my button handler filters the repeater control. However when the button is clicked the first time. The page_load event is being called twice, once with postback true, and second time without postback. This only happens for this button. How can I sort out this issue, any clues what to look for to get this sorted please. <p>Search Bookmarks: <asp:TextBox ID="txtSearch"...
3
1539
by: Chris Dunaway | last post by:
I have derived a class from the System.Windows.Forms.Button class in order to draw the button differently. Among other things, I paint the background of the button in the OnPaing override. Next I wanted the background color to change when the button was clicked so I overrided the OnMouseDown and OnMouseUp events like so: (pseudocode)
4
8469
by: Bob | last post by:
Hi, I'm working with VWD and i defined programmatically a button (in code-behind) with an ID. So I expect to see beside "Page Events" and "Form1" my button "b1" in order to use the Click event. But it doesnt' appear. After saving the code-behind file, i only see "Page Events" and "Form1". If i define the button declarativally, i see it. But i need to define it programmatically. Can anybody tell me how to do? I also tried with...
9
2747
by: Jonathan Wood | last post by:
Does anyone know of any reason a button on a master page would have no effect? I have a complex HTML page that I'm converting to ASP.NET, and acknowledge I could have something odd that is affecting this. But I'm stuck. My handler is in C# code and the code looks right. But absolutely nothing happens when I click the button. protected void Button1_Click(object sender, EventArgs e)
4
1510
by: =?Utf-8?B?c21heQ==?= | last post by:
I'm trying to raise the click event of a button from my Page_Load event so that after the Page_Load completes the myBtn_Click event is fired, just as if a user had clicked the button. I can't just call myBtn_Click, page_load must complete first just as it would if a user had clicked. I keep getting an error telling me to set the page's EnableEventValidation to false, but I don't want to do that. For testing, I did set it to false and...
0
9456
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
9275
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
9843
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
9713
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
8713
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
7248
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
5142
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...
0
5304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3805
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.