473,721 Members | 2,254 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Message back from JavaScript

I am trying to set up a Javascript popup box that has a way of sending back
a message to asp.net on how to process some data.

At the moment I am just doing:

myNextButton.At tributes.Add("o nclick", "return confirm('Are you sure you
want finish this test?');")

to attach a popup box to a button. The problem is that the buttons only say
OK and Cancel. OK will take me to the event tied to the button and Cancel,
in effect, says to do nothing and act as if the User never pressed the
button.

What I am trying to do is have something different on the button, such as
Proceed or Go Back and someway to tell asp.net on the postback which button
was pushed.

The problem is that if you press the button, the event that is tied to the
onClick button will fire, and will do any normal processing. I want it to
process based on which buttons were pushed. Is there a way to send a
message to the event telling it what was done?

Thanks,

Tom
Nov 19 '05 #1
6 1942
Not sure to follow. I would just have two distinct buttons on my ASP.NET
Page each with its own click event handler server side. You can always ask
confirmation client side as you do now when one of these buttons is
pressed...

You could also create your won dialog if you prefer (but users would have to
press one button, then choos another button plus perhaps a cancel button in
this dialog). I would just put two buttons on the source page.

Patrice

--

"tshad" <ts**********@f tsolutions.com> a écrit dans le message de
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
I am trying to set up a Javascript popup box that has a way of sending back a message to asp.net on how to process some data.

At the moment I am just doing:

myNextButton.At tributes.Add("o nclick", "return confirm('Are you sure you want finish this test?');")

to attach a popup box to a button. The problem is that the buttons only say OK and Cancel. OK will take me to the event tied to the button and Cancel, in effect, says to do nothing and act as if the User never pressed the
button.

What I am trying to do is have something different on the button, such as
Proceed or Go Back and someway to tell asp.net on the postback which button was pushed.

The problem is that if you press the button, the event that is tied to the
onClick button will fire, and will do any normal processing. I want it to
process based on which buttons were pushed. Is there a way to send a
message to the event telling it what was done?

Thanks,

Tom

Nov 19 '05 #2
"Patrice" <no****@nowhere .com> wrote in message
news:u6******** ******@tk2msftn gp13.phx.gbl...
Not sure to follow. I would just have two distinct buttons on my ASP.NET
Page each with its own click event handler server side. You can always ask
confirmation client side as you do now when one of these buttons is
pressed...

You could also create your won dialog if you prefer (but users would have
to
press one button, then choos another button plus perhaps a cancel button
in
this dialog). I would just put two buttons on the source page.
No, the problem is that I want to put up a warning popup window, which I am
doing now to alert the user that there is a problem and then be able to
handle the event based on which buttons he pushes. With the Confirm popup,
you only get to go on as normal or do nothing. You also can't change the
text on the buttons (I don't think).

I need to allow the user to something akin to a message box that passes back
a message that tells me what was pushed and then pass that message back to
the onClick event of the button.

Thanks,

Tom
Patrice

--

"tshad" <ts**********@f tsolutions.com> a écrit dans le message de
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
I am trying to set up a Javascript popup box that has a way of sending

back
a message to asp.net on how to process some data.

At the moment I am just doing:

myNextButton.At tributes.Add("o nclick", "return confirm('Are you sure

you
want finish this test?');")

to attach a popup box to a button. The problem is that the buttons only

say
OK and Cancel. OK will take me to the event tied to the button and

Cancel,
in effect, says to do nothing and act as if the User never pressed the
button.

What I am trying to do is have something different on the button, such as
Proceed or Go Back and someway to tell asp.net on the postback which

button
was pushed.

The problem is that if you press the button, the event that is tied to
the
onClick button will fire, and will do any normal processing. I want it
to
process based on which buttons were pushed. Is there a way to send a
message to the event telling it what was done?

Thanks,

Tom


Nov 19 '05 #3
Humm.. Sorry but still don't really understanding. So :
- you have a button. The users click on it.
- you want then to display a dialog box with two buttons A & B. If the user
choose A you have a postback and an action, if the user choose B you have
also some action to perform.
- for some reason you can have directly both A & B buttons on the source
page (perhaps you don't know you'll have them bas this is base on some
server side condition)

You could then :
- the user presses the button
- you open your own dialog with those two buttons (suing
window.showModa lDialog), you return (window.returnV alue) which button was
pressed
- here based on this return value, you could call the click event of either
the hidden "A" or the hidden "B" button.
- server side this will be seen as a click that is handled either by the A
event handler or the B event handler

Patrice

--

"tshad" <ts**********@f tsolutions.com> a écrit dans le message de
news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
"Patrice" <no****@nowhere .com> wrote in message
news:u6******** ******@tk2msftn gp13.phx.gbl...
Not sure to follow. I would just have two distinct buttons on my ASP.NET
Page each with its own click event handler server side. You can always ask confirmation client side as you do now when one of these buttons is
pressed...

You could also create your won dialog if you prefer (but users would have to
press one button, then choos another button plus perhaps a cancel button
in
this dialog). I would just put two buttons on the source page.
No, the problem is that I want to put up a warning popup window, which I

am doing now to alert the user that there is a problem and then be able to
handle the event based on which buttons he pushes. With the Confirm popup, you only get to go on as normal or do nothing. You also can't change the
text on the buttons (I don't think).

I need to allow the user to something akin to a message box that passes back a message that tells me what was pushed and then pass that message back to
the onClick event of the button.

Thanks,

Tom

Patrice

--

"tshad" <ts**********@f tsolutions.com> a écrit dans le message de
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
I am trying to set up a Javascript popup box that has a way of sending

back
a message to asp.net on how to process some data.

At the moment I am just doing:

myNextButton.At tributes.Add("o nclick", "return confirm('Are you sure

you
want finish this test?');")

to attach a popup box to a button. The problem is that the buttons only
say
OK and Cancel. OK will take me to the event tied to the button and

Cancel,
in effect, says to do nothing and act as if the User never pressed the
button.

What I am trying to do is have something different on the button, such

as Proceed or Go Back and someway to tell asp.net on the postback which

button
was pushed.

The problem is that if you press the button, the event that is tied to
the
onClick button will fire, and will do any normal processing. I want it
to
process based on which buttons were pushed. Is there a way to send a
message to the event telling it what was done?

Thanks,

Tom



Nov 19 '05 #4
"Patrice" <no****@nowhere .com> wrote in message
news:Ot******** ******@TK2MSFTN GP14.phx.gbl...
Humm.. Sorry but still don't really understanding. So :
- you have a button. The users click on it.
- you want then to display a dialog box with two buttons A & B. If the
user
choose A you have a postback and an action, if the user choose B you have
also some action to perform.
- for some reason you can have directly both A & B buttons on the source
page (perhaps you don't know you'll have them bas this is base on some
server side condition)
I don't want the buttons on the source page as I want them to really see the
problem and a popup dialog is the best way (I think).

It does work the way I have it set up. The only problem is that I have no
idea that the user pressed a button or which button was pressed in asp.net
as the button was pressed in the client side script and not the server side
script.

The way it is set up is I have a button on the page (Submit). There is no
onClick event yet.

In my code, I find some situation that might necessitate my informing the
user of something I want him to do. So I "add" the event to the "Submit"
button, before he presses it.

When he presses it, the popup dialog appears which has 2 buttons on it - OK
and Cancel. Normal for a Javascript Confirm box.

When the OK button is pushed, it goes on with normal processing for the
Submit button. If Cancel is pressed, it will do nothing.
You could then :
- the user presses the button
- you open your own dialog
Not sure how to do this.
with those two buttons (suing
window.showModa lDialog), you return (window.returnV alue) which button was
pressed
- here based on this return value, you could call the click event of
either
the hidden "A" or the hidden "B" button.
- server side this will be seen as a click that is handled either by the A
event handler or the B event handler
Again, not sure how to handle this, but it sounds like it might work.

Tom
Patrice

--

"tshad" <ts**********@f tsolutions.com> a écrit dans le message de
news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
"Patrice" <no****@nowhere .com> wrote in message
news:u6******** ******@tk2msftn gp13.phx.gbl...
> Not sure to follow. I would just have two distinct buttons on my
> ASP.NET
> Page each with its own click event handler server side. You can always ask > confirmation client side as you do now when one of these buttons is
> pressed...
>
> You could also create your won dialog if you prefer (but users would have > to
> press one button, then choos another button plus perhaps a cancel
> button
> in
> this dialog). I would just put two buttons on the source page.


No, the problem is that I want to put up a warning popup window, which I

am
doing now to alert the user that there is a problem and then be able to
handle the event based on which buttons he pushes. With the Confirm

popup,
you only get to go on as normal or do nothing. You also can't change the
text on the buttons (I don't think).

I need to allow the user to something akin to a message box that passes

back
a message that tells me what was pushed and then pass that message back
to
the onClick event of the button.

Thanks,

Tom
>
> Patrice
>
> --
>
> "tshad" <ts**********@f tsolutions.com> a écrit dans le message de
> news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
>> I am trying to set up a Javascript popup box that has a way of sending
> back
>> a message to asp.net on how to process some data.
>>
>> At the moment I am just doing:
>>
>> myNextButton.At tributes.Add("o nclick", "return confirm('Are you
>> sure
> you
>> want finish this test?');")
>>
>> to attach a popup box to a button. The problem is that the buttons only > say
>> OK and Cancel. OK will take me to the event tied to the button and
> Cancel,
>> in effect, says to do nothing and act as if the User never pressed the
>> button.
>>
>> What I am trying to do is have something different on the button, such as >> Proceed or Go Back and someway to tell asp.net on the postback which
> button
>> was pushed.
>>
>> The problem is that if you press the button, the event that is tied to
>> the
>> onClick button will fire, and will do any normal processing. I want
>> it
>> to
>> process based on which buttons were pushed. Is there a way to send a
>> message to the event telling it what was done?
>>
>> Thanks,
>>
>> Tom
>>
>>
>
>



Nov 19 '05 #5
So you'll need on the first page :
- an hidden button A with its server side handler
- an hidden button B with its server side handler
- when clicking a button (not a submit button) you'll use window.open or
window.showModa lDialog (please see the DHTML doc for details) to open a new
page
- on this page you have "Process method A" and "Process method B" buttons
- by using window.returnVa lue (see the DHTML doc) you'll return the selected
button to the caller
- in the first page, based on the return value, you should be able to call
either A.Click() or B.click() client side
- it will cause the page to postback and it should be seen by ASP.NET as if
the user had cliked the corresponding button
- in the server side handler you can then do what you intented...

Perhaps someone will come with a simpler suggestion

Patrice

--

"tshad" <ts**********@f tsolutions.com> a écrit dans le message de
news:ud******** ******@TK2MSFTN GP09.phx.gbl...
"Patrice" <no****@nowhere .com> wrote in message
news:Ot******** ******@TK2MSFTN GP14.phx.gbl...
Humm.. Sorry but still don't really understanding. So :
- you have a button. The users click on it.
- you want then to display a dialog box with two buttons A & B. If the
user
choose A you have a postback and an action, if the user choose B you have also some action to perform.
- for some reason you can have directly both A & B buttons on the source
page (perhaps you don't know you'll have them bas this is base on some
server side condition)
I don't want the buttons on the source page as I want them to really see

the problem and a popup dialog is the best way (I think).

It does work the way I have it set up. The only problem is that I have no
idea that the user pressed a button or which button was pressed in asp.net
as the button was pressed in the client side script and not the server side script.

The way it is set up is I have a button on the page (Submit). There is no
onClick event yet.

In my code, I find some situation that might necessitate my informing the
user of something I want him to do. So I "add" the event to the "Submit"
button, before he presses it.

When he presses it, the popup dialog appears which has 2 buttons on it - OK and Cancel. Normal for a Javascript Confirm box.

When the OK button is pushed, it goes on with normal processing for the
Submit button. If Cancel is pressed, it will do nothing.

You could then :
- the user presses the button
- you open your own dialog


Not sure how to do this.
with those two buttons (suing
window.showModa lDialog), you return (window.returnV alue) which button was pressed
- here based on this return value, you could call the click event of
either
the hidden "A" or the hidden "B" button.
- server side this will be seen as a click that is handled either by the A event handler or the B event handler


Again, not sure how to handle this, but it sounds like it might work.

Tom

Patrice

--

"tshad" <ts**********@f tsolutions.com> a écrit dans le message de
news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
"Patrice" <no****@nowhere .com> wrote in message
news:u6******** ******@tk2msftn gp13.phx.gbl...
> Not sure to follow. I would just have two distinct buttons on my
> ASP.NET
> Page each with its own click event handler server side. You can always
ask
> confirmation client side as you do now when one of these buttons is
> pressed...
>
> You could also create your won dialog if you prefer (but users would

have
> to
> press one button, then choos another button plus perhaps a cancel
> button
> in
> this dialog). I would just put two buttons on the source page.

No, the problem is that I want to put up a warning popup window, which
I am
doing now to alert the user that there is a problem and then be able to
handle the event based on which buttons he pushes. With the Confirm

popup,
you only get to go on as normal or do nothing. You also can't change
the text on the buttons (I don't think).

I need to allow the user to something akin to a message box that passes

back
a message that tells me what was pushed and then pass that message back
to
the onClick event of the button.

Thanks,

Tom
>
> Patrice
>
> --
>
> "tshad" <ts**********@f tsolutions.com> a écrit dans le message de
> news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
>> I am trying to set up a Javascript popup box that has a way of sending > back
>> a message to asp.net on how to process some data.
>>
>> At the moment I am just doing:
>>
>> myNextButton.At tributes.Add("o nclick", "return confirm('Are you
>> sure
> you
>> want finish this test?');")
>>
>> to attach a popup box to a button. The problem is that the buttons

only
> say
>> OK and Cancel. OK will take me to the event tied to the button and
> Cancel,
>> in effect, says to do nothing and act as if the User never pressed the >> button.
>>
>> What I am trying to do is have something different on the button, such as
>> Proceed or Go Back and someway to tell asp.net on the postback which
> button
>> was pushed.
>>
>> The problem is that if you press the button, the event that is tied

to >> the
>> onClick button will fire, and will do any normal processing. I want
>> it
>> to
>> process based on which buttons were pushed. Is there a way to send a >> message to the event telling it what was done?
>>
>> Thanks,
>>
>> Tom
>>
>>
>
>



Nov 19 '05 #6
"Patrice" <no****@nowhere .com> wrote in message
news:u9******** *****@TK2MSFTNG P12.phx.gbl...
So you'll need on the first page :
- an hidden button A with its server side handler
- an hidden button B with its server side handler
- when clicking a button (not a submit button) you'll use window.open or
window.showModa lDialog (please see the DHTML doc for details) to open a
new
page
The reason I am using Javascript prompt is that it is Modal (can't touch the
Parent page until I respond to the new window). Window.Open is not Modal
and ShowModalDialog only works in IE (this would have been perfect). Andy
Smith (Metabuilders) has a real good Dialog object, but it also isn't modal.

The Confirm box (Javascript) works fine, but when if the user presses the
Cancel button, it just stops. It doesn't generate and event that would
allow me to take an action.

Tom
- on this page you have "Process method A" and "Process method B" buttons
- by using window.returnVa lue (see the DHTML doc) you'll return the
selected
button to the caller
- in the first page, based on the return value, you should be able to call
either A.Click() or B.click() client side
- it will cause the page to postback and it should be seen by ASP.NET as
if
the user had cliked the corresponding button
- in the server side handler you can then do what you intented...

Perhaps someone will come with a simpler suggestion

Patrice

--

"tshad" <ts**********@f tsolutions.com> a écrit dans le message de
news:ud******** ******@TK2MSFTN GP09.phx.gbl...
"Patrice" <no****@nowhere .com> wrote in message
news:Ot******** ******@TK2MSFTN GP14.phx.gbl...
> Humm.. Sorry but still don't really understanding. So :
> - you have a button. The users click on it.
> - you want then to display a dialog box with two buttons A & B. If the
> user
> choose A you have a postback and an action, if the user choose B you have > also some action to perform.
> - for some reason you can have directly both A & B buttons on the
> source
> page (perhaps you don't know you'll have them bas this is base on some
> server side condition)


I don't want the buttons on the source page as I want them to really see

the
problem and a popup dialog is the best way (I think).

It does work the way I have it set up. The only problem is that I have
no
idea that the user pressed a button or which button was pressed in
asp.net
as the button was pressed in the client side script and not the server

side
script.

The way it is set up is I have a button on the page (Submit). There is
no
onClick event yet.

In my code, I find some situation that might necessitate my informing the
user of something I want him to do. So I "add" the event to the "Submit"
button, before he presses it.

When he presses it, the popup dialog appears which has 2 buttons on it -

OK
and Cancel. Normal for a Javascript Confirm box.

When the OK button is pushed, it goes on with normal processing for the
Submit button. If Cancel is pressed, it will do nothing.
>
> You could then :
> - the user presses the button
> - you open your own dialog


Not sure how to do this.
>with those two buttons (suing
> window.showModa lDialog), you return (window.returnV alue) which button was > pressed
> - here based on this return value, you could call the click event of
> either
> the hidden "A" or the hidden "B" button.
> - server side this will be seen as a click that is handled either by
> the A > event handler or the B event handler


Again, not sure how to handle this, but it sounds like it might work.

Tom
>
> Patrice
>
> --
>
> "tshad" <ts**********@f tsolutions.com> a écrit dans le message de
> news:%2******** ********@TK2MSF TNGP14.phx.gbl. ..
>> "Patrice" <no****@nowhere .com> wrote in message
>> news:u6******** ******@tk2msftn gp13.phx.gbl...
>> > Not sure to follow. I would just have two distinct buttons on my
>> > ASP.NET
>> > Page each with its own click event handler server side. You can always > ask
>> > confirmation client side as you do now when one of these buttons is
>> > pressed...
>> >
>> > You could also create your won dialog if you prefer (but users would
> have
>> > to
>> > press one button, then choos another button plus perhaps a cancel
>> > button
>> > in
>> > this dialog). I would just put two buttons on the source page.
>>
>> No, the problem is that I want to put up a warning popup window, which I > am
>> doing now to alert the user that there is a problem and then be able
>> to
>> handle the event based on which buttons he pushes. With the Confirm
> popup,
>> you only get to go on as normal or do nothing. You also can't change the >> text on the buttons (I don't think).
>>
>> I need to allow the user to something akin to a message box that
>> passes
> back
>> a message that tells me what was pushed and then pass that message
>> back
>> to
>> the onClick event of the button.
>>
>> Thanks,
>>
>> Tom
>> >
>> > Patrice
>> >
>> > --
>> >
>> > "tshad" <ts**********@f tsolutions.com> a écrit dans le message de
>> > news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
>> >> I am trying to set up a Javascript popup box that has a way of sending >> > back
>> >> a message to asp.net on how to process some data.
>> >>
>> >> At the moment I am just doing:
>> >>
>> >> myNextButton.At tributes.Add("o nclick", "return confirm('Are you
>> >> sure
>> > you
>> >> want finish this test?');")
>> >>
>> >> to attach a popup box to a button. The problem is that the buttons
> only
>> > say
>> >> OK and Cancel. OK will take me to the event tied to the button and
>> > Cancel,
>> >> in effect, says to do nothing and act as if the User never pressed the >> >> button.
>> >>
>> >> What I am trying to do is have something different on the button, such > as
>> >> Proceed or Go Back and someway to tell asp.net on the postback
>> >> which
>> > button
>> >> was pushed.
>> >>
>> >> The problem is that if you press the button, the event that is tied to >> >> the
>> >> onClick button will fire, and will do any normal processing. I
>> >> want
>> >> it
>> >> to
>> >> process based on which buttons were pushed. Is there a way to send a >> >> message to the event telling it what was done?
>> >>
>> >> Thanks,
>> >>
>> >> Tom
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Nov 19 '05 #7

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

Similar topics

9
2740
by: Bob Bedford | last post by:
I've a page where the user may enter some values and upload some pictures. Unfortunately, some pictures coming from digital camera are very big, and take a lot of time for uploading. I've created a DIV that I show when uploading, but this uses DHTML and javascript, wich are not available everywhere. How to do something like:
3
9149
by: woodsie | last post by:
i'm looking for a back script that will work in Safari (on mac). the one below works fine in IE and netscape but not safari. <a href="#" onClick="history.go(-1)">go back</a> any help plz?
9
13073
by: ben | last post by:
I have a web application whic connects to the database and populates a datagrid based on 2 fields the user enters on the web form. I have a try catch block to make sure that in case the user enters values(dates) not found in database, then i redirect the user to the origianl page where they enter the values. I would like a message box saying they entered invalid dates(not a check for date format, but that they entred dates which dont...
7
3114
by: Grey | last post by:
how to design confirm message box, like Javascript Confirm box, in ASP.NET?? if the user click "YES" in the confirm box, i need to do something, else do other things. Do I need to have javascript confirm box or ASP.NET has such feature?? Million thanks.
6
3413
by: Dave | last post by:
Hello. I want to prompt user for some action with Yes/No message, I know some tricks in JavaScript, but I need to handle the user answer at server side. Exactly I want to prompt user for confirmation on delete action of some data in my application. How can I do this?
2
3747
by: Mike Moore | last post by:
asp.net app - How do you get Java-side code to communicate with server-side code? I have tried numerous ways and examples, but have been unsuccessful. Therefore, unless I get real lucky and find another way of doing a messagebox, none of the existing ways will work with the code we have already written. Most all of the message box examples that I have found had the message box code being executed behind a button, which triggers a...
2
3287
by: Microsoft News | last post by:
What I have is a message box that pops up. It is another browser window. The code is a general function that you pass message, title and a key to. The box works great except, that if you are on a page, get the message box, then click ok on the message box go to another page and then back to the first page. The message box pops up again. It is almost like the history or cache still has information about the state and that it knows that...
6
2957
by: Mark | last post by:
I'm building a web utility to do some processing that will run for several hours. Assume I have a valid reason for using the web for the utility. During the process I'd like to display an update on the job's status while not stopping the process that is running. It does not need to be pretty. I'd be quite happy with a quick Response.Write("Job has finished consuming 300 of 9356 bananas"); or similar. I don't care if the message is...
5
6256
by: The alMIGHTY N | last post by:
Hi all, Let's say I have a simple math formula: sum (x * y / 1000) / (sum z / 1000) I have to do this across 50 items, each with an x, y and z value, when the page first loads AND when a user modifies any of the x, y and z values.
0
8840
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
8730
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,...
0
9367
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...
0
9215
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8007
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
6669
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
4484
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
4753
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3189
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.