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

Grid headers in a div

My app produces some long datatables to display in a grid. So I put them in
a div so users can scroll. But the grid headers scroll out of view. I would
like to stop them doing this. Can I fix them in place at the top of the div?

--
John Wilson
Nov 19 '05 #1
10 1905
http://www.societopia.net/samples/dataGrid_5c.aspx
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"John Wilson" wrote:
My app produces some long datatables to display in a grid. So I put them in
a div so users can scroll. But the grid headers scroll out of view. I would
like to stop them doing this. Can I fix them in place at the top of the div?

--
John Wilson

Nov 19 '05 #2
Phillip Williams wrote:
http://www.societopia.net/samples/dataGrid_5c.aspx


This feature doesn't work under Firefox, if you wish to use in some
other browser than IE you'll still have to find a better solution.
Nov 19 '05 #3
I was looking for something like this as well on and off. On their Web site
it works, and I was going to figure it out so I copied the example code but
it won't work - compile error when the page loads. They do have some nifty
stuff though.

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:55**********************************@microsof t.com...
http://www.societopia.net/samples/dataGrid_5c.aspx
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"John Wilson" wrote:
My app produces some long datatables to display in a grid. So I put them
in
a div so users can scroll. But the grid headers scroll out of view. I
would
like to stop them doing this. Can I fix them in place at the top of the
div?

--
John Wilson

Nov 19 '05 #4
I have researched this issue and I do not think that there is a solution for
the datagrid because the datagrid does not emit a <THEAD> tag. If it were,
the css method that I used would have worked on firefox just as fine. I
tried it on this static html copy of the output of the datagrid:
http://www.societopia.net/samples/FixedTableHeader.htm
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"christof" wrote:
Phillip Williams wrote:
http://www.societopia.net/samples/dataGrid_5c.aspx


This feature doesn't work under Firefox, if you wish to use in some
other browser than IE you'll still have to find a better solution.

Nov 19 '05 #5
Hi Chris,

If you want to copy the entire code and run it as is, you need to remove the
reference to the header control on top:

<%@ Register TagPrefix="Societopia" tagName="PageHeader"
src="PageHeader.ascx" %>

and within the body of the page:
<Societopia:PageHeader runat="server"
id="PageHeader1"></Societopia:PageHeader>

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Chris Botha" wrote:
I was looking for something like this as well on and off. On their Web site
it works, and I was going to figure it out so I copied the example code but
it won't work - compile error when the page loads. They do have some nifty
stuff though.

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:55**********************************@microsof t.com...
http://www.societopia.net/samples/dataGrid_5c.aspx
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"John Wilson" wrote:
My app produces some long datatables to display in a grid. So I put them
in
a div so users can scroll. But the grid headers scroll out of view. I
would
like to stop them doing this. Can I fix them in place at the top of the
div?

--
John Wilson


Nov 19 '05 #6
Hi Phillip, so it is your Web site? I did not realize it, as mentioned, you
have some snazzy stuff there.
Well, I finally nailed this baby, I have it working in a Web app now.
One question though, if I set the height of my DataGridContainer to 90%, or
for that matter any percentage, the div area shows blank (grid not visible),
it must have a fixed height. Do you find this is the case with your code as
well, or did I screw something up?

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:37**********************************@microsof t.com...
Hi Chris,

If you want to copy the entire code and run it as is, you need to remove
the
reference to the header control on top:

<%@ Register TagPrefix="Societopia" tagName="PageHeader"
src="PageHeader.ascx" %>

and within the body of the page:
<Societopia:PageHeader runat="server"
id="PageHeader1"></Societopia:PageHeader>

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Chris Botha" wrote:
I was looking for something like this as well on and off. On their Web
site
it works, and I was going to figure it out so I copied the example code
but
it won't work - compile error when the page loads. They do have some
nifty
stuff though.

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:55**********************************@microsof t.com...
> http://www.societopia.net/samples/dataGrid_5c.aspx
> --
> HTH,
> Phillip Williams
> http://www.societopia.net
> http://www.webswapp.com
>
>
> "John Wilson" wrote:
>
>> My app produces some long datatables to display in a grid. So I put
>> them
>> in
>> a div so users can scroll. But the grid headers scroll out of view. I
>> would
>> like to stop them doing this. Can I fix them in place at the top of
>> the
>> div?
>>
>> --
>> John Wilson
>>
>>
>>


Nov 19 '05 #7
Hi Chris,

You are right. It does not work when I used percentages.

I tried something else. I took the html rendered by the aspx page and added
a <THEAD> tag around the first tablerow. I then used the percentage (as 40%
to make sure it is not longer than the length of the table content).
http://www.societopia.net/samples/FixedTableHeader2.htm

I found that while FireFox does not respond at all to “top:
expression(document.getElementById("DataGridContai ner").scrollTop-2);” it
responds to another style attribute that IE simply ignores:

table>tbody {
overflow: auto;
height: 265px;
}

The problem is to get the datagrid to emit sections enclosed by the tags
<THEAD> </THEAD> and <TBODY></TBODY>, so that the above table>tbody effect
appears on Firefox. But I do not know how to get the datagrid to do that.
Maybe if someone from Microsoft can help get over this hurdle first, then a
working solution can be found.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Chris Botha" wrote:
Hi Phillip, so it is your Web site? I did not realize it, as mentioned, you
have some snazzy stuff there.
Well, I finally nailed this baby, I have it working in a Web app now.
One question though, if I set the height of my DataGridContainer to 90%, or
for that matter any percentage, the div area shows blank (grid not visible),
it must have a fixed height. Do you find this is the case with your code as
well, or did I screw something up?

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:37**********************************@microsof t.com...
Hi Chris,

If you want to copy the entire code and run it as is, you need to remove
the
reference to the header control on top:

<%@ Register TagPrefix="Societopia" tagName="PageHeader"
src="PageHeader.ascx" %>

and within the body of the page:
<Societopia:PageHeader runat="server"
id="PageHeader1"></Societopia:PageHeader>

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Chris Botha" wrote:
I was looking for something like this as well on and off. On their Web
site
it works, and I was going to figure it out so I copied the example code
but
it won't work - compile error when the page loads. They do have some
nifty
stuff though.

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:55**********************************@microsof t.com...
> http://www.societopia.net/samples/dataGrid_5c.aspx
> --
> HTH,
> Phillip Williams
> http://www.societopia.net
> http://www.webswapp.com
>
>
> "John Wilson" wrote:
>
>> My app produces some long datatables to display in a grid. So I put
>> them
>> in
>> a div so users can scroll. But the grid headers scroll out of view. I
>> would
>> like to stop them doing this. Can I fix them in place at the top of
>> the
>> div?
>>
>> --
>> John Wilson
>>
>>
>>


Nov 19 '05 #8
Hi Phillip, I can get the DIV to resize when the page resizes by processing
the "window.onresize" event in Java script and by setting the DIV's height
to "document.body.clientHeight - fixedValue", works great.

I looked at the part where you say "The problem is to get the datagrid to
emit sections enclosed by the tags".
Let me say that I don't understand the problem here fully (FireFox is low on
my priority list), but if the issue is to dynamically assign a CSS class to
the grid header, then it can be done programmatically. In the code-behind of
the "ItemCreated" event of the grid it can be done like this:
Private Sub DataGrid1_ItemCreated(ByVal sender .....
If e.Item.ItemType = ListItemType.Header Then
e.Item.Attributes.Add("class", "DataGridHeader")
End If
End Sub
If I am on the wrong track here, just ignore the above.

Thanks in any case,

Chris.

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:26**********************************@microsof t.com...
Hi Chris,

You are right. It does not work when I used percentages.

I tried something else. I took the html rendered by the aspx page and
added
a <THEAD> tag around the first tablerow. I then used the percentage (as
40%
to make sure it is not longer than the length of the table content).
http://www.societopia.net/samples/FixedTableHeader2.htm

I found that while FireFox does not respond at all to "top:
expression(document.getElementById("DataGridContai ner").scrollTop-2);" it
responds to another style attribute that IE simply ignores:

table>tbody {
overflow: auto;
height: 265px;
}

The problem is to get the datagrid to emit sections enclosed by the tags
<THEAD> </THEAD> and <TBODY></TBODY>, so that the above table>tbody effect
appears on Firefox. But I do not know how to get the datagrid to do that.
Maybe if someone from Microsoft can help get over this hurdle first, then
a
working solution can be found.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Chris Botha" wrote:
Hi Phillip, so it is your Web site? I did not realize it, as mentioned,
you
have some snazzy stuff there.
Well, I finally nailed this baby, I have it working in a Web app now.
One question though, if I set the height of my DataGridContainer to 90%,
or
for that matter any percentage, the div area shows blank (grid not
visible),
it must have a fixed height. Do you find this is the case with your code
as
well, or did I screw something up?

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:37**********************************@microsof t.com...
> Hi Chris,
>
> If you want to copy the entire code and run it as is, you need to
> remove
> the
> reference to the header control on top:
>
> <%@ Register TagPrefix="Societopia" tagName="PageHeader"
> src="PageHeader.ascx" %>
>
> and within the body of the page:
> <Societopia:PageHeader runat="server"
> id="PageHeader1"></Societopia:PageHeader>
>
> --
> HTH,
> Phillip Williams
> http://www.societopia.net
> http://www.webswapp.com
>
>
> "Chris Botha" wrote:
>
>> I was looking for something like this as well on and off. On their Web
>> site
>> it works, and I was going to figure it out so I copied the example
>> code
>> but
>> it won't work - compile error when the page loads. They do have some
>> nifty
>> stuff though.
>>
>> "Phillip Williams" <Ph**************@webswapp.com> wrote in message
>> news:55**********************************@microsof t.com...
>> > http://www.societopia.net/samples/dataGrid_5c.aspx
>> > --
>> > HTH,
>> > Phillip Williams
>> > http://www.societopia.net
>> > http://www.webswapp.com
>> >
>> >
>> > "John Wilson" wrote:
>> >
>> >> My app produces some long datatables to display in a grid. So I put
>> >> them
>> >> in
>> >> a div so users can scroll. But the grid headers scroll out of view.
>> >> I
>> >> would
>> >> like to stop them doing this. Can I fix them in place at the top of
>> >> the
>> >> div?
>> >>
>> >> --
>> >> John Wilson
>> >>
>> >>
>> >>
>>
>>
>>


Nov 19 '05 #9
Hi Chris,

Let me expand a bit on that issue. If one right-mouse clicks on the HTML
produced by any webform containing a datagrid to view the source code, one
would see an html table structure, such as
<TABLE>
<TR><TD>HEADER TEXT</TD></TR>
<TR><TD>BODY TEXT</TD></TR>
</TABLE>

Instead I am hoping to find a way make the datagrid output an HTML TABLE
structure like this:
<TABLE>
<THEAD><TR><TD>Header Text</TD></TR></THEAD>
<TBODY><TR><TD>Body Text</TD></TR></TBODY>
</TABLE>

The latter output would allow me to utilize the style section:
<style>
table>tbody { /* this will be ignored by IE but not FireFox*/
overflow: auto;
height: 265px; /* a length that is smaller than the expanded table
length to allow the scroll bar to appear*/
}
</style>

which will produce the desired effect for FireFox.

--
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Chris Botha" wrote:
Hi Phillip, I can get the DIV to resize when the page resizes by processing
the "window.onresize" event in Java script and by setting the DIV's height
to "document.body.clientHeight - fixedValue", works great.

I looked at the part where you say "The problem is to get the datagrid to
emit sections enclosed by the tags".
Let me say that I don't understand the problem here fully (FireFox is low on
my priority list), but if the issue is to dynamically assign a CSS class to
the grid header, then it can be done programmatically. In the code-behind of
the "ItemCreated" event of the grid it can be done like this:
Private Sub DataGrid1_ItemCreated(ByVal sender .....
If e.Item.ItemType = ListItemType.Header Then
e.Item.Attributes.Add("class", "DataGridHeader")
End If
End Sub
If I am on the wrong track here, just ignore the above.

Thanks in any case,

Chris.

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:26**********************************@microsof t.com...
Hi Chris,

You are right. It does not work when I used percentages.

I tried something else. I took the html rendered by the aspx page and
added
a <THEAD> tag around the first tablerow. I then used the percentage (as
40%
to make sure it is not longer than the length of the table content).
http://www.societopia.net/samples/FixedTableHeader2.htm

I found that while FireFox does not respond at all to "top:
expression(document.getElementById("DataGridContai ner").scrollTop-2);" it
responds to another style attribute that IE simply ignores:

table>tbody {
overflow: auto;
height: 265px;
}

The problem is to get the datagrid to emit sections enclosed by the tags
<THEAD> </THEAD> and <TBODY></TBODY>, so that the above table>tbody effect
appears on Firefox. But I do not know how to get the datagrid to do that.
Maybe if someone from Microsoft can help get over this hurdle first, then
a
working solution can be found.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Chris Botha" wrote:
Hi Phillip, so it is your Web site? I did not realize it, as mentioned,
you
have some snazzy stuff there.
Well, I finally nailed this baby, I have it working in a Web app now.
One question though, if I set the height of my DataGridContainer to 90%,
or
for that matter any percentage, the div area shows blank (grid not
visible),
it must have a fixed height. Do you find this is the case with your code
as
well, or did I screw something up?

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:37**********************************@microsof t.com...
> Hi Chris,
>
> If you want to copy the entire code and run it as is, you need to
> remove
> the
> reference to the header control on top:
>
> <%@ Register TagPrefix="Societopia" tagName="PageHeader"
> src="PageHeader.ascx" %>
>
> and within the body of the page:
> <Societopia:PageHeader runat="server"
> id="PageHeader1"></Societopia:PageHeader>
>
> --
> HTH,
> Phillip Williams
> http://www.societopia.net
> http://www.webswapp.com
>
>
> "Chris Botha" wrote:
>
>> I was looking for something like this as well on and off. On their Web
>> site
>> it works, and I was going to figure it out so I copied the example
>> code
>> but
>> it won't work - compile error when the page loads. They do have some
>> nifty
>> stuff though.
>>
>> "Phillip Williams" <Ph**************@webswapp.com> wrote in message
>> news:55**********************************@microsof t.com...
>> > http://www.societopia.net/samples/dataGrid_5c.aspx
>> > --
>> > HTH,
>> > Phillip Williams
>> > http://www.societopia.net
>> > http://www.webswapp.com
>> >
>> >
>> > "John Wilson" wrote:
>> >
>> >> My app produces some long datatables to display in a grid. So I put
>> >> them
>> >> in
>> >> a div so users can scroll. But the grid headers scroll out of view.
>> >> I
>> >> would
>> >> like to stop them doing this. Can I fix them in place at the top of
>> >> the
>> >> div?
>> >>
>> >> --
>> >> John Wilson
>> >>
>> >>
>> >>
>>
>>
>>


Nov 19 '05 #10
Hi Phillip, if you create a Web Custom control that derives from a DataGrid,
you will be able to generate the table tags your way, overriding the
"Render".
The problem is to output all styles/attributes and other stuff that goes
with the grid, for example if the user used Auto Format to format the grid,
if sort is specified, etc.
There is not enough info in the docs of the DataGrid on how the grid
renders/should render.
I did find this article though that looks promising when overriding the
Render
http://www.dotnetjunkies.com/Article...D66293610.dcik
Well, this is my way, maybe there is something easier.

Thanks in any case, my IE grid is now working perfectly, Auto Format,
sorting, the works, and the header does not scroll.

Chris.

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:16**********************************@microsof t.com...
Hi Chris,

Let me expand a bit on that issue. If one right-mouse clicks on the HTML
produced by any webform containing a datagrid to view the source code, one
would see an html table structure, such as
<TABLE>
<TR><TD>HEADER TEXT</TD></TR>
<TR><TD>BODY TEXT</TD></TR>
</TABLE>

Instead I am hoping to find a way make the datagrid output an HTML TABLE
structure like this:
<TABLE>
<THEAD><TR><TD>Header Text</TD></TR></THEAD>
<TBODY><TR><TD>Body Text</TD></TR></TBODY>
</TABLE>

The latter output would allow me to utilize the style section:
<style>
table>tbody { /* this will be ignored by IE but not FireFox*/
overflow: auto;
height: 265px; /* a length that is smaller than the expanded table
length to allow the scroll bar to appear*/
}
</style>

which will produce the desired effect for FireFox.

--
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Chris Botha" wrote:
Hi Phillip, I can get the DIV to resize when the page resizes by
processing
the "window.onresize" event in Java script and by setting the DIV's
height
to "document.body.clientHeight - fixedValue", works great.

I looked at the part where you say "The problem is to get the datagrid to
emit sections enclosed by the tags".
Let me say that I don't understand the problem here fully (FireFox is low
on
my priority list), but if the issue is to dynamically assign a CSS class
to
the grid header, then it can be done programmatically. In the code-behind
of
the "ItemCreated" event of the grid it can be done like this:
Private Sub DataGrid1_ItemCreated(ByVal sender .....
If e.Item.ItemType = ListItemType.Header Then
e.Item.Attributes.Add("class", "DataGridHeader")
End If
End Sub
If I am on the wrong track here, just ignore the above.

Thanks in any case,

Chris.

"Phillip Williams" <Ph**************@webswapp.com> wrote in message
news:26**********************************@microsof t.com...
> Hi Chris,
>
> You are right. It does not work when I used percentages.
>
> I tried something else. I took the html rendered by the aspx page and
> added
> a <THEAD> tag around the first tablerow. I then used the percentage
> (as
> 40%
> to make sure it is not longer than the length of the table content).
> http://www.societopia.net/samples/FixedTableHeader2.htm
>
> I found that while FireFox does not respond at all to "top:
> expression(document.getElementById("DataGridContai ner").scrollTop-2);"
> it
> responds to another style attribute that IE simply ignores:
>
> table>tbody {
> overflow: auto;
> height: 265px;
> }
>
> The problem is to get the datagrid to emit sections enclosed by the
> tags
> <THEAD> </THEAD> and <TBODY></TBODY>, so that the above table>tbody
> effect
> appears on Firefox. But I do not know how to get the datagrid to do
> that.
> Maybe if someone from Microsoft can help get over this hurdle first,
> then
> a
> working solution can be found.
>
>
> --
> HTH,
> Phillip Williams
> http://www.societopia.net
> http://www.webswapp.com
>
>
> "Chris Botha" wrote:
>
>> Hi Phillip, so it is your Web site? I did not realize it, as
>> mentioned,
>> you
>> have some snazzy stuff there.
>> Well, I finally nailed this baby, I have it working in a Web app now.
>> One question though, if I set the height of my DataGridContainer to
>> 90%,
>> or
>> for that matter any percentage, the div area shows blank (grid not
>> visible),
>> it must have a fixed height. Do you find this is the case with your
>> code
>> as
>> well, or did I screw something up?
>>
>> "Phillip Williams" <Ph**************@webswapp.com> wrote in message
>> news:37**********************************@microsof t.com...
>> > Hi Chris,
>> >
>> > If you want to copy the entire code and run it as is, you need to
>> > remove
>> > the
>> > reference to the header control on top:
>> >
>> > <%@ Register TagPrefix="Societopia" tagName="PageHeader"
>> > src="PageHeader.ascx" %>
>> >
>> > and within the body of the page:
>> > <Societopia:PageHeader runat="server"
>> > id="PageHeader1"></Societopia:PageHeader>
>> >
>> > --
>> > HTH,
>> > Phillip Williams
>> > http://www.societopia.net
>> > http://www.webswapp.com
>> >
>> >
>> > "Chris Botha" wrote:
>> >
>> >> I was looking for something like this as well on and off. On their
>> >> Web
>> >> site
>> >> it works, and I was going to figure it out so I copied the example
>> >> code
>> >> but
>> >> it won't work - compile error when the page loads. They do have
>> >> some
>> >> nifty
>> >> stuff though.
>> >>
>> >> "Phillip Williams" <Ph**************@webswapp.com> wrote in message
>> >> news:55**********************************@microsof t.com...
>> >> > http://www.societopia.net/samples/dataGrid_5c.aspx
>> >> > --
>> >> > HTH,
>> >> > Phillip Williams
>> >> > http://www.societopia.net
>> >> > http://www.webswapp.com
>> >> >
>> >> >
>> >> > "John Wilson" wrote:
>> >> >
>> >> >> My app produces some long datatables to display in a grid. So I
>> >> >> put
>> >> >> them
>> >> >> in
>> >> >> a div so users can scroll. But the grid headers scroll out of
>> >> >> view.
>> >> >> I
>> >> >> would
>> >> >> like to stop them doing this. Can I fix them in place at the top
>> >> >> of
>> >> >> the
>> >> >> div?
>> >> >>
>> >> >> --
>> >> >> John Wilson
>> >> >>
>> >> >>
>> >> >>
>> >>
>> >>
>> >>
>>
>>
>>


Nov 19 '05 #11

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

Similar topics

1
by: Piet | last post by:
Hello, I have written a small program which dynamically displays data from a data structure in a wx.grid. The grid reacts as expected when the data structure is enlarged: a new row is added and...
0
by: scottmallory | last post by:
Greetings, I am new to Python...and I am having some difficulty updating a grid (wx.grid.PyGridTableBase). Everything works just fine (adding /deleting/ resizing rows, cols) except updating...
3
by: Mark.Larsen | last post by:
What object would I override in order to control painting of Grid Lines in a DataGrid?
3
by: Kenneth | last post by:
Hi, I have an asp.net app that users would like to print out on paper, but the items in the grid are sometimes more than the height of the paper so the grid is divided onto several pages. I...
5
by: IGotYourDotNet | last post by:
I've seen stuff on changing row colors based on something, i've seen how to create columns on the fly, how can I change an color of the entire column based on certain criteria? I need to change...
5
by: Chad | last post by:
for ease of use, and for features such as resizable columns, edit in place, horiz and vertical scrolling, heirarchy display, etc?
2
by: Tom | last post by:
I need to display a series of controls (in my case, a custom control) in a grid-like fashion. This means this particular control would be repeated multiple times, arranged in a row/column format....
117
by: phil-news-nospam | last post by:
Is there really any advantage to using DIV elements with float style properies, vs. the old method of TABLE and TR and TD? I'm finding that by using DIV, it still involves the same number of...
3
by: Jordan | last post by:
Hey Peoples, I'm wonderg if there is a way to make a subclass of wx.grid.Grid in which the coloumn labels for the grid appear on the bottom of the grid instead of the top. 1 2 3 4 5 a| | ...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, youll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
1
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: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
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: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
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...
1
by: Shllpp 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
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

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.