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

Assign value to textbox via Java script in VB

Hi,

I am displaying modal dialog and passing values from the main form to the
modal dialog and back.
It works fine but if I used the following syntax on Page_Load(just for
testing) in VB to assign value form the object to text Box it gives error
'Object required'
Dim strResponse As String
strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf
strResponse = strResponse & "var aForm; " & vbCrLf
'Error is on the page- Object required
strResponse = strResponse & "aForm = window.document.body.all[""TextBox1""];
" & vbCrLf
strResponse = strResponse & "window.alert(aForm); " & vbCrLf
strResponse = strResponse & "</script>" & vbCrLf
Response.Write(strResponse)

I want to assign a value from an object to TextBox in Java script but I
don't know how to refer to TextBox on page.
Is it - window.document.forms('formname').elements('elemen tname') didn't
work

Thanks for your response.
Nov 19 '05 #1
8 7374
What do you need VB for? Why can't you do everything on the client in
javascript in <body ... onload=...> event?

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:Oe**************@TK2MSFTNGP14.phx.gbl...
Hi,

I am displaying modal dialog and passing values from the main form to the
modal dialog and back.
It works fine but if I used the following syntax on Page_Load(just for
testing) in VB to assign value form the object to text Box it gives error
'Object required'
Dim strResponse As String
strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf
strResponse = strResponse & "var aForm; " & vbCrLf
'Error is on the page- Object required
strResponse = strResponse & "aForm = window.document.body.all[""TextBox1""]; " & vbCrLf
strResponse = strResponse & "window.alert(aForm); " & vbCrLf
strResponse = strResponse & "</script>" & vbCrLf
Response.Write(strResponse)

I want to assign a value from an object to TextBox in Java script but I
don't know how to refer to TextBox on page.
Is it - window.document.forms('formname').elements('elemen tname') didn't
work

Thanks for your response.

Nov 19 '05 #2
Just read your message second time.

How do you pass values to the modal dialog? What I wrote was good if you are
passing parameters in the second parameter of showModalDialog call.
Otherwise, if you can access the values on server side, you can just use
server code, like TextBox1.Value = myParam. What do you need javascript for
then?

Eliyahu

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
What do you need VB for? Why can't you do everything on the client in
javascript in <body ... onload=...> event?

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:Oe**************@TK2MSFTNGP14.phx.gbl...
Hi,

I am displaying modal dialog and passing values from the main form to the modal dialog and back.
It works fine but if I used the following syntax on Page_Load(just for
testing) in VB to assign value form the object to text Box it gives error 'Object required'
Dim strResponse As String
strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf
strResponse = strResponse & "var aForm; " & vbCrLf
'Error is on the page- Object required
strResponse = strResponse & "aForm =

window.document.body.all[""TextBox1""];
" & vbCrLf
strResponse = strResponse & "window.alert(aForm); " & vbCrLf
strResponse = strResponse & "</script>" & vbCrLf
Response.Write(strResponse)

I want to assign a value from an object to TextBox in Java script but I
don't know how to refer to TextBox on page.
Is it - window.document.forms('formname').elements('elemen tname') didn't
work

Thanks for your response.


Nov 19 '05 #3
Yes, I pass an object as the second parameter.
But I don't know how to assign a value from the object in JavaScript to the
TextBox on the main form.
It gives error object is required

Thanks

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:O8****************@TK2MSFTNGP12.phx.gbl...
Just read your message second time.

How do you pass values to the modal dialog? What I wrote was good if you
are
passing parameters in the second parameter of showModalDialog call.
Otherwise, if you can access the values on server side, you can just use
server code, like TextBox1.Value = myParam. What do you need javascript
for
then?

Eliyahu

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
What do you need VB for? Why can't you do everything on the client in
javascript in <body ... onload=...> event?

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:Oe**************@TK2MSFTNGP14.phx.gbl...
> Hi,
>
> I am displaying modal dialog and passing values from the main form to the > modal dialog and back.
> It works fine but if I used the following syntax on Page_Load(just for
> testing) in VB to assign value form the object to text Box it gives error > 'Object required'
> Dim strResponse As String
> strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf
> strResponse = strResponse & "var aForm; " & vbCrLf
> 'Error is on the page- Object required
> strResponse = strResponse & "aForm =

window.document.body.all[""TextBox1""];
> " & vbCrLf
> strResponse = strResponse & "window.alert(aForm); " & vbCrLf
> strResponse = strResponse & "</script>" & vbCrLf
> Response.Write(strResponse)
>
> I want to assign a value from an object to TextBox in Java script but I
> don't know how to refer to TextBox on page.
> Is it - window.document.forms('formname').elements('elemen tname')
> didn't
> work
>
> Thanks for your response.
>
>



Nov 19 '05 #4
It is ASP.Net VB project.

I have got main form.
It opens modal seacrh form. After a user makes a selection it should return
SelectedID to the main form and reload it
My problem is that I can pass object to the modal search form and get values
back but I don't know how to get values from the object in JavaScript in VB
and reload the form.

Thanks

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
What do you need VB for? Why can't you do everything on the client in
javascript in <body ... onload=...> event?

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:Oe**************@TK2MSFTNGP14.phx.gbl...
Hi,

I am displaying modal dialog and passing values from the main form to the
modal dialog and back.
It works fine but if I used the following syntax on Page_Load(just for
testing) in VB to assign value form the object to text Box it gives error
'Object required'
Dim strResponse As String
strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf
strResponse = strResponse & "var aForm; " & vbCrLf
'Error is on the page- Object required
strResponse = strResponse & "aForm =

window.document.body.all[""TextBox1""];
" & vbCrLf
strResponse = strResponse & "window.alert(aForm); " & vbCrLf
strResponse = strResponse & "</script>" & vbCrLf
Response.Write(strResponse)

I want to assign a value from an object to TextBox in Java script but I
don't know how to refer to TextBox on page.
Is it - window.document.forms('formname').elements('elemen tname') didn't
work

Thanks for your response.


Nov 19 '05 #5
You do it in javascript. Usually hidden text inputs are used to pass values
from client to server.

document.getElementById("myHiddenInput").value=myP aram

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:O9***************@TK2MSFTNGP15.phx.gbl...
Yes, I pass an object as the second parameter.
But I don't know how to assign a value from the object in JavaScript to the TextBox on the main form.
It gives error object is required

Thanks

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:O8****************@TK2MSFTNGP12.phx.gbl...
Just read your message second time.

How do you pass values to the modal dialog? What I wrote was good if you
are
passing parameters in the second parameter of showModalDialog call.
Otherwise, if you can access the values on server side, you can just use
server code, like TextBox1.Value = myParam. What do you need javascript
for
then?

Eliyahu

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
What do you need VB for? Why can't you do everything on the client in
javascript in <body ... onload=...> event?

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:Oe**************@TK2MSFTNGP14.phx.gbl...
> Hi,
>
> I am displaying modal dialog and passing values from the main form to

the
> modal dialog and back.
> It works fine but if I used the following syntax on Page_Load(just for > testing) in VB to assign value form the object to text Box it gives

error
> 'Object required'
> Dim strResponse As String
> strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf > strResponse = strResponse & "var aForm; " & vbCrLf
> 'Error is on the page- Object required
> strResponse = strResponse & "aForm =
window.document.body.all[""TextBox1""];
> " & vbCrLf
> strResponse = strResponse & "window.alert(aForm); " & vbCrLf
> strResponse = strResponse & "</script>" & vbCrLf
> Response.Write(strResponse)
>
> I want to assign a value from an object to TextBox in Java script but I > don't know how to refer to TextBox on page.
> Is it - window.document.forms('formname').elements('elemen tname')
> didn't
> work
>
> Thanks for your response.
>
>



Nov 19 '05 #6
Eliyahu,
I have got this code
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click

Dim strResponse As String
strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf
strResponse = strResponse & "var myObject = new Object(); " & vbCrLf
strResponse = strResponse & "myObject.guid = '" & strGuid & "'; " & vbCrLf
strResponse = strResponse & "myObject.id = 0; " & vbCrLf
strResponse = strResponse & "// The object myObject is sent to the modal
window. " & vbCrLf
strResponse = strResponse & "var answer =
window.showModalDialog('datagridHyperLink.aspx', myObject,
'dialogHeight:300px; dialogLeft:200px;'); " & vbCrLf
strResponse = strResponse & "document.getElementById('myHiddenInput').valu e=
myObject.id; " & vbCrLf
strResponse = strResponse & "window.alert(myObject.guid); " & vbCrLf
strResponse = strResponse & "window.alert(myObject.id); " & vbCrLf
strResponse = strResponse & "</script>" & vbCrLf
Response.Write(strResponse)

End Sub

I have got error again

document.getElementById(...) is null or not an object

Thanks again

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:e$**************@tk2msftngp13.phx.gbl...
You do it in javascript. Usually hidden text inputs are used to pass
values
from client to server.

document.getElementById("myHiddenInput").value=myP aram

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:O9***************@TK2MSFTNGP15.phx.gbl...
Yes, I pass an object as the second parameter.
But I don't know how to assign a value from the object in JavaScript to

the
TextBox on the main form.
It gives error object is required

Thanks

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:O8****************@TK2MSFTNGP12.phx.gbl...
> Just read your message second time.
>
> How do you pass values to the modal dialog? What I wrote was good if
> you
> are
> passing parameters in the second parameter of showModalDialog call.
> Otherwise, if you can access the values on server side, you can just
> use
> server code, like TextBox1.Value = myParam. What do you need javascript
> for
> then?
>
> Eliyahu
>
> "Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
> news:%2***************@TK2MSFTNGP15.phx.gbl...
>> What do you need VB for? Why can't you do everything on the client in
>> javascript in <body ... onload=...> event?
>>
>> Eliyahu
>>
>> "Sergei" <se****@ssw.com.au> wrote in message
>> news:Oe**************@TK2MSFTNGP14.phx.gbl...
>> > Hi,
>> >
>> > I am displaying modal dialog and passing values from the main form
>> > to
> the
>> > modal dialog and back.
>> > It works fine but if I used the following syntax on Page_Load(just for >> > testing) in VB to assign value form the object to text Box it gives
> error
>> > 'Object required'
>> > Dim strResponse As String
>> > strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf >> > strResponse = strResponse & "var aForm; " & vbCrLf
>> > 'Error is on the page- Object required
>> > strResponse = strResponse & "aForm =
>> window.document.body.all[""TextBox1""];
>> > " & vbCrLf
>> > strResponse = strResponse & "window.alert(aForm); " & vbCrLf
>> > strResponse = strResponse & "</script>" & vbCrLf
>> > Response.Write(strResponse)
>> >
>> > I want to assign a value from an object to TextBox in Java script
>> > but I >> > don't know how to refer to TextBox on page.
>> > Is it - window.document.forms('formname').elements('elemen tname')
>> > didn't
>> > work
>> >
>> > Thanks for your response.
>> >
>> >
>>
>>
>
>



Nov 19 '05 #7
I guess the problem is in the way how you sending javascript to client.
Likely, the DHTML object model of your page hasn't been built at this stage,
that's why none of the HTML elements can be found. Why do you need to emit
the javascript in the Response? Why not to put it inside your .aspx page in
the <head> section? BTW, you probably meant

document.getElementById('myHiddenInput').value=ans wer;

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:Oh**************@TK2MSFTNGP15.phx.gbl...
Eliyahu,
I have got this code
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click

Dim strResponse As String
strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf
strResponse = strResponse & "var myObject = new Object(); " & vbCrLf
strResponse = strResponse & "myObject.guid = '" & strGuid & "'; " & vbCrLf
strResponse = strResponse & "myObject.id = 0; " & vbCrLf
strResponse = strResponse & "// The object myObject is sent to the modal
window. " & vbCrLf
strResponse = strResponse & "var answer =
window.showModalDialog('datagridHyperLink.aspx', myObject,
'dialogHeight:300px; dialogLeft:200px;'); " & vbCrLf
strResponse = strResponse & "document.getElementById('myHiddenInput').valu e= myObject.id; " & vbCrLf
strResponse = strResponse & "window.alert(myObject.guid); " & vbCrLf
strResponse = strResponse & "window.alert(myObject.id); " & vbCrLf
strResponse = strResponse & "</script>" & vbCrLf
Response.Write(strResponse)

End Sub

I have got error again

document.getElementById(...) is null or not an object

Thanks again

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:e$**************@tk2msftngp13.phx.gbl...
You do it in javascript. Usually hidden text inputs are used to pass
values
from client to server.

document.getElementById("myHiddenInput").value=myP aram

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:O9***************@TK2MSFTNGP15.phx.gbl...
Yes, I pass an object as the second parameter.
But I don't know how to assign a value from the object in JavaScript to

the
TextBox on the main form.
It gives error object is required

Thanks

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:O8****************@TK2MSFTNGP12.phx.gbl...
> Just read your message second time.
>
> How do you pass values to the modal dialog? What I wrote was good if
> you
> are
> passing parameters in the second parameter of showModalDialog call.
> Otherwise, if you can access the values on server side, you can just
> use
> server code, like TextBox1.Value = myParam. What do you need javascript > for
> then?
>
> Eliyahu
>
> "Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
> news:%2***************@TK2MSFTNGP15.phx.gbl...
>> What do you need VB for? Why can't you do everything on the client in >> javascript in <body ... onload=...> event?
>>
>> Eliyahu
>>
>> "Sergei" <se****@ssw.com.au> wrote in message
>> news:Oe**************@TK2MSFTNGP14.phx.gbl...
>> > Hi,
>> >
>> > I am displaying modal dialog and passing values from the main form
>> > to
> the
>> > modal dialog and back.
>> > It works fine but if I used the following syntax on Page_Load(just

for
>> > testing) in VB to assign value form the object to text Box it gives > error
>> > 'Object required'
>> > Dim strResponse As String
>> > strResponse = strResponse & "<script language=""JavaScript"">" &

vbCrLf
>> > strResponse = strResponse & "var aForm; " & vbCrLf
>> > 'Error is on the page- Object required
>> > strResponse = strResponse & "aForm =
>> window.document.body.all[""TextBox1""];
>> > " & vbCrLf
>> > strResponse = strResponse & "window.alert(aForm); " & vbCrLf
>> > strResponse = strResponse & "</script>" & vbCrLf
>> > Response.Write(strResponse)
>> >
>> > I want to assign a value from an object to TextBox in Java script
>> > but

I
>> > don't know how to refer to TextBox on page.
>> > Is it - window.document.forms('formname').elements('elemen tname')
>> > didn't
>> > work
>> >
>> > Thanks for your response.
>> >
>> >
>>
>>
>
>



Nov 19 '05 #8
Found the solution - added smartnavgation="true" and it started working.
I used RegisterStartupScript method
Thanks
"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:uk**************@tk2msftngp13.phx.gbl...
I guess the problem is in the way how you sending javascript to client.
Likely, the DHTML object model of your page hasn't been built at this
stage,
that's why none of the HTML elements can be found. Why do you need to
emit
the javascript in the Response? Why not to put it inside your .aspx page
in
the <head> section? BTW, you probably meant

document.getElementById('myHiddenInput').value=ans wer;

Eliyahu

"Sergei" <se****@ssw.com.au> wrote in message
news:Oh**************@TK2MSFTNGP15.phx.gbl...
Eliyahu,
I have got this code
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click

Dim strResponse As String
strResponse = strResponse & "<script language=""JavaScript"">" & vbCrLf
strResponse = strResponse & "var myObject = new Object(); " & vbCrLf
strResponse = strResponse & "myObject.guid = '" & strGuid & "'; " &
vbCrLf
strResponse = strResponse & "myObject.id = 0; " & vbCrLf
strResponse = strResponse & "// The object myObject is sent to the modal
window. " & vbCrLf
strResponse = strResponse & "var answer =
window.showModalDialog('datagridHyperLink.aspx', myObject,
'dialogHeight:300px; dialogLeft:200px;'); " & vbCrLf
strResponse = strResponse &

"document.getElementById('myHiddenInput').valu e=
myObject.id; " & vbCrLf
strResponse = strResponse & "window.alert(myObject.guid); " & vbCrLf
strResponse = strResponse & "window.alert(myObject.id); " & vbCrLf
strResponse = strResponse & "</script>" & vbCrLf
Response.Write(strResponse)

End Sub

I have got error again

document.getElementById(...) is null or not an object

Thanks again

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:e$**************@tk2msftngp13.phx.gbl...
> You do it in javascript. Usually hidden text inputs are used to pass
> values
> from client to server.
>
> document.getElementById("myHiddenInput").value=myP aram
>
> Eliyahu
>
> "Sergei" <se****@ssw.com.au> wrote in message
> news:O9***************@TK2MSFTNGP15.phx.gbl...
>> Yes, I pass an object as the second parameter.
>> But I don't know how to assign a value from the object in JavaScript
>> to
> the
>> TextBox on the main form.
>> It gives error object is required
>>
>> Thanks
>>
>> "Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
>> news:O8****************@TK2MSFTNGP12.phx.gbl...
>> > Just read your message second time.
>> >
>> > How do you pass values to the modal dialog? What I wrote was good if
>> > you
>> > are
>> > passing parameters in the second parameter of showModalDialog call.
>> > Otherwise, if you can access the values on server side, you can just
>> > use
>> > server code, like TextBox1.Value = myParam. What do you need javascript >> > for
>> > then?
>> >
>> > Eliyahu
>> >
>> > "Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
>> > news:%2***************@TK2MSFTNGP15.phx.gbl...
>> >> What do you need VB for? Why can't you do everything on the client in >> >> javascript in <body ... onload=...> event?
>> >>
>> >> Eliyahu
>> >>
>> >> "Sergei" <se****@ssw.com.au> wrote in message
>> >> news:Oe**************@TK2MSFTNGP14.phx.gbl...
>> >> > Hi,
>> >> >
>> >> > I am displaying modal dialog and passing values from the main
>> >> > form
>> >> > to
>> > the
>> >> > modal dialog and back.
>> >> > It works fine but if I used the following syntax on
>> >> > Page_Load(just
> for
>> >> > testing) in VB to assign value form the object to text Box it gives >> > error
>> >> > 'Object required'
>> >> > Dim strResponse As String
>> >> > strResponse = strResponse & "<script language=""JavaScript"">" &
> vbCrLf
>> >> > strResponse = strResponse & "var aForm; " & vbCrLf
>> >> > 'Error is on the page- Object required
>> >> > strResponse = strResponse & "aForm =
>> >> window.document.body.all[""TextBox1""];
>> >> > " & vbCrLf
>> >> > strResponse = strResponse & "window.alert(aForm); " & vbCrLf
>> >> > strResponse = strResponse & "</script>" & vbCrLf
>> >> > Response.Write(strResponse)
>> >> >
>> >> > I want to assign a value from an object to TextBox in Java script
>> >> > but
> I
>> >> > don't know how to refer to TextBox on page.
>> >> > Is it - window.document.forms('formname').elements('elemen tname')
>> >> > didn't
>> >> > work
>> >> >
>> >> > Thanks for your response.
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Nov 19 '05 #9

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

Similar topics

1
by: Charles A. Lackman | last post by:
How do I retrieve a value from an ASP.NET Textbox in Java Script. The following code returns Null, What am I doing wrong? var AName = document.GetElementById("txtName.Value") Changing...
0
by: Gill Smith | last post by:
I have created a datagrid control with textbox in a template column. I have injected the java scripts to this textbox in the data bind event. It works fine(with alert message!). But when I try to...
7
by: dbabin | last post by:
I have a java script function enableServerList() {document.getElementById("ddlServers").disabled=false } function disableServerList() {document.getElementById("ddlServers").disabled=true } ...
3
by: Stefan Mueller | last post by:
Because the characters ', ", ... make troubles in my input boxes I use the following PHP command while generating the page htmlentities($my_var, ENT_QUOTES); However, if I use in my java scripts...
1
by: ravindravarman | last post by:
I need to assing some value from the java script variable in the .aspx page to a server side variable in the .aspx.cs page. Can any one help me with this? Thanks, Ravi
1
by: anilkumar1980 | last post by:
Hi All, Here I need help to all of u, I am using ASP.NET 2.0 and Third party Infragistic Controls. I Have included master page in my page (<%@ Page Language="VB"...
8
by: preeti13 | last post by:
i have a one java script function disp_confirm how i can get the parameter value with this function . code is like this <script type="text/javascript"> function disp_confirm() { ...
4
by: steve waugh | last post by:
Hi I m using asp:wizard contol in my application . i m using Javascript for calculation, the problem is when i perform the calculation and move to next step the calculated value of previous...
1
by: Jeff User | last post by:
hi all Using C#, .NET1.1. I need to pass a string of text to the final html output and then capture it with java script on the client side. I found that I can place my string in and then...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.