473,465 Members | 1,399 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Field value shifting to right by one place each time I am saving d

Hi,
This is a strange problem I am encountering. I have a asp page with a
confirmation.asp page that saves data to a table. There are few text fields
that are captured by the confirmation page as
l_f_name = Request.Form("txt_Name")
l_f_personstitle = Request.Form("txt_Title")
l_f_PhoneAreaCode = Request.Form("txt_PhoneAreaCode")
l_f_Phone1 = Request.Form("txt_Phone1")
l_f_Phone2 = Request.Form("txt_Phone2")
l_f_Date = Request.Form("txt_Date")

while the same confirmation page updates the data in a database where the
sql statement is

strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' " & _
", tblGMISExpenditures_Quarter.LocalShare= '" &
l_CurrentLocalShareOutlay & "' " & _
", tblGMISExpenditures_Quarter.MBCCShare= '" &
l_c_MBCCShareOfOutlay & "' " & _
", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
l_CurrentUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
l_CurrentLocalShareUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.ProjectIncome= '" &
l_CurrentOtherProjectIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
l_CurrentForfeitureIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.OtherExpense= '" &
l_CurrentOtherProjectIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
l_CurrentForfeitureIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.InterestReceived= '" &
l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
l_p_c_TotalOutlay & "' " & _
", tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
" & _
", tblGMISExpenditures_Quarter.Name= ' " & l_f_Name & " ' " & _
", tblGMISExpenditures_Quarter.Title= ' " & l_f_personstitle & "
' " & _
", tblGMISExpenditures_Quarter.AreaCode= ' " & l_f_PhoneAreaCode
& " ' " & _
", tblGMISExpenditures_Quarter.Phone1= ' " & l_f_Phone1 & " ' "
& _
", tblGMISExpenditures_Quarter.Phone2= ' " & l_f_Phone2 & " ' "
& _
", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
" where " & _
" tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"

Now, why after saving the data, for the stated fields, data is shifting in
the right by one space? Looking for some resolution and cause. Thanks in
advance. Regards.
Jul 22 '05 #1
17 1549
Could be that the form fields are adding a blank somewhere when you display
the form.

Try trimming the data as in:

Trim(Request.Form("txt_Name"))

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:63**********************************@microsof t.com...
Hi,
This is a strange problem I am encountering. I have a asp page with a
confirmation.asp page that saves data to a table. There are few text
fields
that are captured by the confirmation page as
l_f_name = Request.Form("txt_Name")
l_f_personstitle = Request.Form("txt_Title")
l_f_PhoneAreaCode = Request.Form("txt_PhoneAreaCode")
l_f_Phone1 = Request.Form("txt_Phone1")
l_f_Phone2 = Request.Form("txt_Phone2")
l_f_Date = Request.Form("txt_Date")

while the same confirmation page updates the data in a database where the
sql statement is

strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' " & _
", tblGMISExpenditures_Quarter.LocalShare= '" &
l_CurrentLocalShareOutlay & "' " & _
", tblGMISExpenditures_Quarter.MBCCShare= '" &
l_c_MBCCShareOfOutlay & "' " & _
", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
l_CurrentUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
l_CurrentLocalShareUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.ProjectIncome= '" &
l_CurrentOtherProjectIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
l_CurrentForfeitureIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.OtherExpense= '" &
l_CurrentOtherProjectIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
l_CurrentForfeitureIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.InterestReceived= '" &
l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
l_p_c_TotalOutlay & "' " & _
", tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
" & _
", tblGMISExpenditures_Quarter.Name= ' " & l_f_Name & " ' " & _
", tblGMISExpenditures_Quarter.Title= ' " & l_f_personstitle & "
' " & _
", tblGMISExpenditures_Quarter.AreaCode= ' " & l_f_PhoneAreaCode
& " ' " & _
", tblGMISExpenditures_Quarter.Phone1= ' " & l_f_Phone1 & " ' "
& _
", tblGMISExpenditures_Quarter.Phone2= ' " & l_f_Phone2 & " ' "
& _
", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
" where " & _
" tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"

Now, why after saving the data, for the stated fields, data is shifting in
the right by one space? Looking for some resolution and cause. Thanks in
advance. Regards.

Jul 22 '05 #2
tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
should be
tblGMISExpenditures_Quarter.Remarks= '" & l_f_Remarks & "'

--
Curt Christianson
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:63**********************************@microsof t.com...
Hi,
This is a strange problem I am encountering. I have a asp page with a
confirmation.asp page that saves data to a table. There are few text
fields
that are captured by the confirmation page as
l_f_name = Request.Form("txt_Name")
l_f_personstitle = Request.Form("txt_Title")
l_f_PhoneAreaCode = Request.Form("txt_PhoneAreaCode")
l_f_Phone1 = Request.Form("txt_Phone1")
l_f_Phone2 = Request.Form("txt_Phone2")
l_f_Date = Request.Form("txt_Date")

while the same confirmation page updates the data in a database where the
sql statement is

strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' " & _
", tblGMISExpenditures_Quarter.LocalShare= '" &
l_CurrentLocalShareOutlay & "' " & _
", tblGMISExpenditures_Quarter.MBCCShare= '" &
l_c_MBCCShareOfOutlay & "' " & _
", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
l_CurrentUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
l_CurrentLocalShareUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.ProjectIncome= '" &
l_CurrentOtherProjectIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
l_CurrentForfeitureIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.OtherExpense= '" &
l_CurrentOtherProjectIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
l_CurrentForfeitureIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.InterestReceived= '" &
l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
l_p_c_TotalOutlay & "' " & _
", tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
" & _
", tblGMISExpenditures_Quarter.Name= ' " & l_f_Name & " ' " & _
", tblGMISExpenditures_Quarter.Title= ' " & l_f_personstitle & "
' " & _
", tblGMISExpenditures_Quarter.AreaCode= ' " & l_f_PhoneAreaCode
& " ' " & _
", tblGMISExpenditures_Quarter.Phone1= ' " & l_f_Phone1 & " ' "
& _
", tblGMISExpenditures_Quarter.Phone2= ' " & l_f_Phone2 & " ' "
& _
", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
" where " & _
" tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"

Now, why after saving the data, for the stated fields, data is shifting in
the right by one space? Looking for some resolution and cause. Thanks in
advance. Regards.

Jul 22 '05 #3
Thanks for the advise Mark. I appreciate it. Now, after doing a trim command
to each of the text field capture, the problem is solved. However, still I am
finding that in each of the text field, there is one space left and then the
data starts filling in. At least, this time the shifting data problem is
solved. However, I am wondering in spite of trim function applied, why should
be there one space and then data in both form and the database table. Any
further thoughts. Thanks. Regards.

"Mark Schupp" wrote:
Could be that the form fields are adding a blank somewhere when you display
the form.

Try trimming the data as in:

Trim(Request.Form("txt_Name"))

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:63**********************************@microsof t.com...
Hi,
This is a strange problem I am encountering. I have a asp page with a
confirmation.asp page that saves data to a table. There are few text
fields
that are captured by the confirmation page as
l_f_name = Request.Form("txt_Name")
l_f_personstitle = Request.Form("txt_Title")
l_f_PhoneAreaCode = Request.Form("txt_PhoneAreaCode")
l_f_Phone1 = Request.Form("txt_Phone1")
l_f_Phone2 = Request.Form("txt_Phone2")
l_f_Date = Request.Form("txt_Date")

while the same confirmation page updates the data in a database where the
sql statement is

strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' " & _
", tblGMISExpenditures_Quarter.LocalShare= '" &
l_CurrentLocalShareOutlay & "' " & _
", tblGMISExpenditures_Quarter.MBCCShare= '" &
l_c_MBCCShareOfOutlay & "' " & _
", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
l_CurrentUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
l_CurrentLocalShareUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.ProjectIncome= '" &
l_CurrentOtherProjectIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
l_CurrentForfeitureIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.OtherExpense= '" &
l_CurrentOtherProjectIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
l_CurrentForfeitureIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.InterestReceived= '" &
l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
l_p_c_TotalOutlay & "' " & _
", tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
" & _
", tblGMISExpenditures_Quarter.Name= ' " & l_f_Name & " ' " & _
", tblGMISExpenditures_Quarter.Title= ' " & l_f_personstitle & "
' " & _
", tblGMISExpenditures_Quarter.AreaCode= ' " & l_f_PhoneAreaCode
& " ' " & _
", tblGMISExpenditures_Quarter.Phone1= ' " & l_f_Phone1 & " ' "
& _
", tblGMISExpenditures_Quarter.Phone2= ' " & l_f_Phone2 & " ' "
& _
", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
" where " & _
" tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"

Now, why after saving the data, for the stated fields, data is shifting in
the right by one space? Looking for some resolution and cause. Thanks in
advance. Regards.


Jul 22 '05 #4
Thanks Curt for your reply. Let me check whether this change can do the
trick. Regards.

"Curt_C [MVP]" wrote:
tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
should be
tblGMISExpenditures_Quarter.Remarks= '" & l_f_Remarks & "'

--
Curt Christianson
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:63**********************************@microsof t.com...
Hi,
This is a strange problem I am encountering. I have a asp page with a
confirmation.asp page that saves data to a table. There are few text
fields
that are captured by the confirmation page as
l_f_name = Request.Form("txt_Name")
l_f_personstitle = Request.Form("txt_Title")
l_f_PhoneAreaCode = Request.Form("txt_PhoneAreaCode")
l_f_Phone1 = Request.Form("txt_Phone1")
l_f_Phone2 = Request.Form("txt_Phone2")
l_f_Date = Request.Form("txt_Date")

while the same confirmation page updates the data in a database where the
sql statement is

strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' " & _
", tblGMISExpenditures_Quarter.LocalShare= '" &
l_CurrentLocalShareOutlay & "' " & _
", tblGMISExpenditures_Quarter.MBCCShare= '" &
l_c_MBCCShareOfOutlay & "' " & _
", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
l_CurrentUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
l_CurrentLocalShareUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.ProjectIncome= '" &
l_CurrentOtherProjectIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
l_CurrentForfeitureIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.OtherExpense= '" &
l_CurrentOtherProjectIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
l_CurrentForfeitureIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.InterestReceived= '" &
l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
l_p_c_TotalOutlay & "' " & _
", tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
" & _
", tblGMISExpenditures_Quarter.Name= ' " & l_f_Name & " ' " & _
", tblGMISExpenditures_Quarter.Title= ' " & l_f_personstitle & "
' " & _
", tblGMISExpenditures_Quarter.AreaCode= ' " & l_f_PhoneAreaCode
& " ' " & _
", tblGMISExpenditures_Quarter.Phone1= ' " & l_f_Phone1 & " ' "
& _
", tblGMISExpenditures_Quarter.Phone2= ' " & l_f_Phone2 & " ' "
& _
", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
" where " & _
" tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"

Now, why after saving the data, for the stated fields, data is shifting in
the right by one space? Looking for some resolution and cause. Thanks in
advance. Regards.


Jul 22 '05 #5
Jack wrote:
I am wondering in spite of trim function applied, why should be
there one space and then data in both form and the database table.


This can happen if there is whitespace in the source HTML. Two scenarios:

<input type="text" value=" <%=MyVar%> ">
<textarea><%=MyVar%>
</textarea>

In the text input case, the whitespace is fairly clear. With a textarea,
it's not quite as obvious. View source on the confirmation page and see
what's there.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 22 '05 #6
After testing, I find that it works now. However, I forgot to tell that
remarks is a memo field in access. In spite of implementing the change the
field seems to leave one space before adding data. Is this common with a memo
field? Thanks for your help.

"Jack" wrote:
Thanks Curt for your reply. Let me check whether this change can do the
trick. Regards.

"Curt_C [MVP]" wrote:
tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
should be
tblGMISExpenditures_Quarter.Remarks= '" & l_f_Remarks & "'

--
Curt Christianson
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:63**********************************@microsof t.com...
Hi,
This is a strange problem I am encountering. I have a asp page with a
confirmation.asp page that saves data to a table. There are few text
fields
that are captured by the confirmation page as
l_f_name = Request.Form("txt_Name")
l_f_personstitle = Request.Form("txt_Title")
l_f_PhoneAreaCode = Request.Form("txt_PhoneAreaCode")
l_f_Phone1 = Request.Form("txt_Phone1")
l_f_Phone2 = Request.Form("txt_Phone2")
l_f_Date = Request.Form("txt_Date")

while the same confirmation page updates the data in a database where the
sql statement is

strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' " & _
", tblGMISExpenditures_Quarter.LocalShare= '" &
l_CurrentLocalShareOutlay & "' " & _
", tblGMISExpenditures_Quarter.MBCCShare= '" &
l_c_MBCCShareOfOutlay & "' " & _
", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
l_CurrentUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
l_CurrentLocalShareUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.ProjectIncome= '" &
l_CurrentOtherProjectIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
l_CurrentForfeitureIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.OtherExpense= '" &
l_CurrentOtherProjectIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
l_CurrentForfeitureIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.InterestReceived= '" &
l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
l_p_c_TotalOutlay & "' " & _
", tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
" & _
", tblGMISExpenditures_Quarter.Name= ' " & l_f_Name & " ' " & _
", tblGMISExpenditures_Quarter.Title= ' " & l_f_personstitle & "
' " & _
", tblGMISExpenditures_Quarter.AreaCode= ' " & l_f_PhoneAreaCode
& " ' " & _
", tblGMISExpenditures_Quarter.Phone1= ' " & l_f_Phone1 & " ' "
& _
", tblGMISExpenditures_Quarter.Phone2= ' " & l_f_Phone2 & " ' "
& _
", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
" where " & _
" tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"

Now, why after saving the data, for the stated fields, data is shifting in
the right by one space? Looking for some resolution and cause. Thanks in
advance. Regards.


Jul 22 '05 #7
Hi Dave,
Thanks for your advise. I got the anwer from Curt, well almost. Stil the
remark field is not trimming the leading space(one). Do you think, memo field
does throw in one space before the data? Thanks.

"Dave Anderson" wrote:
Jack wrote:
I am wondering in spite of trim function applied, why should be
there one space and then data in both form and the database table.


This can happen if there is whitespace in the source HTML. Two scenarios:

<input type="text" value=" <%=MyVar%> ">
<textarea><%=MyVar%>

Jul 22 '05 #8
you sure its the data and not the way you are displaying it?
And no, it shouldn't ever happen "automatically"

--
Curt Christianson
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:7B**********************************@microsof t.com...
After testing, I find that it works now. However, I forgot to tell that
remarks is a memo field in access. In spite of implementing the change the
field seems to leave one space before adding data. Is this common with a
memo
field? Thanks for your help.

"Jack" wrote:
Thanks Curt for your reply. Let me check whether this change can do the
trick. Regards.

"Curt_C [MVP]" wrote:
> tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
> should be
> tblGMISExpenditures_Quarter.Remarks= '" & l_f_Remarks & "'
>
> --
> Curt Christianson
> Site: http://www.Darkfalz.com
> Blog: http://blog.Darkfalz.com
>
>
> "Jack" <Ja**@discussions.microsoft.com> wrote in message
> news:63**********************************@microsof t.com...
> > Hi,
> > This is a strange problem I am encountering. I have a asp page with a
> > confirmation.asp page that saves data to a table. There are few text
> > fields
> > that are captured by the confirmation page as
> > l_f_name = Request.Form("txt_Name")
> > l_f_personstitle = Request.Form("txt_Title")
> > l_f_PhoneAreaCode = Request.Form("txt_PhoneAreaCode")
> > l_f_Phone1 = Request.Form("txt_Phone1")
> > l_f_Phone2 = Request.Form("txt_Phone2")
> > l_f_Date = Request.Form("txt_Date")
> >
> > while the same confirmation page updates the data in a database where
> > the
> > sql statement is
> >
> >
> >
> > strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
> > tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "'
> > " & _
> > ", tblGMISExpenditures_Quarter.LocalShare= '" &
> > l_CurrentLocalShareOutlay & "' " & _
> > ", tblGMISExpenditures_Quarter.MBCCShare= '" &
> > l_c_MBCCShareOfOutlay & "' " & _
> > ", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
> > l_CurrentUnpaidObligations & "' " & _
> > ", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
> > l_CurrentLocalShareUnpaidObligations & "' " & _
> > ", tblGMISExpenditures_Quarter.ProjectIncome= '" &
> > l_CurrentOtherProjectIncomeReceived & "' " & _
> > ", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
> > l_CurrentForfeitureIncomeReceived & "' " & _
> > ", tblGMISExpenditures_Quarter.OtherExpense= '" &
> > l_CurrentOtherProjectIncomeExpenditures & "' " & _
> > ", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
> > l_CurrentForfeitureIncomeExpenditures & "' " & _
> > ", tblGMISExpenditures_Quarter.InterestReceived= '" &
> > l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
> > ", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
> > l_p_c_TotalOutlay & "' " & _
> > ", tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & "
> > '
> > " & _
> > ", tblGMISExpenditures_Quarter.Name= ' " & l_f_Name & " ' " &
> > _
> > ", tblGMISExpenditures_Quarter.Title= ' " & l_f_personstitle &
> > "
> > ' " & _
> > ", tblGMISExpenditures_Quarter.AreaCode= ' " &
> > l_f_PhoneAreaCode
> > & " ' " & _
> > ", tblGMISExpenditures_Quarter.Phone1= ' " & l_f_Phone1 & " '
> > "
> > & _
> > ", tblGMISExpenditures_Quarter.Phone2= ' " & l_f_Phone2 & " '
> > "
> > & _
> > ", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
> > " where " & _
> > " tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"
> >
> > Now, why after saving the data, for the stated fields, data is
> > shifting in
> > the right by one space? Looking for some resolution and cause. Thanks
> > in
> > advance. Regards.
>
>
>

Jul 22 '05 #9
That was my initial assessment. In any event I am going to check it again.
Thanks

"Curt_C [MVP]" wrote:
you sure its the data and not the way you are displaying it?
And no, it shouldn't ever happen "automatically"

--
Curt Christianson
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:7B**********************************@microsof t.com...
After testing, I find that it works now. However, I forgot to tell that
remarks is a memo field in access. In spite of implementing the change the
field seems to leave one space before adding data. Is this common with a
memo
field? Thanks for your help.

"Jack" wrote:
Thanks Curt for your reply. Let me check whether this change can do the
trick. Regards.

"Curt_C [MVP]" wrote:

> tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & " '
> should be
> tblGMISExpenditures_Quarter.Remarks= '" & l_f_Remarks & "'
>
> --
> Curt Christianson
> Site: http://www.Darkfalz.com
> Blog: http://blog.Darkfalz.com
>
>
> "Jack" <Ja**@discussions.microsoft.com> wrote in message
> news:63**********************************@microsof t.com...
> > Hi,
> > This is a strange problem I am encountering. I have a asp page with a
> > confirmation.asp page that saves data to a table. There are few text
> > fields
> > that are captured by the confirmation page as
> > l_f_name = Request.Form("txt_Name")
> > l_f_personstitle = Request.Form("txt_Title")
> > l_f_PhoneAreaCode = Request.Form("txt_PhoneAreaCode")
> > l_f_Phone1 = Request.Form("txt_Phone1")
> > l_f_Phone2 = Request.Form("txt_Phone2")
> > l_f_Date = Request.Form("txt_Date")
> >
> > while the same confirmation page updates the data in a database where
> > the
> > sql statement is
> >
> >
> >
> > strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
> > tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "'
> > " & _
> > ", tblGMISExpenditures_Quarter.LocalShare= '" &
> > l_CurrentLocalShareOutlay & "' " & _
> > ", tblGMISExpenditures_Quarter.MBCCShare= '" &
> > l_c_MBCCShareOfOutlay & "' " & _
> > ", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
> > l_CurrentUnpaidObligations & "' " & _
> > ", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
> > l_CurrentLocalShareUnpaidObligations & "' " & _
> > ", tblGMISExpenditures_Quarter.ProjectIncome= '" &
> > l_CurrentOtherProjectIncomeReceived & "' " & _
> > ", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
> > l_CurrentForfeitureIncomeReceived & "' " & _
> > ", tblGMISExpenditures_Quarter.OtherExpense= '" &
> > l_CurrentOtherProjectIncomeExpenditures & "' " & _
> > ", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
> > l_CurrentForfeitureIncomeExpenditures & "' " & _
> > ", tblGMISExpenditures_Quarter.InterestReceived= '" &
> > l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
> > ", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
> > l_p_c_TotalOutlay & "' " & _
> > ", tblGMISExpenditures_Quarter.Remarks= ' " & l_f_Remarks & "
> > '
> > " & _
> > ", tblGMISExpenditures_Quarter.Name= ' " & l_f_Name & " ' " &
> > _
> > ", tblGMISExpenditures_Quarter.Title= ' " & l_f_personstitle &
> > "
> > ' " & _
> > ", tblGMISExpenditures_Quarter.AreaCode= ' " &
> > l_f_PhoneAreaCode
> > & " ' " & _
> > ", tblGMISExpenditures_Quarter.Phone1= ' " & l_f_Phone1 & " '
> > "
> > & _
> > ", tblGMISExpenditures_Quarter.Phone2= ' " & l_f_Phone2 & " '
> > "
> > & _
> > ", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
> > " where " & _
> > " tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"
> >
> > Now, why after saving the data, for the stated fields, data is
> > shifting in
> > the right by one space? Looking for some resolution and cause. Thanks
> > in
> > advance. Regards.
>
>
>


Jul 22 '05 #10
Jack wrote:
...the remark field is not trimming the leading space(one). Do you
think, memo field does throw in one space before the data? Thanks.


Unless you show us some of the relevant ASP code, we can come up with
speculative reasons for days. Focusing on just one affected field, can you
show the line in your confirmation page that displays that field? How about
the line(s) associated with putting that field into the database?

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 22 '05 #11
Dave,
Here is the data capture from the form.
l_f_Remarks = trim(Request.Form("txt_Remarks"))
and here is the corresponding statement for database update. Hope this helps.
Regards

strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' " & _
", tblGMISExpenditures_Quarter.LocalShare= '" &
l_CurrentLocalShareOutlay & "' " & _
", tblGMISExpenditures_Quarter.MBCCShare= '" &
l_c_MBCCShareOfOutlay & "' " & _
", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
l_CurrentUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
l_CurrentLocalShareUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.ProjectIncome= '" &
l_CurrentOtherProjectIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
l_CurrentForfeitureIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.OtherExpense= '" &
l_CurrentOtherProjectIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
l_CurrentForfeitureIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.InterestReceived= '" &
l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
l_p_c_TotalOutlay & "' " & _
", tblGMISExpenditures_Quarter.Remarks= '" & l_f_Remarks & "' " & _
", tblGMISExpenditures_Quarter.Name= '" & l_f_Name & "' " & _
", tblGMISExpenditures_Quarter.Title= '" & l_f_personstitle & "' "
& _
", tblGMISExpenditures_Quarter.AreaCode= '" & l_f_PhoneAreaCode &
"' " & _
", tblGMISExpenditures_Quarter.Phone1= '" & l_f_Phone1 & "' " & _
", tblGMISExpenditures_Quarter.Phone2= '" & l_f_Phone2 & "' " & _
", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
" where " & _
" tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"

"Dave Anderson" wrote:
Jack wrote:
...the remark field is not trimming the leading space(one). Do you
think, memo field does throw in one space before the data? Thanks.


Unless you show us some of the relevant ASP code, we can come up with
speculative reasons for days. Focusing on just one affected field, can you
show the line in your confirmation page that displays that field? How about
the line(s) associated with putting that field into the database?

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.

Jul 22 '05 #12
Jack wrote:
l_f_Remarks = trim(Request.Form("txt_Remarks"))


Have you examined Server.HTMLEncode(l_f_Remarks) ?
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 22 '05 #13
Dave, I just tried. However, still the same. Thanks.

"Dave Anderson" wrote:
Jack wrote:
l_f_Remarks = trim(Request.Form("txt_Remarks"))


Have you examined Server.HTMLEncode(l_f_Remarks) ?
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.

Jul 22 '05 #14
Show the code you are using to display the field on the form.

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:4F**********************************@microsof t.com...
Dave,
Here is the data capture from the form.
l_f_Remarks = trim(Request.Form("txt_Remarks"))
and here is the corresponding statement for database update. Hope this
helps.
Regards

strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' " & _
", tblGMISExpenditures_Quarter.LocalShare= '" &
l_CurrentLocalShareOutlay & "' " & _
", tblGMISExpenditures_Quarter.MBCCShare= '" &
l_c_MBCCShareOfOutlay & "' " & _
", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
l_CurrentUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
l_CurrentLocalShareUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.ProjectIncome= '" &
l_CurrentOtherProjectIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
l_CurrentForfeitureIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.OtherExpense= '" &
l_CurrentOtherProjectIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
l_CurrentForfeitureIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.InterestReceived= '" &
l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
l_p_c_TotalOutlay & "' " & _
", tblGMISExpenditures_Quarter.Remarks= '" & l_f_Remarks & "' " & _
", tblGMISExpenditures_Quarter.Name= '" & l_f_Name & "' " & _
", tblGMISExpenditures_Quarter.Title= '" & l_f_personstitle & "' "
& _
", tblGMISExpenditures_Quarter.AreaCode= '" & l_f_PhoneAreaCode &
"' " & _
", tblGMISExpenditures_Quarter.Phone1= '" & l_f_Phone1 & "' " & _
", tblGMISExpenditures_Quarter.Phone2= '" & l_f_Phone2 & "' " & _
", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
" where " & _
" tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"

"Dave Anderson" wrote:
Jack wrote:
> ...the remark field is not trimming the leading space(one). Do you
> think, memo field does throw in one space before the data? Thanks.


Unless you show us some of the relevant ASP code, we can come up with
speculative reasons for days. Focusing on just one affected field, can
you
show the line in your confirmation page that displays that field? How
about
the line(s) associated with putting that field into the database?

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message.
Use
of this email address implies consent to these terms. Please do not
contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.

Jul 22 '05 #15
Mark, here is the way I am displaying the remarks field. Thanks. Regards.

l_Remarks = RSCurrentExpense.Fields("Remarks")
<textarea rows="9" name="txt_Remarks" cols="106"> <%Response.Write
(trim(l_Remarks))%></textarea>

"Mark Schupp" wrote:
Show the code you are using to display the field on the form.

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:4F**********************************@microsof t.com...
Dave,
Here is the data capture from the form.
l_f_Remarks = trim(Request.Form("txt_Remarks"))
and here is the corresponding statement for database update. Hope this
helps.
Regards

strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' " & _
", tblGMISExpenditures_Quarter.LocalShare= '" &
l_CurrentLocalShareOutlay & "' " & _
", tblGMISExpenditures_Quarter.MBCCShare= '" &
l_c_MBCCShareOfOutlay & "' " & _
", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
l_CurrentUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
l_CurrentLocalShareUnpaidObligations & "' " & _
", tblGMISExpenditures_Quarter.ProjectIncome= '" &
l_CurrentOtherProjectIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
l_CurrentForfeitureIncomeReceived & "' " & _
", tblGMISExpenditures_Quarter.OtherExpense= '" &
l_CurrentOtherProjectIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
l_CurrentForfeitureIncomeExpenditures & "' " & _
", tblGMISExpenditures_Quarter.InterestReceived= '" &
l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
l_p_c_TotalOutlay & "' " & _
", tblGMISExpenditures_Quarter.Remarks= '" & l_f_Remarks & "' " & _
", tblGMISExpenditures_Quarter.Name= '" & l_f_Name & "' " & _
", tblGMISExpenditures_Quarter.Title= '" & l_f_personstitle & "' "
& _
", tblGMISExpenditures_Quarter.AreaCode= '" & l_f_PhoneAreaCode &
"' " & _
", tblGMISExpenditures_Quarter.Phone1= '" & l_f_Phone1 & "' " & _
", tblGMISExpenditures_Quarter.Phone2= '" & l_f_Phone2 & "' " & _
", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
" where " & _
" tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"

"Dave Anderson" wrote:
Jack wrote:
> ...the remark field is not trimming the leading space(one). Do you
> think, memo field does throw in one space before the data? Thanks.

Unless you show us some of the relevant ASP code, we can come up with
speculative reasons for days. Focusing on just one affected field, can
you
show the line in your confirmation page that displays that field? How
about
the line(s) associated with putting that field into the database?

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message.
Use
of this email address implies consent to these terms. Please do not
contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.


Jul 22 '05 #16
You have a blank between the <textarea> tag and the response.write.

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:0A**********************************@microsof t.com...
Mark, here is the way I am displaying the remarks field. Thanks. Regards.

l_Remarks = RSCurrentExpense.Fields("Remarks")
<textarea rows="9" name="txt_Remarks" cols="106"> <%Response.Write
(trim(l_Remarks))%></textarea>

"Mark Schupp" wrote:
Show the code you are using to display the field on the form.

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:4F**********************************@microsof t.com...
> Dave,
> Here is the data capture from the form.
> l_f_Remarks = trim(Request.Form("txt_Remarks"))
> and here is the corresponding statement for database update. Hope this
> helps.
> Regards
>
> strSQL1 = "UPDATE tblGMISExpenditures_Quarter SET
> tblGMISExpenditures_Quarter.CurrentOutlay= '" & l_CurrentOutlay & "' "
> & _
> ", tblGMISExpenditures_Quarter.LocalShare= '" &
> l_CurrentLocalShareOutlay & "' " & _
> ", tblGMISExpenditures_Quarter.MBCCShare= '" &
> l_c_MBCCShareOfOutlay & "' " & _
> ", tblGMISExpenditures_Quarter.UnpaidOblig= '" &
> l_CurrentUnpaidObligations & "' " & _
> ", tblGMISExpenditures_Quarter.LocalShareUnpaidOblig= '" &
> l_CurrentLocalShareUnpaidObligations & "' " & _
> ", tblGMISExpenditures_Quarter.ProjectIncome= '" &
> l_CurrentOtherProjectIncomeReceived & "' " & _
> ", tblGMISExpenditures_Quarter.ForfeitureIncome= '" &
> l_CurrentForfeitureIncomeReceived & "' " & _
> ", tblGMISExpenditures_Quarter.OtherExpense= '" &
> l_CurrentOtherProjectIncomeExpenditures & "' " & _
> ", tblGMISExpenditures_Quarter.ForfeitureExpense= '" &
> l_CurrentForfeitureIncomeExpenditures & "' " & _
> ", tblGMISExpenditures_Quarter.InterestReceived= '" &
> l_CurrentInterestIncomeReceivedOnMBCCFunds & "' " & _
> ", tblGMISExpenditures_Quarter.TotalPeriodOutlay= '" &
> l_p_c_TotalOutlay & "' " & _
> ", tblGMISExpenditures_Quarter.Remarks= '" & l_f_Remarks & "' "
> & _
> ", tblGMISExpenditures_Quarter.Name= '" & l_f_Name & "' " & _
> ", tblGMISExpenditures_Quarter.Title= '" & l_f_personstitle & "'
> "
> & _
> ", tblGMISExpenditures_Quarter.AreaCode= '" & l_f_PhoneAreaCode
> &
> "' " & _
> ", tblGMISExpenditures_Quarter.Phone1= '" & l_f_Phone1 & "' " &
> _
> ", tblGMISExpenditures_Quarter.Phone2= '" & l_f_Phone2 & "' " &
> _
> ", tblGMISExpenditures_Quarter.Date= '" & l_f_Date & "' " & _
> " where " & _
> " tblGMISExpenditures_Quarter.SubgrantIntID = " & GrantID & ";"
>
> "Dave Anderson" wrote:
>
>> Jack wrote:
>> > ...the remark field is not trimming the leading space(one). Do you
>> > think, memo field does throw in one space before the data? Thanks.
>>
>> Unless you show us some of the relevant ASP code, we can come up with
>> speculative reasons for days. Focusing on just one affected field, can
>> you
>> show the line in your confirmation page that displays that field? How
>> about
>> the line(s) associated with putting that field into the database?
>>
>>
>>
>> --
>> Dave Anderson
>>
>> Unsolicited commercial email will be read at a cost of $500 per
>> message.
>> Use
>> of this email address implies consent to these terms. Please do not
>> contact
>> me directly or ask me to contact you directly for assistance. If your
>> question is worth asking, it's worth posting.
>>
>>
>>


Jul 22 '05 #17
Mark, you got it. Now it works perfect. Thanks a lot for your help. Regards.

"Mark Schupp" wrote:
You have a blank between the <textarea> tag and the response.write.

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:0A**********************************@microsof t.com...
Mark, here is the way I am displaying the remarks field. Thanks. Regards.

l_Remarks = RSCurrentExpense.Fields("Remarks")
<textarea rows="9" name="txt_Remarks" cols="106"> <%Response.Write
(trim(l_Remarks))%>

Jul 22 '05 #18

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

Similar topics

6
by: David Stockwell | last post by:
Hi, My background is c/c++ and java. I'm learning python at this point. My question is does python share java's peculiar mode of bit shifting, or does python adhere closer to c's bit shifting?...
1
by: Ben | last post by:
I have a Tabular form bound to a table. The purpose of this form is to get times from a timer and record them in a field. The timer dumps the time automatically through a serial port. When the time...
8
by: mark | last post by:
Access2000 How do I write a query that combines the CTC field from each record below into one record? I need to concatenate the CTC field with a separator, like below: ...
11
by: David Messner | last post by:
Ok I know this is simple but the statement eludes me... I have a date field where I want the default value on the data entry form's date field to be the last date entered. I figure I can do this...
25
by: Lyn | last post by:
Hi, I am working on a genealogy form. The only table (so far) lists everybody in the family, one record per person. Each record has an autonum ID. The parent form (frmMainForm) displays the...
20
by: Prakash | last post by:
Hi ! I have a field "sub_tran_no" in my form in continuous view. When the user presses a button "Re-Number", I'd like to: 1) Save the current record pointer position 2) Save the current...
18
by: Dixie | last post by:
Can I set the Format property in a date/time field in code? Can I set the Input Mask in a date/time field in code? Can I set the Format of a Yes/No field to Checkbox in code? I am working on...
8
by: ben | last post by:
i have a bit of code, that works absolutely fine as is, but seems over complicated/long winded. is there anyway to shorten/simplify it? the code is below. description of it: it's like strcpy in...
1
by: Brad Pears | last post by:
I am using vb.net 2005 and SQL server 2000. In my table I have a date field of type "smalldatetime". In my vb application, the user may or may not enter a date value into the appropriate text box....
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.