473,654 Members | 3,082 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Which version in LH for?

I have a web page that uses an unordered list (<UL>) and the LH (list
header) tag. I know LH is a valid tag because it is clearly defined by
the W3C here: http://www.w3.org/MarkUp/html3/bulletlists.html
The problem is, when I try to validate the page at W3C, it tells me:
" element "LH" undefined "
My page is 4.01 Transitional, using charset windows-1252.
Any ideas why this won't validate?
Jul 20 '05
133 13211
Jane Withnolastname wrote:
On Fri, 8 Aug 2003 07:49:08 +0000 (UTC), "Jukka K. Korpela"
<jk******@cs.tu t.fi> wrote:
Jane Withnolastname <Ja************ **********@yaho o.com> wrote:
Yes, it was the vertical gap I was trying to get rid of.
So CSS would be the answer, wouldn't it?


Probably, but I didn't have the time to look into that when I was
doing the page.
I got around
the whole thing by writing the entire list, including the LH tag, in
JavaScript.


That sounds like pointless kludgery of the year. And you mean you use LH
tag?


Not sure that it's pointless, since I achieved the desired result.


It's pointless when there is a much cleaner solution that does not break on
browsers which either can't handle Javascript, or have it disabled (or
filtered at a proxy).
and probably won't display
right on some browsers,


YM "is guaranteed to fail on all browsers, except if they happen to
support JavaScript and have that support enabled".


Uh, yeah.


You do test your sites with Javascript off, I hope? If not, you should. Test
at least once with various combinations of Javascript, Java, Flash, etc.
disabled, before the site goes live, and periodically thereafter.
but as long as it looks right on IE6 and
Validates, that's all I really care about :)


So you're really not interested in the topic of this group, authoring for
the WWW, are you?


I'm interested in writing a page that Validates. That's all. Get
semantic if you want.


Validation is only one part of successful authoring for the Web. IE6 is far
from an ideal browser for testing as it gets a number of things horribly
wrong. I would go as far as to say it is not even really a Web browser,
given flagrant non-compliance with parts of the HTTP specification, grossly
incorrect rendering of alpha-channel PNG images.
Or, if you wanna know the whole story, here it is:

I am using Coffee Cup HTML Editor, which is the best text editor I
have found.
I've never heard of this before. Are you sure you are using a current
version of this thing, whatever it is? Are you aware standards are changed
over time?
I noticed that it had a "List Wizard" and thought I'd try
it, to see what it offered. One of the things it offered was a List
Header, which displayed using the LH tag. I had never heard of this
before but, after seeing what it looked like in IE6, I decided to use
it. After having the page up for a few days, I remembered that I
hadn't Validated it, as I had done with all the other pages on my
site. So off I went to W3C, which gave me the error messages about the
LH tag.
No big surprise, given the LH tag is not in any official W3C HTML
recommendation (standard).
I went to the home page of W3C and typed in "list header" in
the Search box and was sent to a page that seemed to indicate that the
tag was valid.
Was this page a recommendation (standard) or was it the expired HTML 3.0
draft that never was adopted as a formal standard?
No matter what I did, I couldn't get it to Validate. So I went looking for
something on the W3C site to tell me why. The FAQ pointed to this
newsgroup as a place to ask questions about why things don't validate.
So I did. And I got my answer. In the meantime, I had to substitute something in the page so that it
would a)display as I wanted, b)Validate. So I chose to obfuscate it
with JavaScript. And that worked. The page itself is generally of
little importance and I don't expect it to be looked at by anyone, and
I don't want it looked at by Google,
The proper way to do this is to add a text/plain document as robots.txt on
your server root, NOT by obsfuscating the page with Javascript. Believe me,
Googlebot (and other search engine robots, for that matter) will index
*anything* it can find that it has not been told not to. *ANYTHING*.
but if someone happens to come upon it, it has to validate.

Why was I so stupid as to not realize why the tag wouldn't validate?
Because I was not aware that some tags were removed from use
The LH element was never removed from use. It was never adopted as part of a
standard to begin with.
and, since the tag was included in CoffeeCup software, and since the
software opens a New HTML document with a 4.0 Transitional DTD, I
figured it must be usable in that version. How could I possibly know
that it was from an unreleased beta version of HTML?
Sorry, but I couldn't have known. Now I do. Thanks.


I would say this is a bug in your software. Any software which claims,
either explicitly (by including a statement in its documentation) or
implicitly (by adding the appropriate DOCTYPE identifier to its HTML
documents) to produce valid HTML by a particular standard, and which
includes mechanisms to insert elements which are not in that version of the
standard, contains a bug.

It amazes me at the number of site authors that are quick to blame their
tools, and not research what the published specifications say for
themselves. Not that site authors should bear the bulk of the blame, but
they should at least know what they are getting into when they use a
particular tool. Thankfully, now, those who make the tools are starting to
understand the importance of standardization ; standardization is, after
all, how the Internet (and by extension, the World Wide Web) grew to the
size it has.

--
Shawn K. Quinn
Jul 20 '05 #11
Jane Withnolastname wrote:

[snip]
In the meantime, I had to substitute something in the page so that it
would a)display as I wanted, b)Validate. So I chose to obfuscate it
with JavaScript. And that worked. The page itself is generally of
little importance and I don't expect it to be looked at by anyone, and
I don't want it looked at by Google, but if someone happens to come
upon it, it has to validate.


Why? Validation for the sake of it is useless. Outside of any meaningful
context, who cares what an obscure program thinks of your page? All you
have done is intentionally break your page to get a pat on the head from
the validator. Why not just use a real heading element instead?
--
Jim Dabell

Jul 20 '05 #12
On Sat, 09 Aug 2003 01:21:48 -0500, "Shawn K. Quinn"
<sk*****@xeviou s.kicks-ass.net> wrote:
I got around
the whole thing by writing the entire list, including the LH tag, in
JavaScript.

That sounds like pointless kludgery of the year. And you mean you use LH
tag?
Not sure that it's pointless, since I achieved the desired result.


It's pointless when there is a much cleaner solution that does not break on
browsers which either can't handle Javascript, or have it disabled (or
filtered at a proxy).


Sure, but I didn't have the cleaner solution at my fingertips and I
had to fix it in a hurry. Although it was meant as a permanent fix, I
can see from the response generated here that there is a better way
and so, when I have the time to fix it right, I will.
You do test your sites with Javascript off, I hope? If not, you should. Test
at least once with various combinations of Javascript, Java, Flash, etc.
disabled, before the site goes live, and periodically thereafter.
Uh, no. I design my site for IE6 and that's it. As far as I can tell,
you can't turn JS off in IE6 (maybe it's buried somewhere, but I
remember you used to be able to turn it off in Options, and it's not
there now). I don't use Java or Flash.
I have no interest in other browsers since I know FOR A FACT that the
majority of browsers hitting my site are IE4+, which is compatible
with IE6. The minority is Netscape (no other browsers hit my site).
The purpose of the page in question is to tell people using browsers
other than IE why the site looks wrong to them.
Where it is important, I have <NOSCRIPT> tags for the JavaScript
content. Where it's not important, the NS tags simply say to turn on
JavaScript.
I have seen my site rendered in Netscape 4, 6 and 7 and they all look
different. As far as I'm concerned, Netscape can take a flying leap!
Validation is only one part of successful authoring for the Web. IE6 is far
from an ideal browser for testing as it gets a number of things horribly
wrong. I would go as far as to say it is not even really a Web browser,
given flagrant non-compliance with parts of the HTTP specification, grossly
incorrect rendering of alpha-channel PNG images.
Well, I don't use PNG images - who does? And as for the rest of it, I
have no idea what you mean. The pages validate and they still look the
way I intended in IE6, that's all I want.
I am using Coffee Cup HTML Editor, which is the best text editor I
have found.


I've never heard of this before. Are you sure you are using a current
version of this thing, whatever it is? Are you aware standards are changed
over time?


I'm surprised you've never heard of it. It's my understanding that
they are quite a popular company, with many fingers in the
web-authoring pie (FTP, image mapper, etc.)
And no, I wasn't aware that standards are changed - that's my whole
point. Upgraded, yes. Backward-compatible, yes. Changed, no, I didn't
know.
I went to the home page of W3C and typed in "list header" in
the Search box and was sent to a page that seemed to indicate that the
tag was valid.


Was this page a recommendation (standard) or was it the expired HTML 3.0
draft that never was adopted as a formal standard?


As I know now, it was an archived page of old tags that were never
used. However, the page itself did not say that it was a proposed tag,
nor did it say it was never implemented. See for yourself:
http://www.w3.org/MarkUp/html3/bulletlists.html
You might argue that if I had checked the URL, I would have seen that
it was for HTML 3. But I would return the argument that, as stated
above, I didn't know they dropped tags. It was my understanding that
future versions of HTML were backward-compatible and would still be
able to understand the older tags. I didn't check the URL, but that's
beside the point. I simply figured that if it was on the W3C site and
didn't explicitly say "don't use this tag", it was valid. Which is why
I was so confused when it didn't validate.
In the meantime, I had to substitute something in the page so that it
would a)display as I wanted, b)Validate. So I chose to obfuscate it
with JavaScript. And that worked. The page itself is generally of
little importance and I don't expect it to be looked at by anyone, and
I don't want it looked at by Google,


The proper way to do this is to add a text/plain document as robots.txt on
your server root, NOT by obsfuscating the page with Javascript. Believe me,
Googlebot (and other search engine robots, for that matter) will index
*anything* it can find that it has not been told not to. *ANYTHING*.


I use <META NAME="ROBOTS" CONTENT="NOINDE X, NOFOLLOW"> which I am told
works exactly the same as a robots.txt file
and, since the tag was included in CoffeeCup software, and since the
software opens a New HTML document with a 4.0 Transitional DTD, I
figured it must be usable in that version. How could I possibly know
that it was from an unreleased beta version of HTML?
Sorry, but I couldn't have known. Now I do. Thanks.


I would say this is a bug in your software. Any software which claims,
either explicitly (by including a statement in its documentation) or
implicitly (by adding the appropriate DOCTYPE identifier to its HTML
documents) to produce valid HTML by a particular standard, and which
includes mechanisms to insert elements which are not in that version of the
standard, contains a bug.


So it would seem.
It amazes me at the number of site authors that are quick to blame their
tools, and not research what the published specifications say for
themselves. Not that site authors should bear the bulk of the blame, but
they should at least know what they are getting into when they use a
particular tool. Thankfully, now, those who make the tools are starting to
understand the importance of standardization ; standardization is, after
all, how the Internet (and by extension, the World Wide Web) grew to the
size it has.


I don't know if this is a passive way of saying I'm blaming my tools
or if it's just a general observation. I will say this: It took three
days of posting before I revealed the name of my software. And while
it may appear that I was blaming the software, in fact I was simply
stating how I even became aware of the tag in the first place. You are
correct that the tag shouldn't be included in the software (I have the
latest version, BTW), but that's why I validate - to make sure
everything is right. And when it's not, I go on an endless quest to
find out why. The quest for me ended, actually, a couple days ago,
when I was informed that the tag was never instituted. I must now stop
wasting time on here and go and figure out a way to fix it so it looks
the way I want and still validate.
Thanks.
Jul 20 '05 #13
On Sat, 09 Aug 2003 14:12:55 +0100, Jim Dabell
<ji********@jim dabell.com> wrote:
Jane Withnolastname wrote:

[snip]
In the meantime, I had to substitute something in the page so that it
would a)display as I wanted, b)Validate. So I chose to obfuscate it
with JavaScript. And that worked. The page itself is generally of
little importance and I don't expect it to be looked at by anyone, and
I don't want it looked at by Google, but if someone happens to come
upon it, it has to validate.


Why? Validation for the sake of it is useless. Outside of any meaningful
context, who cares what an obscure program thinks of your page? All you
have done is intentionally break your page to get a pat on the head from
the validator. Why not just use a real heading element instead?


Heh. The page in question was bragging about how every page in my site
validated and if your browser can't read it then your browser does not
meet the standards of the W3C. Therefore, the page HAD to validate, or
I would have looked like a complete idiot! :)
Jul 20 '05 #14
Jane Withnolastname wrote:
On Sat, 09 Aug 2003 14:12:55 +0100, Jim Dabell
<ji********@jim dabell.com> wrote:
Jane Withnolastname wrote:
I had to substitute something in the page so that it would
a)display as I wanted, b)Validate. So I chose to obfuscate it
with JavaScript.
Why? Validation for the sake of it is useless.


The page in question was bragging about how every page in my site
validated


What is there to brag about? That'd be like me bragging my C++ doesn't
generate any compiler warnings. A worthy goal usually, but nothing
less than is expected from someone with adequate skills.

From the sounds of it, a simple <p> element would have done the job,
and would have demonstrated better appreciation for what the Web is about.
Therefore, the page HAD to validate, or I would have looked
like a complete idiot! :)


I hate to break it to you, but ...

--
Joel.

Jul 20 '05 #15
Jane Withnolastname <Ja************ **********@yaho o.com> wrote:
Heh. The page in question was bragging about how every page in my site
validated and if your browser can't read it then your browser does not
meet the standards of the W3C. Therefore, the page HAD to validate, or
I would have looked like a complete idiot! :)


It seems that you decided to do something worse, namely intentionally
distribute false information. In another posting in this thread, you even
wrote that you don't know that scripting can be turned off in IE 6. Let me
guess... you never looked at the security settings?

It is dangerous nonsense to claim that validity implies conformance to W3C
"standards" . It is also dangerous nonsense to claim that conformance to
W3C "standards" implies that the page works on all browsers. You are now
telling that you have a page that combines these two claims, apparently as
the sole purpose of the page.

You simply do not even know what validation is. Sorry if this sounds like
a slap on your face, but you seem to be illusioned and eager to propagate
the illusion. For a brief explanation of what validation is, see
http://www.cs.tut.fi/~jkorpela/html/validation.html

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

Jul 20 '05 #16
Jane Withnolastname pounced upon this pigeonhole and pronounced:

<snip>
Uh, no. I design my site for IE6 and that's it.
But it is so simple to design for all.
As far as I can tell,
you can't turn JS off in IE6 (maybe it's buried somewhere, but I
remember you used to be able to turn it off in Options, and it's not
there now). I don't use Java or Flash.
I would not say it is buried, and if you had ever looked at the options
and settings dialogs, you would have found it. See this page that I put up
for some newbie friends. Scroll down just a bit; it's called Active
Scripting.

http://bshagnasty.home.att.net/brows...gs.htm#options

I have no interest in other browsers since I know FOR A FACT that the
majority of browsers hitting my site are IE4+, which is compatible
with IE6. The minority is Netscape (no other browsers hit my site).
The purpose of the page in question is to tell people using browsers
other than IE why the site looks wrong to them.
If you design carefully, it won't look *wrong*, just maybe different. What
is so wrong with "different? "
Where it is important, I have <NOSCRIPT> tags for the JavaScript
content. Where it's not important, the NS tags simply say to turn on
JavaScript.
I have seen my site rendered in Netscape 4, 6 and 7 and they all look
different. As far as I'm concerned, Netscape can take a flying leap!


Once the masses figure out that IE is not going to be updated until 2005,
and then when they see the cost in new OS and hardware, they're gonna go
get Netscape, or Mozilla, or Opera. Be prepared.

<snip>

--
-bts
-This space intentionally left blank.
Jul 20 '05 #17
On Sat, 09 Aug 2003 11:58:01 -0700, Joel Shepherd
<jo******@ix.ne tcom.com> wrote:
Why? Validation for the sake of it is useless.
The page in question was bragging about how every page in my site
validated


What is there to brag about? That'd be like me bragging my C++ doesn't
generate any compiler warnings. A worthy goal usually, but nothing
less than is expected from someone with adequate skills.


The point is, if your C++ generated compiler warnings on some else's
computer, you would be able to show them that it did not do so when
run through a proper program, which is what I am doing with the page
in question.
From the sounds of it, a simple <p> element would have done the job,
and would have demonstrated better appreciation for what the Web is about.


That makes no sense at all.
Therefore, the page HAD to validate, or I would have looked
like a complete idiot! :)


I hate to break it to you, but ...


.... ah yes, but only to you ... not the folks visiting my site, who
have not seen this thread and actually think I know what I'm doing :)
Jul 20 '05 #18
On Sat, 9 Aug 2003 19:02:58 +0000 (UTC), "Jukka K. Korpela"
<jk******@cs.tu t.fi> wrote:
Jane Withnolastname <Ja************ **********@yaho o.com> wrote:
Heh. The page in question was bragging about how every page in my site
validated and if your browser can't read it then your browser does not
meet the standards of the W3C. Therefore, the page HAD to validate, or
I would have looked like a complete idiot! :)
It seems that you decided to do something worse, namely intentionally
distribute false information. In another posting in this thread, you even
wrote that you don't know that scripting can be turned off in IE 6. Let me
guess... you never looked at the security settings?


I did look at the security settings, but I wasn't looking for
JavaScript. Previously I was able to turn it off in Options. Then
suddenly it wasn't there. Oh well, what do I care? I want it on.
I don't know how you figure I am distributing false information. I'm
not.
It is dangerous nonsense to claim that validity implies conformance to W3C
"standards" . It is also dangerous nonsense to claim that conformance to
W3C "standards" implies that the page works on all browsers. You are now
telling that you have a page that combines these two claims, apparently as
the sole purpose of the page.
I don't know how it is "dangerous" to do any of the above. To the best
of my knowledge my site has never killed anyone. I don't think it's
even so much as maimed a person. The only nonsense is that it's
dangerous.
You are the only one claiming that conformance to the standards
implies the page works on all browsers. I don't care. I want it to
work on IE and I want W3C to tell me that it Validates. That's all I
want. Now I have it.
You simply do not even know what validation is. Sorry if this sounds like
a slap on your face, but you seem to be illusioned and eager to propagate
the illusion. For a brief explanation of what validation is, see
http://www.cs.tut.fi/~jkorpela/html/validation.html


Sorry if this sounds like a slap in your face, but that ain't brief.
And yeah, I do know what Validation is. I checked your definition
there and that's EXACTLY what I use it for. The fact that I get a
little badge to display when I finally get it all right is just a
bonus. If I didn't get the little sticker would I still Validate? Yes.
I don't know how many times I've forgotten to include ALT tags or that
it has found extra /FONT tags that I've lost track of. Oh yeah, it's a
very handy tool.
Do I expect the Validator to tell me if my page looks cool? Not at
all. Are there really people like that out there? Or do you just have
a problem with people who spend all night writing pages and then can't
be bothered to scan them with a fine tooth comb to find one little
mistake?
I often wish there were a good JavaScript Validator, since I run into
a lot of problems with that and it would be nice to have something
point out where I missed a ) or a ; - the Error messages in IE only
take you so far....
Jul 20 '05 #19
On Sun, 10 Aug 2003 01:14:36 GMT, Beauregard T. Shagnasty
<a.*********@no where.invalid> wrote:
Uh, no. I design my site for IE6 and that's it.
But it is so simple to design for all.


I disagree.
As far as I can tell,
you can't turn JS off in IE6 (maybe it's buried somewhere, but I
remember you used to be able to turn it off in Options, and it's not
there now). I don't use Java or Flash.


I would not say it is buried, and if you had ever looked at the options
and settings dialogs, you would have found it. See this page that I put up
for some newbie friends. Scroll down just a bit; it's called Active
Scripting.


Well, that's not JavaScript now, is it? Is it? Maybe it is. I don't
know. How could I possibly know? Previous versions called it
JavaScript. If they choose to change what they call it, while the rest
of the world sticks with the same name, I am in the dark.
http://bshagnasty.home.att.net/brows...gs.htm#options

I have no interest in other browsers since I know FOR A FACT that the
majority of browsers hitting my site are IE4+, which is compatible
with IE6. The minority is Netscape (no other browsers hit my site).
The purpose of the page in question is to tell people using browsers
other than IE why the site looks wrong to them.


If you design carefully, it won't look *wrong*, just maybe different. What
is so wrong with "different? "


If I design carefully - do you mean that I have to use one of those
browser identifiers every time I do something? If browser is IE, do
this, but if it's NS do that. Forget it. That makes the page twice as
big. "Different" ? Hardly. That's like saying, well one browser
displays H3 text as 500 pixels tall while another browser shows it as
100 pixels tall. But don't worry, it doesn't look wrong, just
different. That's a poor argument.
Where it is important, I have <NOSCRIPT> tags for the JavaScript
content. Where it's not important, the NS tags simply say to turn on
JavaScript.
I have seen my site rendered in Netscape 4, 6 and 7 and they all look
different. As far as I'm concerned, Netscape can take a flying leap!


Once the masses figure out that IE is not going to be updated until 2005,
and then when they see the cost in new OS and hardware, they're gonna go
get Netscape, or Mozilla, or Opera. Be prepared.


I'm fully prepared for the sloth-like, easily contented masses to do
absolutely nothing. You can design your pages for future editions of
Netscape, Mozilla or Opera, but I'll stick with IE - as I expect
everyone else will, too.
Jul 20 '05 #20

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

Similar topics

1
5404
by: RWC | last post by:
Hi Folks, I'm looking for a way to determine if the client machine has access installed and if so, what version. The reason I need this is to determine (programatically) if the Access Runtime is required to be installed and if not, which version of the program database needs to be installed with the current version of Access. (hope that makes sense). If anyonoe could point me in the right direction, I'd really appreciate it.
7
4174
by: Murtix Van Basten | last post by:
Hi all, I will deploy a database project to an Oracle server, but I could not figure out which version of Oracle should I get. Here is my configuration: Hardware: Dell 1750 Dual Xeon 3.2Ghz, 2GB Ram, 3x36GB Hdd on Raid 5 Operating System: Redhat Linux 9 I will deploy only 1 database for the application. Only 1 DBA will use the Oracle server when necessary. When the database once deployed, Only 1
0
1209
by: Kenny | last post by:
Hello everybody, does anyone know which XMI version is compatible to which UML or MOF version? which problems can occur if I use the wrong version of one of the standards? I googled around but didn´t find anything about the compatibility... maybe one of you can help?? thx bye, kenny
14
2811
by: John Bentley | last post by:
Note this is crossposted to comp.lang.javacript and microsoft.public.dotnet.scripting. After some Googling and FAQing my understanding of these terms is, crudely: Javascript (3 different definitions): 1. The scripting language originally developed by Netscape. (I offer a Brief handle: "Original Netscape Script") 2. The current implementation of the ECMAscript 262 (3rd ed.) standard by Netscape. (I offer a brief handle: "Current...
4
6572
by: Yasutaka Ito | last post by:
Hi, Is there a way to determine which version of .NET Framework any given assembly is built with? thanks! -Yasutaka
7
1832
by: | last post by:
As a beginner which .NET sdk should I be downloading from the MS site: http://msdn.microsoft.com/library/default.asp?url=/downloads/list/netdevgeneral.asp My goal is to: 1. Compile some very simple C# classes 2. Use Oledb data adaptor to access an sql server database. I have the .NET framwork installed although I am embarrased to say I don't
4
2286
by: Thomas Eichner | last post by:
Hi, does anybody know a public website which offers a service that displays all data send by a browser (or an app calling the website), especially HTTP GET and POST data, browser data etc.? I have a hard time finding what really my app is sending and this would be a great help! Thank you very much ! Thomas
8
1639
by: G .Net | last post by:
Hi How can I find which version of Access is installed on a computer from within a vb.net application? G
2
1682
by: yuyang08 | last post by:
Dear all, I have a question on the const methods. If a method is overloaded with a const version, in the case that either one is okay (for example, the following code), which shall the compiler pick? Could you tell which section of the C++ standard specifies this? Many thanks! -Andy
0
8285
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8814
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8706
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8475
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8591
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7304
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6160
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5621
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2709
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 we have to send another system

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.