473,321 Members | 1,778 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,321 software developers and data experts.

Two forms

I have two forms on one page. In Form A I have drop-down list (single
selection). When I click a submit button in form B, I would like to pick up
the value showing in the drop down list of Form A. Can this be done?

The reason for separating the two forms is that Form A opens a new browser
window with selection in that form, whereas Form B keeps it in the same
browser window for its selections. The drop-down list value, however, is
used in both and I would not want to repeat that list in Form B.

Shelly
Oct 16 '06 #1
17 1443

Shelly wrote:
I have two forms on one page. In Form A I have drop-down list (single
selection). When I click a submit button in form B, I would like to pick up
the value showing in the drop down list of Form A. Can this be done?

The reason for separating the two forms is that Form A opens a new browser
window with selection in that form, whereas Form B keeps it in the same
browser window for its selections. The drop-down list value, however, is
used in both and I would not want to repeat that list in Form B.

Shelly
You can do it by JavaScript or by AJAX, can you provide us with the
code, so I can explain to you eaisier ??
--------------------------------------------------------------------------------------

For php/ajax/javascript tutorials and tips, visit me on my blog at
http://www.nurazije.co.nr

Oct 16 '06 #2

"NurAzije" <nu******@gmail.comwrote in message
news:11**********************@m73g2000cwd.googlegr oups.com...
>
Shelly wrote:
>I have two forms on one page. In Form A I have drop-down list (single
selection). When I click a submit button in form B, I would like to pick
up
the value showing in the drop down list of Form A. Can this be done?

The reason for separating the two forms is that Form A opens a new
browser
window with selection in that form, whereas Form B keeps it in the same
browser window for its selections. The drop-down list value, however, is
used in both and I would not want to repeat that list in Form B.

Shelly

You can do it by JavaScript or by AJAX, can you provide us with the
code, so I can explain to you eaisier ??
I don't know AJAX.

[ php code]
<?php
if (isset($_POST['A'])) {
$list = $_POST['theList'];
header('Location: A_target.php?list=' . $list);
exit();
}

<?php
if (isset($_POST['B'])) {
$list = $_POST['theList'];
header('Location: B_target.php?list=' . $list);
exit();
}
?>

[html area]
<form action="" method="POST" name="A" target="_blank">
<select name="theList">
<option value="First'">First </option>
<option value="Second'">Second </option>
</select>
....other stuff...
<input type="submit" value="Form A button" name="A">
</form>

<form action="" method="POST" name="B" target="_self">
<input type="submit" value="Form A button" name="B">
</form>
Oct 16 '06 #3

"Shelly" <sh************@asap-consult.comwrote in message
news:Rn*****************@newsread1.news.pas.earthl ink.net...
>
"NurAzije" <nu******@gmail.comwrote in message
news:11**********************@m73g2000cwd.googlegr oups.com...
>>
Shelly wrote:
>>I have two forms on one page. In Form A I have drop-down list (single
selection). When I click a submit button in form B, I would like to
pick up
the value showing in the drop down list of Form A. Can this be done?

The reason for separating the two forms is that Form A opens a new
browser
window with selection in that form, whereas Form B keeps it in the same
browser window for its selections. The drop-down list value, however,
is
used in both and I would not want to repeat that list in Form B.

Shelly

You can do it by JavaScript or by AJAX, can you provide us with the
code, so I can explain to you eaisier ??

I don't know AJAX.

[ php code]
<?php
if (isset($_POST['A'])) {
$list = $_POST['theList'];
header('Location: A_target.php?list=' . $list);
exit();
}

<?php
if (isset($_POST['B'])) {
$list = $_POST['theList'];
header('Location: B_target.php?list=' . $list);
exit();
}
?>

[html area]
<form action="" method="POST" name="A" target="_blank">
<select name="theList">
<option value="First'">First </option>
<option value="Second'">Second </option>
</select>
....other stuff...
<input type="submit" value="Form A button" name="A">
</form>

<form action="" method="POST" name="B" target="_self">
<input type="submit" value="Form A button" name="B">
</form>

That second one should be "Form B button" and the second <?php was a cut
and paste error.
Oct 16 '06 #4
For AJAX it is so easy, you have a 5 minutes tutorial on this link :
http://www.nurazije.co.nr/2006/10/5-...-tutorial.html

You can put the second bottun in the first form, like this:
<form action="" method="POST" name="Aform" target="_blank">
<select name="theList">
<option value="First'">First </option>
<option value="Second'">Second </option>
</select>
....other stuff...
<input type="submit" value="Form A button" name="A">
<input type="button" value="Form B button" name="B"
onclick="document.Aform.submit();">
</form>
You will see I have added onclick="document.Aform.submit();", and the
type is button, put an action path for the form, and change the form
name as I did, every element must have a unique name.
The php code must look like this:
<?php
if (isset($_POST['A'])) {
$list = $_POST['theList'];
header('Location: A_target.php?list=' . $list);
exit();
}elseif(isset($_POST['B'])) {
$list = $_POST['theList'];
header('Location: B_target.php?list=' . $list);
exit();
}
?>
Thats it, hope you got the idea...

Oct 17 '06 #5
It didn't work. Several things:
1 - I had the target for Aform be _self and for Bform be _blank since it is
in A form with the _self that the list exists.
1 - The action path is "", even though you said you put one in. I left it
that way.
2 - I assume you meant document.Bform.submit(); and not
document.Aform.submit();
3 - If I made the change to Bform (above), then it opened a new window
(according to Bform), but it didn't pass the value of theList, even though I
have the B button in A form, and the page that is brought up in that new
window is the current page, not the redirected one. Aform works fine.
4 - If I left it at Aform, it doesn't work either.

Here is the code:
junk.php
======
<?php
if (isset($_POST['A'])) {
$val = $_POST['theList'];
echo "A0=" . $val . "<br>";
} else if (isset($_POST['B'])) {
$val = $_POST['theList'];
header("Location: junk2.php?val=" . $val);
exit();
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html><head><meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<title>Untitled Document</title></head>

<form action="" method="post" target="_self" name="Aform">
<select name="theList">
<option value="First">First</option>
<option value="Second">Second</option>
</select>
<input type="submit" name="A" value="submit A">
<input type="button" name="B" value="submit B"
onClick="document.Bform.submit()">
</form>

<form action="" method="post" target="_blank" name="Bform">
</form>
<body></body></html>
junk2.php
=======
<?php
$val = $_GET['val'];
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>

<body>
The value of val is <?php echo $val . "<br>"; ?>
</body></html>


"NurAzije" <nu******@gmail.comwrote in message
news:11**********************@b28g2000cwb.googlegr oups.com...
For AJAX it is so easy, you have a 5 minutes tutorial on this link :
http://www.nurazije.co.nr/2006/10/5-...-tutorial.html

You can put the second bottun in the first form, like this:
<form action="" method="POST" name="Aform" target="_blank">
<select name="theList">
<option value="First'">First </option>
<option value="Second'">Second </option>
</select>
....other stuff...
<input type="submit" value="Form A button" name="A">
<input type="button" value="Form B button" name="B"
onclick="document.Aform.submit();">
</form>
You will see I have added onclick="document.Aform.submit();", and the
type is button, put an action path for the form, and change the form
name as I did, every element must have a unique name.
The php code must look like this:
<?php
if (isset($_POST['A'])) {
$list = $_POST['theList'];
header('Location: A_target.php?list=' . $list);
exit();
}elseif(isset($_POST['B'])) {
$list = $_POST['theList'];
header('Location: B_target.php?list=' . $list);
exit();
}
?>
Thats it, hope you got the idea...

Oct 17 '06 #6
Rik
Shelly wrote:
It didn't work. Several things:
1 - I had the target for Aform be _self and for Bform be _blank since
it is in A form with the _self that the list exists.
1 - The action path is "", even though you said you put one in. I
left it that way.
2 - I assume you meant document.Bform.submit(); and not
document.Aform.submit();
3 - If I made the change to Bform (above), then it opened a new window
(according to Bform), but it didn't pass the value of theList, even
though I have the B button in A form, and the page that is brought up
in that new window is the current page, not the redirected one.
Aform works fine. 4 - If I left it at Aform, it doesn't work either.

Here is the code:
junk.php
======
<?php
if (isset($_POST['A'])) {
$val = $_POST['theList'];
echo "A0=" . $val . "<br>";
} else if (isset($_POST['B'])) {
$val = $_POST['theList'];
header("Location: junk2.php?val=" . $val);
exit();
}
Well, first of all:
1. Allthough AJAX is a nice buzzword, this has nothing to do with
(a)synchronous calls with javascript to the server.
2. Are you absolutely sure you want to rely on javascript for this? In some
browsers/for some users it will simply not work.
3. This should actually be in comp.lang.javascript

But here you go:
What I'd do, is have the buttons in the SAME form. Either that, or
duplicate the selection list if you want a sturdy application.

junk.php
<?php

if(isset($_POST['B']||isset($_POST['A'])){
if(isset($_POST['B'])) echo 'You choose to open this a new window, but
this is not possible without javascript enabled';
$val = $_POST['theList'];
echo "A0=" . $val . "<br>";
}
?>
<script type="text/javascript">
function form_new_window(button){
var form = button.form;
form.action = './junk2.php';
form.method = 'GET'; //or keep it a post
form.target = '_blank'; //new window
return true; //just to make sure.
}
</script>
<form action="./junk.php" method="POST" target="_self">
<select name="theList">
<option value="First'">First </option>
<option value="Second'">Second </option>
</select>
<input type="submit" value="Same window" name="A">
<input type="submit" value="New window" name="B"
onclick="form_new_window(this)">
</form>

--
Rik Wasmus
Oct 17 '06 #7
Thank you, Rik, very much. This worked.

Shelly

"Rik" <lu************@hotmail.comwrote in message
news:34***************************@news2.tudelft.n l...
Shelly wrote:
>It didn't work. Several things:
1 - I had the target for Aform be _self and for Bform be _blank since
it is in A form with the _self that the list exists.
1 - The action path is "", even though you said you put one in. I
left it that way.
2 - I assume you meant document.Bform.submit(); and not
document.Aform.submit();
3 - If I made the change to Bform (above), then it opened a new window
(according to Bform), but it didn't pass the value of theList, even
though I have the B button in A form, and the page that is brought up
in that new window is the current page, not the redirected one.
Aform works fine. 4 - If I left it at Aform, it doesn't work either.

Here is the code:
junk.php
======
<?php
if (isset($_POST['A'])) {
$val = $_POST['theList'];
echo "A0=" . $val . "<br>";
} else if (isset($_POST['B'])) {
$val = $_POST['theList'];
header("Location: junk2.php?val=" . $val);
exit();
}

Well, first of all:
1. Allthough AJAX is a nice buzzword, this has nothing to do with
(a)synchronous calls with javascript to the server.
2. Are you absolutely sure you want to rely on javascript for this? In
some
browsers/for some users it will simply not work.
3. This should actually be in comp.lang.javascript

But here you go:
What I'd do, is have the buttons in the SAME form. Either that, or
duplicate the selection list if you want a sturdy application.

junk.php
<?php

if(isset($_POST['B']||isset($_POST['A'])){
if(isset($_POST['B'])) echo 'You choose to open this a new window, but
this is not possible without javascript enabled';
$val = $_POST['theList'];
echo "A0=" . $val . "<br>";
}
?>
<script type="text/javascript">
function form_new_window(button){
var form = button.form;
form.action = './junk2.php';
form.method = 'GET'; //or keep it a post
form.target = '_blank'; //new window
return true; //just to make sure.
}
</script>
<form action="./junk.php" method="POST" target="_self">
<select name="theList">
<option value="First'">First </option>
<option value="Second'">Second </option>
</select>
<input type="submit" value="Same window" name="A">
<input type="submit" value="New window" name="B"
onclick="form_new_window(this)">
</form>

--
Rik Wasmus


Oct 18 '06 #8
I was a little too quick in replying. I have four buttons that should not
open a new window and two that should. In my actual application I sent it
to redir.php in the Javascript. Once there in redir.php, I test on which of
the two buttons in the original page activated it and then send it to the
proper page.

The problem is that even though I only added the onclick to the two buttons
for a new page, ALL six buttons go to redir.php AND open a new window. (I
have the tests on the four other buttons in the original page.)

Can you think of any reason why the buttons that do not have the onclick
would execute the Javascript and go to redir.php? I placed the script just
inside <bodyand before <form>.

Here is the actual code snippet for a button for a new page:

<input type="submit" value="Click Here To" name="health"
onclick="form_new_window(this)"
style="color: #E1D2AA; border: 2px solid; border-color:
#CD968F #610E08 #400906 #B14F46; background-color: #99160C; font-family:
Verdana; font-size: 12px; display: block; height: 25px; width: 148px;
font-weight: bold; margin: 3px; padding: 2px; padding-bottom: 5px;
vertical-align: middle;" />

and here is one for not a new page:

<input type="submit" value="Click Here To" name="shop"
style="color: #E1D2AA; border: 2px solid; border-color:
#CD968F #610E08 #400906 #B14F46; background-color: #99160C; font-family:
Verdana; font-size: 12px; display: block; height: 25px; width: 148px;
font-weight: bold; margin: 3px; padding: 2px; padding-bottom: 5px;
vertical-align: middle;" />

and the Javascript is:

<body>
<script type="text/javascript">
function form_new_window(button){
var form = button.form;
form.action = 'redir.php';
form.method = 'POST';
form.target = '_blank';
return true;
}
</script>
<form ....>
Oct 18 '06 #9
Shelly wrote:
I was a little too quick in replying. I have four buttons that should not
open a new window and two that should. In my actual application I sent it
to redir.php in the Javascript. Once there in redir.php, I test on which of
the two buttons in the original page activated it and then send it to the
proper page.

The problem is that even though I only added the onclick to the two buttons
for a new page, ALL six buttons go to redir.php AND open a new window. (I
have the tests on the four other buttons in the original page.)

Can you think of any reason why the buttons that do not have the onclick
would execute the Javascript and go to redir.php? I placed the script just
inside <bodyand before <form>.

Here is the actual code snippet for a button for a new page:

<input type="submit" value="Click Here To" name="health"
onclick="form_new_window(this)"
style="color: #E1D2AA; border: 2px solid; border-color:
#CD968F #610E08 #400906 #B14F46; background-color: #99160C; font-family:
Verdana; font-size: 12px; display: block; height: 25px; width: 148px;
font-weight: bold; margin: 3px; padding: 2px; padding-bottom: 5px;
vertical-align: middle;" />

and here is one for not a new page:

<input type="submit" value="Click Here To" name="shop"
style="color: #E1D2AA; border: 2px solid; border-color:
#CD968F #610E08 #400906 #B14F46; background-color: #99160C; font-family:
Verdana; font-size: 12px; display: block; height: 25px; width: 148px;
font-weight: bold; margin: 3px; padding: 2px; padding-bottom: 5px;
vertical-align: middle;" />

and the Javascript is:

<body>
<script type="text/javascript">
function form_new_window(button){
var form = button.form;
form.action = 'redir.php';
form.method = 'POST';
form.target = '_blank';
return true;
}
</script>
<form ....>

Shelly,

You're probably better off asking javascript questions in a javascript
newsgroup, don't you think? :-)

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Oct 18 '06 #10
Rik
Shelly wrote:
I was a little too quick in replying. I have four buttons that
should not open a new window and two that should. In my actual
application I sent it to redir.php in the Javascript. Once there in
redir.php, I test on which of the two buttons in the original page
activated it and then send it to the proper page.

The problem is that even though I only added the onclick to the two
buttons for a new page, ALL six buttons go to redir.php AND open a
new window. (I have the tests on the four other buttons in the
original page.)

Can you think of any reason why the buttons that do not have the
onclick would execute the Javascript and go to redir.php? I placed
the script just inside <bodyand before <form>.
Ahum, please, pleas, do not use css inline like this. Give the buttons a
class and put the layout in an external css-file....
<form ....>
I'm very curious what your <formtag actually sais, because I've switched
them around, defaulting to _self instead of _blank.... That would be the
easy solution :-)

If not, could you provide a link of the form in action perhaps? (or the
exact file)

Grtz,
--
Rik Wasmus
Oct 18 '06 #11

"Rik" <lu************@hotmail.comwrote in message
news:88***************************@news2.tudelft.n l...
Shelly wrote:
>I was a little too quick in replying. I have four buttons that
should not open a new window and two that should. In my actual
application I sent it to redir.php in the Javascript. Once there in
redir.php, I test on which of the two buttons in the original page
activated it and then send it to the proper page.

The problem is that even though I only added the onclick to the two
buttons for a new page, ALL six buttons go to redir.php AND open a
new window. (I have the tests on the four other buttons in the
original page.)

Can you think of any reason why the buttons that do not have the
onclick would execute the Javascript and go to redir.php? I placed
the script just inside <bodyand before <form>.

Ahum, please, pleas, do not use css inline like this. Give the buttons a
class and put the layout in an external css-file....
><form ....>

Will do. right now, I just wanted to get ti to work.

>
I'm very curious what your <formtag actually sais, because I've switched
them around, defaulting to _self instead of _blank.... That would be the
easy solution :-)
It defaults to "_self"

<form action="" method="POST" name="pets" target="_self">

Shelly
Oct 18 '06 #12
The solution that worked (thanks to Gleep) was to add:

onchange="window.document.formB.theListH.value=(th is.options[this.selectedIndex].text)"

to a change in the drop-down list (theList in formA). I set theListH as a
hidden variable in the other form (formB).

I test on all the buttons and the ones that were from formB I use the value
from theListH and the ones from the first form I use the value from theList.
Of course, I initially set theListH to be the first one on the drop-down
list.

Shelly
Oct 18 '06 #13
Rik
Shelly wrote:
"Rik" <lu************@hotmail.comwrote in message
news:88***************************@news2.tudelft.n l...
>Shelly wrote:
>>I was a little too quick in replying. I have four buttons that
should not open a new window and two that should. In my actual
application I sent it to redir.php in the Javascript. Once there in
redir.php, I test on which of the two buttons in the original page
activated it and then send it to the proper page.
I'm very curious what your <formtag actually sais, because I've
switched them around, defaulting to _self instead of _blank.... That
would be the easy solution :-)

It defaults to "_self"

<form action="" method="POST" name="pets" target="_self">
Any change on getting the whole script + form? My example works perfectly
here, and I cannot guess what went wrong in your form.
--
Grtz

Rik Wasmus
Oct 18 '06 #14

"Rik" <lu************@hotmail.comwrote in message
news:8a***************************@news2.tudelft.n l...
Shelly wrote:
>"Rik" <lu************@hotmail.comwrote in message
news:88***************************@news2.tudelft. nl...
>>Shelly wrote:
I was a little too quick in replying. I have four buttons that
should not open a new window and two that should. In my actual
application I sent it to redir.php in the Javascript. Once there in
redir.php, I test on which of the two buttons in the original page
activated it and then send it to the proper page.
I'm very curious what your <formtag actually sais, because I've
switched them around, defaulting to _self instead of _blank.... That
would be the easy solution :-)

It defaults to "_self"

<form action="" method="POST" name="pets" target="_self">

Any change on getting the whole script + form? My example works perfectly
here, and I cannot guess what went wrong in your form.
Not a problem getting the script, but I fixed it a different way. I had
posted this to this group and to alt.comp.lang.php. Gleep answered there
and that led me in the right track. What I did was use javascript with
onchange in formA's drop-=down list to set a hidden variable in formB.
Then when I hit a submit button in formB, I read the value of that hidden
variable. it works like a charm -- and I can use that to do other things as
well in other code.

Thank you four your help and interest.

Shelly

P.S. This is a great list. I am greatly indebted to this list, and will
contribute more as I can find even a little time.
Oct 18 '06 #15
Rik
Shelly wrote:
Not a problem getting the script, but I fixed it a different way. I
had posted this to this group and to alt.comp.lang.php. Gleep
answered there and that led me in the right track. What I did was
use javascript with onchange in formA's drop-=down list to set a
hidden variable in formB. Then when I hit a submit button in formB, I
read the value of that hidden variable. it works like a charm -- and
I can use that to do other things as well in other code.

Thank you four your help and interest.
My main problem with that solution:
If in the single form solution I gave javascript doesn't kick in/is
disabled, everything can work as planned, only in the same window instead
of a new one.

In the 2 form solution, if javascript is disabled, you'll get a new window
with an error, because is lacks data.
--
Grtz,

Rik Wasmus
Oct 18 '06 #16
Good point. Let me think on it.

"Rik" <lu************@hotmail.comwrote in message
news:23***************************@news1.tudelft.n l...
Shelly wrote:
>Not a problem getting the script, but I fixed it a different way. I
had posted this to this group and to alt.comp.lang.php. Gleep
answered there and that led me in the right track. What I did was
use javascript with onchange in formA's drop-=down list to set a
hidden variable in formB. Then when I hit a submit button in formB, I
read the value of that hidden variable. it works like a charm -- and
I can use that to do other things as well in other code.

Thank you four your help and interest.

My main problem with that solution:
If in the single form solution I gave javascript doesn't kick in/is
disabled, everything can work as planned, only in the same window instead
of a new one.

In the 2 form solution, if javascript is disabled, you'll get a new window
with an error, because is lacks data.
--
Grtz,

Rik Wasmus


Oct 18 '06 #17
For the time being, what I will do is test on a particular variable and if
it is not set, then I will header to an error page where I will display a
message that Javascript must be enabled. Long term, I'll make your solution
work.
"Rik" <lu************@hotmail.comwrote in message
news:23***************************@news1.tudelft.n l...
Shelly wrote:
>Not a problem getting the script, but I fixed it a different way. I
had posted this to this group and to alt.comp.lang.php. Gleep
answered there and that led me in the right track. What I did was
use javascript with onchange in formA's drop-=down list to set a
hidden variable in formB. Then when I hit a submit button in formB, I
read the value of that hidden variable. it works like a charm -- and
I can use that to do other things as well in other code.

Thank you four your help and interest.

My main problem with that solution:
If in the single form solution I gave javascript doesn't kick in/is
disabled, everything can work as planned, only in the same window instead
of a new one.

In the 2 form solution, if javascript is disabled, you'll get a new window
with an error, because is lacks data.
--
Grtz,

Rik Wasmus


Oct 18 '06 #18

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

Similar topics

19
by: James Fortune | last post by:
I have a lot of respect for David Fenton and Allen Browne, but I don't understand why people who know how to write code to completely replace a front end do not write something that will automate...
3
by: Joshua Russell | last post by:
Hi, Both the methods below open up a windows form called MasterForm. However, one works better than the other. Method 1 opens the form correctly but I don't have any reference to the instance of...
7
by: Mike Bulava | last post by:
I have created a base form that I plan to use throughout my application let call the form form1. I have Built the project then add another form that inherits from form1, I add a few panel controls...
13
by: MD | last post by:
I have been converting a program from VB6 to VB.Net and enhancing it as well. All has been progressing OK although its been hard work. Now, all of a sudden, when I try to execute a ShowDialog()...
15
by: Joshua Kendall | last post by:
I have a script in which it keeps opening the same form instead of only one instance. I also need help with a form that has a password. Where do I put the actual password? can I use a database for...
3
by: Lloyd Sheen | last post by:
I have the following situation: Need a user resizable user control. After much trying with user control I came across the idea of hosting the controls in a form marked as not TopLevel = false. ...
8
by: Stephen Rice | last post by:
Hi, I have a periodic problem which I am having a real time trying to sort. Background: An MDI VB app with a DB on SQL 2000. I have wrapped all the DB access into an object which spawns a...
3
by: Geraldine Hobley | last post by:
Hello, In my project I am inheriting several forms. However when I inherit from a form and add additional subroutines and methods to my inherited form I get all sorts of problems. e.g. I sometimes...
6
by: dbuchanan | last post by:
I have a Windows Forms application that accesses SQL Server 2k from a small local network. The application has been used for weeks on other systmes but a new install on a new machine retruns...
21
by: Dan Tallent | last post by:
In my application I have a form (Customer) that I want to be able to open multiple copies at once. Within this form I have other forms that can be opened. Example: ZipCode. When the user enters...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.