Hi,
I have a datagrid with a radiobutton template column, with AutoPostBack set
to TRUE. When the user clicks on a radiobutton the application will
PostBack, and in the PostBack there will be certain logic performed, and the
dataview will be re-binded to the datagrid. There turns out to be about 2-5
seconds delay between the time the user clicks the radiobutton and when the
page is completely re-loaded. During this time the user may try clicking
into other controls unaware that the page is being refreshed, so what I'd
like to have happen is as soon as they click on the radiobutton I'll have a
popup window that states for them "to please wait..", and when the page is
finished re-loading have the popup window close. I tried doing this with
javascript and window.open and window.close but could not get it working.
Does anybody have a suggestion, or possibly sample code?
Thanks,
John 9 3211
John,
Entertain Users During Lengthy Operations may be interested for you.
Eliyahu
"John Walker" <Jo********@discussions.microsoft.com> wrote in message
news:CB**********************************@microsof t.com... Hi, I have a datagrid with a radiobutton template column, with AutoPostBack
set to TRUE. When the user clicks on a radiobutton the application will PostBack, and in the PostBack there will be certain logic performed, and
the dataview will be re-binded to the datagrid. There turns out to be about
2-5 seconds delay between the time the user clicks the radiobutton and when
the page is completely re-loaded. During this time the user may try clicking into other controls unaware that the page is being refreshed, so what I'd like to have happen is as soon as they click on the radiobutton I'll have
a popup window that states for them "to please wait..", and when the page is finished re-loading have the popup window close. I tried doing this with javascript and window.open and window.close but could not get it working. Does anybody have a suggestion, or possibly sample code?
Thanks, John
John Walker wrote: Hi, I have a datagrid with a radiobutton template column, with AutoPostBack set to TRUE. When the user clicks on a radiobutton the application will PostBack, and in the PostBack there will be certain logic performed, and the dataview will be re-binded to the datagrid. There turns out to be about 2-5 seconds delay between the time the user clicks the radiobutton and when the page is completely re-loaded. During this time the user may try clicking into other controls unaware that the page is being refreshed, so what I'd like to have happen is as soon as they click on the radiobutton I'll have a popup window that states for them "to please wait..", and when the page is finished re-loading have the popup window close. I tried doing this with javascript and window.open and window.close but could not get it working. Does anybody have a suggestion, or possibly sample code?
Thanks, John
You'll have to stick with client side code, perhaps hit a javascript
group. The server side execution has no control.
You are on the right lines... you should be able to "window.open()" with
the client event and have the page send back a close call to the other
window
--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Eliyahu,
I found that article, but that solution was for "particularly time-consuming
operation over the Web. By 'time consuming operation' I mean all those
operations that, in a Windows Forms scenario, typically require a progress
bar."
My situation deals with only a couple to a few seconds that the user should
know not to try to make changes till the screen is refreshed. Is there a
simple way to indicate to the user that 'page is refreshing'?
"Eliyahu Goldin" wrote: John,
Entertain Users During Lengthy Operations may be interested for you.
Eliyahu
"John Walker" <Jo********@discussions.microsoft.com> wrote in message news:CB**********************************@microsof t.com... Hi, I have a datagrid with a radiobutton template column, with AutoPostBack set to TRUE. When the user clicks on a radiobutton the application will PostBack, and in the PostBack there will be certain logic performed, and the dataview will be re-binded to the datagrid. There turns out to be about 2-5 seconds delay between the time the user clicks the radiobutton and when the page is completely re-loaded. During this time the user may try clicking into other controls unaware that the page is being refreshed, so what I'd like to have happen is as soon as they click on the radiobutton I'll have a popup window that states for them "to please wait..", and when the page is finished re-loading have the popup window close. I tried doing this with javascript and window.open and window.close but could not get it working. Does anybody have a suggestion, or possibly sample code?
Thanks, John
John,
Sorry for the missing link, it was supposed to be there.
Even if you tell the user that 'page is refreshing', you are more interested
in disabling input controls. What about handling client-side onclick events
to disable all html inputs and show a hidden text "The page is refreshing"?
It's a hassle, but if you really want it...
Eliyahu
"John Walker" <Jo********@discussions.microsoft.com> wrote in message
news:10**********************************@microsof t.com... Eliyahu, I found that article, but that solution was for "particularly
time-consuming operation over the Web. By 'time consuming operation' I mean all those operations that, in a Windows Forms scenario, typically require a progress bar."
My situation deals with only a couple to a few seconds that the user
should know not to try to make changes till the screen is refreshed. Is there a simple way to indicate to the user that 'page is refreshing'?
"Eliyahu Goldin" wrote:
John,
Entertain Users During Lengthy Operations may be interested for you.
Eliyahu
"John Walker" <Jo********@discussions.microsoft.com> wrote in message news:CB**********************************@microsof t.com... Hi, I have a datagrid with a radiobutton template column, with
AutoPostBack set to TRUE. When the user clicks on a radiobutton the application will PostBack, and in the PostBack there will be certain logic performed,
and the dataview will be re-binded to the datagrid. There turns out to be
about 2-5 seconds delay between the time the user clicks the radiobutton and
when the page is completely re-loaded. During this time the user may try
clicking into other controls unaware that the page is being refreshed, so what
I'd like to have happen is as soon as they click on the radiobutton I'll
have a popup window that states for them "to please wait..", and when the
page is finished re-loading have the popup window close. I tried doing this
with javascript and window.open and window.close but could not get it
working. Does anybody have a suggestion, or possibly sample code?
Thanks, John
John,
this article might help you. http://www.codeproject.com/useritems...ableButton.asp
I'll post some code later/tomorrow which shows you how to pop up a window.
Basically all you have to do is to open a popup in the onsubmit event of
your form
HTHs
Daniel
"John Walker" <Jo********@discussions.microsoft.com> schrieb im Newsbeitrag
news:CB**********************************@microsof t.com... Hi, I have a datagrid with a radiobutton template column, with AutoPostBack set to TRUE. When the user clicks on a radiobutton the application will PostBack, and in the PostBack there will be certain logic performed, and the dataview will be re-binded to the datagrid. There turns out to be about 2-5 seconds delay between the time the user clicks the radiobutton and when the page is completely re-loaded. During this time the user may try clicking into other controls unaware that the page is being refreshed, so what I'd like to have happen is as soon as they click on the radiobutton I'll have a popup window that states for them "to please wait..", and when the page is finished re-loading have the popup window close. I tried doing this with javascript and window.open and window.close but could not get it working. Does anybody have a suggestion, or possibly sample code?
Thanks, John
Here you go. I know this solution is not perfect but it's a start
..aspx
************************************************** ************************************************** **
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb"
Inherits="ATV2004.WebForm1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
<LINK href="/ATV2004/css/Styles.css" type="text/css" rel="stylesheet">
<script language="javascript">
<!--
var hMD;
function showMD()
{
hMD = window.showModelessDialog("SaveDialog.htm", "SaveDialog",
"dialogHeight:100px; dialogWidth:200px; scroll:no; status:no; help:no;");
}
function closeMD()
{
// debugger;
if(hMD != null)
{
hMD.close();
}
}
//-->
</script>
</HEAD>
<body MS_POSITIONING="FlowLayout" onload="closeMD();">
<form id="Form1" method="post" runat="server" onsubmit="showMD();">
<asp:Button id="Button3" runat="server" Text="Button"></asp:Button>
</form>
</body>
</HTML>
codebehind
************************************************** ************************************************** **
Public Class WebForm1
Inherits System.Web.UI.Page
#Region " Vom Web Form Designer generierter Code "
'Dieser Aufruf ist für den Web Form-Designer erforderlich.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
End Sub
Protected WithEvents Button1 As System.Web.UI.WebControls.Button
Protected WithEvents Button2 As System.Web.UI.WebControls.Button
Protected WithEvents Button3 As System.Web.UI.WebControls.Button
'HINWEIS: Die folgende Platzhalterdeklaration ist für den Web Form-Designer
erforderlich.
'Nicht löschen oder verschieben.
Private designerPlaceholderDeclaration As System.Object
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Init
'CODEGEN: Dieser Methodenaufruf ist für den Web Form-Designer erforderlich
'Verwenden Sie nicht den Code-Editor zur Bearbeitung.
InitializeComponent()
End Sub
#End Region
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
' Hier Benutzercode zur Seiteninitialisierung einfügen
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button3.Click
System.Threading.Thread.Sleep(5000)
End Sub
End Class
"John Walker" <Jo********@discussions.microsoft.com> schrieb im Newsbeitrag
news:CB**********************************@microsof t.com... Hi, I have a datagrid with a radiobutton template column, with AutoPostBack set to TRUE. When the user clicks on a radiobutton the application will PostBack, and in the PostBack there will be certain logic performed, and the dataview will be re-binded to the datagrid. There turns out to be about 2-5 seconds delay between the time the user clicks the radiobutton and when the page is completely re-loaded. During this time the user may try clicking into other controls unaware that the page is being refreshed, so what I'd like to have happen is as soon as they click on the radiobutton I'll have a popup window that states for them "to please wait..", and when the page is finished re-loading have the popup window close. I tried doing this with javascript and window.open and window.close but could not get it working. Does anybody have a suggestion, or possibly sample code?
Thanks, John
Daniel,
This looks like it may be a solution that I can use. Thanks!
John
"Daniel Walzenbach" wrote: Here you go. I know this solution is not perfect but it's a start
..aspx ************************************************** ************************************************** **
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="ATV2004.WebForm1"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <title>WebForm1</title> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> <LINK href="/ATV2004/css/Styles.css" type="text/css" rel="stylesheet">
<script language="javascript"> <!--
var hMD;
function showMD() { hMD = window.showModelessDialog("SaveDialog.htm", "SaveDialog", "dialogHeight:100px; dialogWidth:200px; scroll:no; status:no; help:no;"); }
function closeMD() { // debugger; if(hMD != null) { hMD.close(); } }
//--> </script> </HEAD> <body MS_POSITIONING="FlowLayout" onload="closeMD();"> <form id="Form1" method="post" runat="server" onsubmit="showMD();"> <asp:Button id="Button3" runat="server" Text="Button"></asp:Button> </form> </body> </HTML>
codebehind ************************************************** ************************************************** **
Public Class WebForm1 Inherits System.Web.UI.Page
#Region " Vom Web Form Designer generierter Code "
'Dieser Aufruf ist für den Web Form-Designer erforderlich.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
End Sub
Protected WithEvents Button1 As System.Web.UI.WebControls.Button
Protected WithEvents Button2 As System.Web.UI.WebControls.Button
Protected WithEvents Button3 As System.Web.UI.WebControls.Button
'HINWEIS: Die folgende Platzhalterdeklaration ist für den Web Form-Designer erforderlich.
'Nicht löschen oder verschieben.
Private designerPlaceholderDeclaration As System.Object
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
'CODEGEN: Dieser Methodenaufruf ist für den Web Form-Designer erforderlich
'Verwenden Sie nicht den Code-Editor zur Bearbeitung.
InitializeComponent()
End Sub
#End Region
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Hier Benutzercode zur Seiteninitialisierung einfügen
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
System.Threading.Thread.Sleep(5000)
End Sub
End Class
"John Walker" <Jo********@discussions.microsoft.com> schrieb im Newsbeitrag news:CB**********************************@microsof t.com... Hi, I have a datagrid with a radiobutton template column, with AutoPostBack set to TRUE. When the user clicks on a radiobutton the application will PostBack, and in the PostBack there will be certain logic performed, and the dataview will be re-binded to the datagrid. There turns out to be about 2-5 seconds delay between the time the user clicks the radiobutton and when the page is completely re-loaded. During this time the user may try clicking into other controls unaware that the page is being refreshed, so what I'd like to have happen is as soon as they click on the radiobutton I'll have a popup window that states for them "to please wait..", and when the page is finished re-loading have the popup window close. I tried doing this with javascript and window.open and window.close but could not get it working. Does anybody have a suggestion, or possibly sample code?
Thanks, John
Daniel,
I was not familiar with the "showModelessDialog" method. This will do
exactly what I need it to do!
Thanks again,
John
"Daniel Walzenbach" wrote: Here you go. I know this solution is not perfect but it's a start
..aspx ************************************************** ************************************************** **
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="ATV2004.WebForm1"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <title>WebForm1</title> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> <LINK href="/ATV2004/css/Styles.css" type="text/css" rel="stylesheet">
<script language="javascript"> <!--
var hMD;
function showMD() { hMD = window.showModelessDialog("SaveDialog.htm", "SaveDialog", "dialogHeight:100px; dialogWidth:200px; scroll:no; status:no; help:no;"); }
function closeMD() { // debugger; if(hMD != null) { hMD.close(); } }
//--> </script> </HEAD> <body MS_POSITIONING="FlowLayout" onload="closeMD();"> <form id="Form1" method="post" runat="server" onsubmit="showMD();"> <asp:Button id="Button3" runat="server" Text="Button"></asp:Button> </form> </body> </HTML>
codebehind ************************************************** ************************************************** **
Public Class WebForm1 Inherits System.Web.UI.Page
#Region " Vom Web Form Designer generierter Code "
'Dieser Aufruf ist für den Web Form-Designer erforderlich.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
End Sub
Protected WithEvents Button1 As System.Web.UI.WebControls.Button
Protected WithEvents Button2 As System.Web.UI.WebControls.Button
Protected WithEvents Button3 As System.Web.UI.WebControls.Button
'HINWEIS: Die folgende Platzhalterdeklaration ist für den Web Form-Designer erforderlich.
'Nicht löschen oder verschieben.
Private designerPlaceholderDeclaration As System.Object
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
'CODEGEN: Dieser Methodenaufruf ist für den Web Form-Designer erforderlich
'Verwenden Sie nicht den Code-Editor zur Bearbeitung.
InitializeComponent()
End Sub
#End Region
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Hier Benutzercode zur Seiteninitialisierung einfügen
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
System.Threading.Thread.Sleep(5000)
End Sub
End Class
"John Walker" <Jo********@discussions.microsoft.com> schrieb im Newsbeitrag news:CB**********************************@microsof t.com... Hi, I have a datagrid with a radiobutton template column, with AutoPostBack set to TRUE. When the user clicks on a radiobutton the application will PostBack, and in the PostBack there will be certain logic performed, and the dataview will be re-binded to the datagrid. There turns out to be about 2-5 seconds delay between the time the user clicks the radiobutton and when the page is completely re-loaded. During this time the user may try clicking into other controls unaware that the page is being refreshed, so what I'd like to have happen is as soon as they click on the radiobutton I'll have a popup window that states for them "to please wait..", and when the page is finished re-loading have the popup window close. I tried doing this with javascript and window.open and window.close but could not get it working. Does anybody have a suggestion, or possibly sample code?
Thanks, John
great :-)
"John Walker" <Jo********@discussions.microsoft.com> schrieb im Newsbeitrag
news:12**********************************@microsof t.com... Daniel, I was not familiar with the "showModelessDialog" method. This will do exactly what I need it to do! Thanks again, John
"Daniel Walzenbach" wrote:
Here you go. I know this solution is not perfect but it's a start
..aspx ************************************************** ************************************************** **
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="ATV2004.WebForm1"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <title>WebForm1</title> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> <LINK href="/ATV2004/css/Styles.css" type="text/css" rel="stylesheet">
<script language="javascript"> <!--
var hMD;
function showMD() { hMD = window.showModelessDialog("SaveDialog.htm", "SaveDialog", "dialogHeight:100px; dialogWidth:200px; scroll:no; status:no; help:no;"); }
function closeMD() { // debugger; if(hMD != null) { hMD.close(); } }
//--> </script> </HEAD> <body MS_POSITIONING="FlowLayout" onload="closeMD();"> <form id="Form1" method="post" runat="server" onsubmit="showMD();"> <asp:Button id="Button3" runat="server" Text="Button"></asp:Button> </form> </body> </HTML>
codebehind ************************************************** ************************************************** **
Public Class WebForm1 Inherits System.Web.UI.Page
#Region " Vom Web Form Designer generierter Code "
'Dieser Aufruf ist für den Web Form-Designer erforderlich.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
End Sub
Protected WithEvents Button1 As System.Web.UI.WebControls.Button
Protected WithEvents Button2 As System.Web.UI.WebControls.Button
Protected WithEvents Button3 As System.Web.UI.WebControls.Button
'HINWEIS: Die folgende Platzhalterdeklaration ist für den Web Form-Designer erforderlich.
'Nicht löschen oder verschieben.
Private designerPlaceholderDeclaration As System.Object
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
'CODEGEN: Dieser Methodenaufruf ist für den Web Form-Designer erforderlich
'Verwenden Sie nicht den Code-Editor zur Bearbeitung.
InitializeComponent()
End Sub
#End Region
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Hier Benutzercode zur Seiteninitialisierung einfügen
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
System.Threading.Thread.Sleep(5000)
End Sub
End Class
"John Walker" <Jo********@discussions.microsoft.com> schrieb im Newsbeitrag news:CB**********************************@microsof t.com... > Hi, > I have a datagrid with a radiobutton template column, with AutoPostBack > set > to TRUE. When the user clicks on a radiobutton the application will > PostBack, and in the PostBack there will be certain logic performed, > and > the > dataview will be re-binded to the datagrid. There turns out to be > about > 2-5 > seconds delay between the time the user clicks the radiobutton and when > the > page is completely re-loaded. During this time the user may try > clicking > into other controls unaware that the page is being refreshed, so what > I'd > like to have happen is as soon as they click on the radiobutton I'll > have > a > popup window that states for them "to please wait..", and when the page > is > finished re-loading have the popup window close. I tried doing this > with > javascript and window.open and window.close but could not get it > working. > Does anybody have a suggestion, or possibly sample code? > > Thanks, > John > This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: mvr |
last post by:
Hi all
Can some one give me a sample code to display a "please wait"
message while retrieving results from the database in ASP.
Thanks
mvr
|
by: metsymani |
last post by:
In my web application, I have a search screen coded in ASP.Net. The Search process takes lot of time. So, I need to show a wait page informing the user that "Search is in progress. Please wait" along...
|
by: John Dalberg |
last post by:
Hi
I have a form that opens a new window for the results. Because the results
might take a few seconds due to server processing, I would like to display
a message "please wait" in the new...
|
by: Ben Fidge |
last post by:
Hi
Our app performs a quite lengthy process when the user clicks a button. We'd
like to display a little pop-up "Please Wait..." notification using an
animated gif.
How would I go about this?...
|
by: Phillip Vong |
last post by:
I know how to check IsPostback, but what is the VB code to force a postback?
I have a link I want to do a postback with this URL. I've tried using
Postback and I've tried using doPostback. Am I...
|
by: VMI |
last post by:
In my Windows App, how can I add a nice "Please wait" message to my
datagridview? With a datagrid I would be able to clear all columns, add one
table with one row with the messsage, and bind it to...
|
by: =?ISO-8859-1?B?Rvpsdmlv?= |
last post by:
Hello all,
My application delay some minutes when I press a button(it's doing
some working ).
How can I put a message: "Please wating" during this delay? It is
important that after the...
|
by: Jeremy |
last post by:
Hi all,
I have database actions that will potentially take several seconds to
complete.
My normal page uses AJAX so keeping the user informed of what is
happening is not a problem.
...
|
by: =?Utf-8?B?Sm9obiBXYWxrZXI=?= |
last post by:
Hi,
I have a webpage designed with asp.net 2.0.
Is there a way to display a "please wait" message to the screen horizontally
centered and veritcally 20px from the VISIBLE top of the page,...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: Johno34 |
last post by:
I have this click event on my form. It speaks to a Datasheet Subform
Private Sub Command260_Click()
Dim r As DAO.Recordset
Set r = Form_frmABCD.Form.RecordsetClone
r.MoveFirst
Do
If...
|
by: ezappsrUS |
last post by:
Hi,
I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
| |