CodeCharge Studio
search Register Login  

Web Reports

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> Archive -> CodeChargeStudio.Discussion

 Updatable Grid - different approach

Print topic Send  topic

Author Message
David Welsh
Posted: 07/16/2002, 5:33 PM

This is a multi-part message in MIME format.

------=_NextPart_000_0021_01C22CFF.A07F38D0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hello all,
Im new to CCS, with 2 years vb dev, and would like any ideas with this =
problem. First off I have tried, unsuccessfully to use the samle =
'updatable grids', in the tips. I am taking a differnet approach to the =
problem, and have found myself stuck. Here's where I'm at.

In a grid I have a control(textbox), named 'InStock', to store an =
integer, namely current quanity on a part.=20

First I added another property to the controls class, in classes.asp.

-----------
Property Let RecordID(NewRecordID)
RecordIDValue =3D NewRecordID
End Property

Property Get RecordID()
If IsEmpty(RecordIDValue) Then _
RecordIDValue =3D GetFormatedValue(Format)
RecordID =3D RecordIDValue
End Property
----------

Now I can bind to an event to set this property, like this.

----------
Function Parts_InStock_BeforeShow() 'Parts_InStock_BeforeShow =
@23-0849EB0F

'Custom Code @55-73254650
' -------------------------
Parts.InStock.RecordID =3D Parts.Recordset.Fields("Part_ID")
'Parts.InStock.Value =3D Parts.InStock.RecordID 'for testing
' -------------------------
'End Custom Code

End Function 'Close Parts_InStock_BeforeShow @23-54C34B28
------------

Next I add a 'Submit' button to the bottom of the grid.=20

Next here's my problem. I try to use the 'OnClick' event to create some =
custom code, but clicking the button does not execute the custom code.

Are buttons allowed within a Grid Form?=20
Using one does not seem to execute any code attached to it.

Dave Welsh





------=_NextPart_000_0021_01C22CFF.A07F38D0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 5.50.4522.1800" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DArial size=3D2>Hello all,</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Im new to CCS, with 2 years vb dev, and =
would like=20
any ideas with this problem. First off I have tried, unsuccessfully =
to use=20
the samle 'updatable grids', in the tips. I am taking a differnet =
approach to=20
the problem, and have found myself stuck. Here's where I'm =
at.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>In a grid I have a control(textbox), =
named=20
'InStock', to store an integer, namely current quanity on a =
part.=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>First I added another property to the =
controls=20
class, in classes.asp.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>-----------</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>  Property Let=20
RecordID(NewRecordID)<BR>    RecordIDValue =3D=20
NewRecordID<BR>  End Property</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>  Property Get=20
RecordID()<BR>    If IsEmpty(RecordIDValue) Then=20
_<BR>      RecordIDValue =3D=20
GetFormatedValue(Format)<BR>    RecordID =3D=20
RecordIDValue<BR>  End Property</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>----------</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Now I can bind to an event to set this =
property,=20
like this.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>----------</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>Function =
Parts_InStock_BeforeShow()=20
'Parts_InStock_BeforeShow @23-0849EB0F</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>'Custom Code =
@55-73254650<BR>'=20
-------------------------<BR>Parts.InStock.RecordID =3D=20
Parts.Recordset.Fields("Part_ID")<BR>'Parts.InStock.Value =3D=20
Parts.InStock.RecordID     'for testing<BR>'=20
-------------------------<BR>'End Custom Code</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>End Function 'Close=20
Parts_InStock_BeforeShow @23-54C34B28</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>------------</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Next I add a 'Submit' button to the =
bottom of the=20
grid. </FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Next here's my problem. I try to use =
the 'OnClick'=20
event to create some custom code, but clicking the button does not =
execute the=20
custom code.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Are buttons allowed within a Grid Form? =

</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Using one does not seem to execute any =
code=20
attached to it.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Dave Welsh</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT><FONT face=3DArial=20
size=3D2></FONT> </DIV></BODY></HTML>

------=_NextPart_000_0021_01C22CFF.A07F38D0--
David Welsh
Posted: 07/16/2002, 5:37 PM

This is a multi-part message in MIME format.

------=_NextPart_000_002F_01C22D00.4AB82FF0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Any insite into enumerating the 'InStock' controls within the Grid Form, =
would also be helpful.

Dave

"David Welsh" <dwelsh@theramp.net> wrote in message =
news:ah2dvn$280$1@news.codecharge.com...
Hello all,
Im new to CCS, with 2 years vb dev, and would like any ideas with this =
problem. First off I have tried, unsuccessfully to use the samle =
'updatable grids', in the tips. I am taking a differnet approach to the =
problem, and have found myself stuck. Here's where I'm at.

In a grid I have a control(textbox), named 'InStock', to store an =
integer, namely current quanity on a part.=20

First I added another property to the controls class, in classes.asp.

-----------
Property Let RecordID(NewRecordID)
RecordIDValue =3D NewRecordID
End Property

Property Get RecordID()
If IsEmpty(RecordIDValue) Then _
RecordIDValue =3D GetFormatedValue(Format)
RecordID =3D RecordIDValue
End Property
----------

Now I can bind to an event to set this property, like this.

----------
Function Parts_InStock_BeforeShow() 'Parts_InStock_BeforeShow =
@23-0849EB0F

'Custom Code @55-73254650
' -------------------------
Parts.InStock.RecordID =3D Parts.Recordset.Fields("Part_ID")
'Parts.InStock.Value =3D Parts.InStock.RecordID 'for testing
' -------------------------
'End Custom Code

End Function 'Close Parts_InStock_BeforeShow @23-54C34B28
------------

Next I add a 'Submit' button to the bottom of the grid.=20

Next here's my problem. I try to use the 'OnClick' event to create =
some custom code, but clicking the button does not execute the custom =
code.

Are buttons allowed within a Grid Form?=20
Using one does not seem to execute any code attached to it.

Dave Welsh





------=_NextPart_000_002F_01C22D00.4AB82FF0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 5.50.4522.1800" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Any insite into enumerating the =
'InStock' controls=20
within the Grid Form, would also be helpful.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Dave</FONT></DIV>
<DIV> </DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"David Welsh" <<A=20
href=3D"mailto:dwelsh@theramp.net">dwelsh@theramp.net</A>> wrote in =
message=20
<A=20
=
href=3D"news:ah2dvn$280$1@news.codecharge.com">news:ah2dvn$280$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>Hello all,</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Im new to CCS, with 2 years vb dev, =
and would=20
like any ideas with this problem. First off I have tried, =
unsuccessfully=20
to use the samle 'updatable grids', in the tips. I am taking a =
differnet=20
approach to the problem, and have found myself stuck. Here's where I'm =

at.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>In a grid I have a control(textbox), =
named=20
'InStock', to store an integer, namely current quanity on a =
part.=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>First I added another property to the =
controls=20
class, in classes.asp.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>-----------</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>  Property Let=20
RecordID(NewRecordID)<BR>    RecordIDValue =3D=20
NewRecordID<BR>  End Property</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>  Property Get=20
RecordID()<BR>    If IsEmpty(RecordIDValue) Then=20
_<BR>      RecordIDValue =3D=20
GetFormatedValue(Format)<BR>    RecordID =3D=20
RecordIDValue<BR>  End Property</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>----------</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Now I can bind to an event to set =
this property,=20
like this.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>----------</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>Function =
Parts_InStock_BeforeShow()=20
'Parts_InStock_BeforeShow @23-0849EB0F</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>'Custom Code =
@55-73254650<BR>'=20
-------------------------<BR>Parts.InStock.RecordID =3D=20
Parts.Recordset.Fields("Part_ID")<BR>'Parts.InStock.Value =3D=20
Parts.InStock.RecordID     'for testing<BR>'=20
-------------------------<BR>'End Custom Code</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>End Function 'Close=20
Parts_InStock_BeforeShow @23-54C34B28</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>------------</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Next I add a 'Submit' button to the =
bottom of the=20
grid. </FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Next here's my problem. I try to use =
the=20
'OnClick' event to create some custom code, but clicking the button =
does not=20
execute the custom code.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Are buttons allowed within a Grid =
Form?=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Using one does not seem to execute =
any code=20
attached to it.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Dave Welsh</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT><FONT face=3DArial=20
size=3D2></FONT> </DIV></BLOCKQUOTE></BODY></HTML>

------=_NextPart_000_002F_01C22D00.4AB82FF0--
Jeroen Steggink
Posted: 07/19/2002, 3:08 AM

This is a multi-part message in MIME format.

------=_NextPart_000_0046_01C22F1C.D723E9C0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

You'll have to do it exactly as in the article: =
http://www.gotocode.com/art.asp?art_id=3D50&
Only some functions are different in CCS. For the new functions refer to =
the CCS Programming Reference.
Use Before Show Row events instead CC Before Show event, use Page After =
Initialize instead Page Open event.
=20
"David Welsh" <dwelsh@theramp.net> wrote in message =
news:ah2e8k$2le$1@news.codecharge.com...
Any insite into enumerating the 'InStock' controls within the Grid =
Form, would also be helpful.

Dave

"David Welsh" <dwelsh@theramp.net> wrote in message =
news:ah2dvn$280$1@news.codecharge.com...
Hello all,
Im new to CCS, with 2 years vb dev, and would like any ideas with =
this problem. First off I have tried, unsuccessfully to use the samle =
'updatable grids', in the tips. I am taking a differnet approach to the =
problem, and have found myself stuck. Here's where I'm at.

In a grid I have a control(textbox), named 'InStock', to store an =
integer, namely current quanity on a part.=20

First I added another property to the controls class, in =
classes.asp.

-----------
Property Let RecordID(NewRecordID)
RecordIDValue =3D NewRecordID
End Property

Property Get RecordID()
If IsEmpty(RecordIDValue) Then _
RecordIDValue =3D GetFormatedValue(Format)
RecordID =3D RecordIDValue
End Property
----------

Now I can bind to an event to set this property, like this.

----------
Function Parts_InStock_BeforeShow() 'Parts_InStock_BeforeShow =
@23-0849EB0F

'Custom Code @55-73254650
' -------------------------
Parts.InStock.RecordID =3D Parts.Recordset.Fields("Part_ID")
'Parts.InStock.Value =3D Parts.InStock.RecordID 'for testing
' -------------------------
'End Custom Code

End Function 'Close Parts_InStock_BeforeShow @23-54C34B28
------------

Next I add a 'Submit' button to the bottom of the grid.=20

Next here's my problem. I try to use the 'OnClick' event to create =
some custom code, but clicking the button does not execute the custom =
code.

Are buttons allowed within a Grid Form?=20
Using one does not seem to execute any code attached to it.

Dave Welsh





------=_NextPart_000_0046_01C22F1C.D723E9C0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2716.2200" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>You'll have to do it exactly as in the =
article: <A=20
href=3D"http://www.gotocode.com/art.asp?art_id=3D50">http://www.gotocode.=
com/art.asp?art_id=3D50</A>&</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Only some functions are different in =
CCS. For the=20
new functions refer to the CCS Programming Reference.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Use Before Show Row events instead CC =
Before Show=20
event, use Page After Initialize instead Page Open event.</FONT></DIV>
<DIV> </DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"David Welsh" <<A=20
href=3D"mailto:dwelsh@theramp.net">dwelsh@theramp.net</A>> wrote in =
message=20
<A=20
=
href=3D"news:ah2e8k$2le$1@news.codecharge.com">news:ah2e8k$2le$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>Any insite into enumerating the =
'InStock'=20
controls within the Grid Form, would also be helpful.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Dave</FONT></DIV>
<DIV> </DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"David Welsh" <<A=20
href=3D"mailto:dwelsh@theramp.net">dwelsh@theramp.net</A>> wrote =
in message=20
<A=20
=
href=3D"news:ah2dvn$280$1@news.codecharge.com">news:ah2dvn$280$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>Hello all,</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Im new to CCS, with 2 years vb dev, =
and would=20
like any ideas with this problem. First off I have tried,=20
unsuccessfully to use the samle 'updatable grids', in the tips. I am =
taking=20
a differnet approach to the problem, and have found myself stuck. =
Here's=20
where I'm at.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>In a grid I have a =
control(textbox), named=20
'InStock', to store an integer, namely current quanity on =
a part.=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>First I added another property to =
the controls=20
class, in classes.asp.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>-----------</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>  Property Let =

RecordID(NewRecordID)<BR>    RecordIDValue =3D=20
NewRecordID<BR>  End Property</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>  Property Get =

RecordID()<BR>    If IsEmpty(RecordIDValue) Then=20
_<BR>      RecordIDValue =3D=20
GetFormatedValue(Format)<BR>    RecordID =3D=20
RecordIDValue<BR>  End Property</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>----------</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Now I can bind to an event to set =
this=20
property, like this.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>----------</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>Function=20
Parts_InStock_BeforeShow() 'Parts_InStock_BeforeShow=20
@23-0849EB0F</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>'Custom Code =
@55-73254650<BR>'=20
-------------------------<BR>Parts.InStock.RecordID =3D=20
Parts.Recordset.Fields("Part_ID")<BR>'Parts.InStock.Value =3D=20
Parts.InStock.RecordID     'for testing<BR>'=20
-------------------------<BR>'End Custom Code</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>End Function 'Close =

Parts_InStock_BeforeShow @23-54C34B28</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>------------</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Next I add a 'Submit' button to the =
bottom of=20
the grid. </FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Next here's my problem. I try to =
use the=20
'OnClick' event to create some custom code, but clicking the button =
does not=20
execute the custom code.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Are buttons allowed within a Grid =
Form?=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Using one does not seem to execute =
any code=20
attached to it.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Dave Welsh</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT><FONT face=3DArial=20
size=3D2></FONT> </DIV></BLOCKQUOTE></BLOCKQUOTE></BODY></HTML>

------=_NextPart_000_0046_01C22F1C.D723E9C0--

   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

MS Access to Web

Convert MS Access to Web.
Join thousands of Web developers who build Web applications with minimal coding.

CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.