473,399 Members | 3,038 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

YES/NO confirmation + Validation control

Hi,

I want to have confirmation(Yes/No) on a button of the webform in which
there are many validation controls. I want all the validation controls to be
triggered first and then Yes/No confirmation message. By adding just an
confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu

Nov 18 '05 #1
6 3680
Nedu,

I created a disable submit javascript that keeps a user from clicking the
submit button a second time.

The part of the script that will interest you is that I'm tying in to the
..Net validation script in order to check that the submit button doesn't get
disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit" function
in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to have confirmation(Yes/No) on a button of the webform in which
there are many validation controls. I want all the validation controls to be triggered first and then Yes/No confirmation message. By adding just an
confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu

Nov 18 '05 #2
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it
via the Control Gallery at www.asp.net, under "Form Controls". It's listed
as "Confirmed Buttons". This control takes care of the javascript for you.
The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the
http://www.microsoft.com/protect site and perform the three straightforward
steps listed to improve your computer’s security.

This posting is provided "AS IS", with no warranties, and confers no rights.
--------------------
Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
References: <uX**************@TK2MSFTNGP12.phx.gbl>
Subject: Re: YES/NO confirmation + Validation control
Date: Tue, 25 Nov 2003 11:31:16 -0600
Lines: 88
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 63.238.248.99
Path: cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
..phx.gbl!TK2MSFTNGP11.phx.gbl Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:192675
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Nedu,

I created a disable submit javascript that keeps a user from clicking the
submit button a second time.

The part of the script that will interest you is that I'm tying in to the
.Net validation script in order to check that the submit button doesn't get disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit" function in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to have confirmation(Yes/No) on a button of the webform in which
there are many validation controls. I want all the validation controls
to be
triggered first and then Yes/No confirmation message. By adding just an
confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu



Nov 18 '05 #3
Mike,

That's a great article. It's got me thinking about converting my code (which
I have in a javascript object I drop on a page and then use to hook up
"regular" .Net buttons to my script) into an inherited button control.

The only problem with the sample you pointed Nedu to is that he specifically
said that he wants his confirmation to fire after the validation and the
sample fires it before the validation.

An excerpt from the article:

"...and I also wanted to be sure my click handler fired first."

And Nedu's request:

"I want all the validation controls to be triggered first and then
Yes/No confirmation message"

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
""Mike Moore [MSFT]"" <mi****@online.microsoft.com> wrote in message
news:sf****************@cpmsftngxa07.phx.gbl...
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it
via the Control Gallery at www.asp.net, under "Form Controls". It's listed
as "Confirmed Buttons". This control takes care of the javascript for you.
The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the
http://www.microsoft.com/protect site and perform the three straightforward steps listed to improve your computer's security.

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

--------------------
Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
References: <uX**************@TK2MSFTNGP12.phx.gbl>
Subject: Re: YES/NO confirmation + Validation control
Date: Tue, 25 Nov 2003 11:31:16 -0600
Lines: 88
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 63.238.248.99
Path:

cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08 phx.gbl!TK2MSFTNGP11.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:192675 X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Nedu,

I created a disable submit javascript that keeps a user from clicking the submit button a second time.

The part of the script that will interest you is that I'm tying in to the .Net validation script in order to check that the submit button doesn't

get
disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit"

function
in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to have confirmation(Yes/No) on a button of the webform in which there are many validation controls. I want all the validation controls

to
be
triggered first and then Yes/No confirmation message. By adding just an confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu


Nov 18 '05 #4
Thank you Mike..
Sue..i will look into this article...

""Mike Moore [MSFT]"" <mi****@online.microsoft.com> wrote in message
news:sf****************@cpmsftngxa07.phx.gbl...
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it
via the Control Gallery at www.asp.net, under "Form Controls". It's listed
as "Confirmed Buttons". This control takes care of the javascript for you.
The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the
http://www.microsoft.com/protect site and perform the three straightforward steps listed to improve your computer's security.

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

--------------------
Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
References: <uX**************@TK2MSFTNGP12.phx.gbl>
Subject: Re: YES/NO confirmation + Validation control
Date: Tue, 25 Nov 2003 11:31:16 -0600
Lines: 88
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 63.238.248.99
Path:

cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08 phx.gbl!TK2MSFTNGP11.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:192675 X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Nedu,

I created a disable submit javascript that keeps a user from clicking the submit button a second time.

The part of the script that will interest you is that I'm tying in to the .Net validation script in order to check that the submit button doesn't

get
disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit"

function
in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to have confirmation(Yes/No) on a button of the webform in which there are many validation controls. I want all the validation controls

to
be
triggered first and then Yes/No confirmation message. By adding just an confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu


Nov 18 '05 #5
Thank you Justin...
It works great...

"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:eJ*************@TK2MSFTNGP10.phx.gbl...
Mike,

That's a great article. It's got me thinking about converting my code (which I have in a javascript object I drop on a page and then use to hook up
"regular" .Net buttons to my script) into an inherited button control.

The only problem with the sample you pointed Nedu to is that he specifically said that he wants his confirmation to fire after the validation and the
sample fires it before the validation.

An excerpt from the article:

"...and I also wanted to be sure my click handler fired first."

And Nedu's request:

"I want all the validation controls to be triggered first and then
Yes/No confirmation message"

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
""Mike Moore [MSFT]"" <mi****@online.microsoft.com> wrote in message
news:sf****************@cpmsftngxa07.phx.gbl...
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it
via the Control Gallery at www.asp.net, under "Form Controls". It's listed as "Confirmed Buttons". This control takes care of the javascript for you. The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the
http://www.microsoft.com/protect site and perform the three

straightforward
steps listed to improve your computer's security.

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

rights.


--------------------
Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
References: <uX**************@TK2MSFTNGP12.phx.gbl>
Subject: Re: YES/NO confirmation + Validation control
Date: Tue, 25 Nov 2003 11:31:16 -0600
Lines: 88
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 63.238.248.99
Path:

cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
phx.gbl!TK2MSFTNGP11.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:192675 X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Nedu,

I created a disable submit javascript that keeps a user from clicking the submit button a second time.

The part of the script that will interest you is that I'm tying in to the .Net validation script in order to check that the submit button doesn't get
disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit"

function
in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
> Hi,
>
> I want to have confirmation(Yes/No) on a button of the webform in which > there are many validation controls. I want all the validation
controls
to
be
> triggered first and then Yes/No confirmation message. By adding just

an > confirm attribute for 'onclick' event of the button doesn't work

with > validation controls. Is there any short way to go around this.
>
> Thanks
> Nedu
>
>
>


Nov 18 '05 #6
Nedu,

Great! I think I'll have to add a version like this to my javascript
component.

Until your request I never thought of combining the two pieces of code [a
javascript confirmation and disable submit], but it makes perfect sense.

Thanks for the idea!

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:eQ*************@TK2MSFTNGP10.phx.gbl...
Thank you Justin...
It works great...

"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:eJ*************@TK2MSFTNGP10.phx.gbl...
Mike,

That's a great article. It's got me thinking about converting my code

(which
I have in a javascript object I drop on a page and then use to hook up
"regular" .Net buttons to my script) into an inherited button control.

The only problem with the sample you pointed Nedu to is that he

specifically
said that he wants his confirmation to fire after the validation and the
sample fires it before the validation.

An excerpt from the article:

"...and I also wanted to be sure my click handler fired first."

And Nedu's request:

"I want all the validation controls to be triggered first and then
Yes/No confirmation message"

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
""Mike Moore [MSFT]"" <mi****@online.microsoft.com> wrote in message
news:sf****************@cpmsftngxa07.phx.gbl...
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it via the Control Gallery at www.asp.net, under "Form Controls". It's listed as "Confirmed Buttons". This control takes care of the javascript for you. The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the http://www.microsoft.com/protect site and perform the three

straightforward
steps listed to improve your computer's security.

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

rights.


--------------------
> Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
> From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
> References: <uX**************@TK2MSFTNGP12.phx.gbl>
> Subject: Re: YES/NO confirmation + Validation control
> Date: Tue, 25 Nov 2003 11:31:16 -0600
> Lines: 88
> X-Priority: 3
> X-MSMail-Priority: Normal
> X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
> Newsgroups: microsoft.public.dotnet.framework.aspnet
> NNTP-Posting-Host: 63.238.248.99
> Path:

cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
phx.gbl!TK2MSFTNGP11.phx.gbl
> Xref: cpmsftngxa07.phx.gbl

microsoft.public.dotnet.framework.aspnet:192675
> X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>
> Nedu,
>
> I created a disable submit javascript that keeps a user from
clicking
the
> submit button a second time.
>
> The part of the script that will interest you is that I'm tying in
to the
> .Net validation script in order to check that the submit button doesn't get
> disabled when the page isn't valid.
>
> I think you could modify it to do what you need.
>
> Here's the script (I've placed a comment line in the "checkSubmit"
function
> in the script where I think you could add your alert):
>
> <script language="javascript">
> <!--
> var submitcount=0;
>
> function disableSubmit()
> {
> if (typeof(Page_ClientValidate)=='function')
> {
> if (Page_ClientValidate() == true)
> {
> return checkSubmit();
> }
> else
> {
> return true;
> }
> }
> else
> {
> return checkSubmit();
> }
> }
>
> function checkSubmit()
> {
> if (submitcount == 0)
> {
> submitcount++; return true; //You could add your alert here.
> }
> else
> {
> alert('This form has already been submitted.'); return false;
> }
> }
> //-->
> </script>
>
> In VB.Net Attach it to your button like so:
>
> SubmitButton.Attributes.Add("onClick", "javascript: return
> disableSubmit();")
>
>
> --
> Sincerely,
>
> S. Justin Gengo, MCP
> Web Developer / Programmer
>
> Free code library at:
> www.aboutfortunate.com
>
> "Out of chaos comes order."
> Nietzche
>
>
> "Nedu N" <ne****@hotmail.com> wrote in message
> news:uX**************@TK2MSFTNGP12.phx.gbl...
> > Hi,
> >
> > I want to have confirmation(Yes/No) on a button of the webform in

which
> > there are many validation controls. I want all the validation controls to
> be
> > triggered first and then Yes/No confirmation message. By adding
just an
> > confirm attribute for 'onclick' event of the button doesn't work

with > > validation controls. Is there any short way to go around this.
> >
> > Thanks
> > Nedu
> >
> >
> >
>
>
>



Nov 18 '05 #7

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

Similar topics

4
by: Tim Meagher | last post by:
I am trying to use both validation controls and to add submit button attributes, but when I add the button attributes, the javascript fpr the validation controls is no longer created for the page. ...
14
by: Matt | last post by:
I want to know if ASP.NET Web Forms Validation Controls are Server-Side or Client-Side form validation? Since I think each validator control can select either 1) JavaScript based error dialog or 2)...
3
by: vcornjamb | last post by:
Hello, I am developing a web form that contains some buttons and a data grid which has as its last column link buttons that will delete the data associated with that row. Everything works fine,...
4
by: DrData | last post by:
I'm working on an ASP.Net application written in C#. On one page, there are several datagrid controls used to display, edit and delete detail records relating to the master record also displayed on...
2
by: Tim Frawley | last post by:
Source code attached indicates my problem with validation and a button bar save button. Fill the Textbox with some text then tab off the control. The message box will display the text in the...
2
by: steggun | last post by:
How To: Popup Confirmation Dialog & Redirect in LinkButton_OnClick Hello All, I have a ASP.NET 2.0 (C#) web form with a LinkButton control. In the server-side code for the LinkButton_OnClick...
2
by: bienwell | last post by:
Hi all, I still have a problem when using Confirmation box in ASP.NET program. I need to get the value return of YES or NO from confirmation box in Sub function of VB program to do some tasks....
2
by: simon_eyer | last post by:
Hi, I use a datagrid with a delete command. I create a validation on the delete command and i have a problem: the confirmation message is supposes to appear each time I do this command but it...
2
by: bay_dar | last post by:
Hi, I have an internal ASP.NET application that I'm are using to send e-mails out based on a single milepost or milepost range entered. I'm trying to do two things when a user clicks on the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
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...
0
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,...
0
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...
0
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,...

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.