473,721 Members | 2,186 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

?? Firefox 1.0.7 Chokes on   ??

Hi all,

I have a very simple page that Firefox has problems with:
www.absolutejava.com/testing.htm

First of all, this page seems to be perfectly valid XHTML Strict. Both
the W3C validator as well as Page Valet indicate it is valid. The page
is being served with the proper MIME type of "applicatio n/xhtml+xml".

Unfortunately, Firefox will not display the page due to a non-breaking
space ( ) in the XHTML. I am using a local, custom version of the
XHTML DTD as well.

Let me explain the custom DTD issue quickly -- the DTD I'm using is
*EXACTLY* the same as the XHTML Strict DTD found at
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd, except that I
allowed for a 'target' attribute on the anchor (<a>) element. But
that's not what's causing the problem. The problem is coming from the
"Character mnemonic entities" that are imported by my custom DTD. But
these are the same mnemonic entities that are imported by the real
XHTML Strict DTD, so it should be okay.

For some reason, it seems Firefox is ignoring these mnemonic entities,
such as &nbsp;. Does anyone have an idea why Firefox will not respect
the character entities imported by my DTD? Please look at the XHTML
code as well as the DTD, if you can.

There are three "Character mnemonic entities" imported by the DTD
(xhtml-lat1.ent, xhtml-symbol.ent and xhtml-special.ent), each of which
I have copied into my own DTD directory:

<!ENTITY % HTMLlat1 PUBLIC
"-//W3C//ENTITIES Latin 1 for XHTML//EN"
"xhtml-lat1.ent">
%HTMLlat1;

<!ENTITY % HTMLsymbol PUBLIC
"-//W3C//ENTITIES Symbols for XHTML//EN"
"xhtml-symbol.ent">
%HTMLsymbol;

<!ENTITY % HTMLspecial PUBLIC
"-//W3C//ENTITIES Special for XHTML//EN"
"xhtml-special.ent">
%HTMLspecial;

Oct 14 '05 #1
13 6348
rbronson1976 wrote:
a non-breaking space (&nbsp;) in the XHTML.
You obviously know what's wrong here, so why are you asking us?

First of all, this page seems to be perfectly valid XHTML Strict.
It isn't.
Both
the W3C validator as well as Page Valet indicate it is valid.
They're not XHTML validators, they're SGML validators. So they give
misleading results in this case.
The page
is being served with the proper MIME type of "applicatio n/xhtml+xml".
That's a bad idea - serve it as text/html if you actually want it to
work on the web. The web is ready for XHTML, but it's not yet ready for
XHTML served as application/xhtml+xml, even if that is more "proper".

Unfortunately, Firefox will not display the page due to
That's because it's not a well-formed page.

I am using a local, custom version of the XHTML DTD as well.


One would wonder why? And why you'd expect this to stand any chance of
working on the web?

Oct 14 '05 #2
rbronson1976 wrote:
I have a very simple page that Firefox has problems with:
www.absolutejava.com/testing.htm

First of all, this page seems to be perfectly valid XHTML Strict.
It isn't XHTML. The XHTML specification requires the use of one of three
DOCTYPE declarations, and yours isn't one of them.

It is a valid XML document, though.
Both
the W3C validator as well as Page Valet indicate it is valid.
The W3C validator says:
"This Page Is Valid -//ABSJAVA//DTD XHTML 1.0 Strict With Target//EN!"
That's pointless and misleading babble, since it just picks up a string
from the DOCTYPE declaration. It _should_ simply say that the document
is a valid XML document.
The page
is being served with the proper MIME type of "applicatio n/xhtml+xml".
It isn't a proper type, since the document isn't XHTML.
Unfortunately, Firefox will not display the page due to a non-breaking
space (&nbsp;) in the XHTML. I am using a local, custom version of the
XHTML DTD as well. - - There are three "Character mnemonic entities" imported by the DTD
(xhtml-lat1.ent, xhtml-symbol.ent and xhtml-special.ent), each of which
I have copied into my own DTD directory:


I'm afraid there are limitations in the way Firefox handles external
declarations. Besides, XML browsers aren't really required to read such
declarations.

But instead of wondering what goes wrong and how it might be fixed, why
don't you simply stop using entity references? Since you are using
UTF-8, you don't need the entities, except perhaps due to flaws in the
authoring software. You can simply write the no-break space as such. It
even saves space (two octets vs. six). If you really can't do that, you
can use the character entity reference &#xa0;.
Oct 14 '05 #3
Andy Dingley wrote:
rbronson1976 wrote:
a non-breaking space (&nbsp;) in the XHTML.
You obviously know what's wrong here, so why are you asking us?


Because using a &nbsp; *should* work. As should @copy;.
First of all, this page seems to be perfectly valid XHTML Strict.
It isn't.


Okay, technically, it's not XHTML Strict because I am referencing a
custom DTD that has been tweaked (I added a 'target' attribute to the
<a> element). But the page does not even make use of the tweak I made.
For all intents and purposes I could have copied the XHTML Strict DTD
to my local server verbatim (without the tweak) and I would have
gotten the same error.

The problem seems to be rooted in the fact that Firefox does not
resolve the external entities correctly, or at all, when it encounters
a custom DTD.
Both
the W3C validator as well as Page Valet indicate it is valid.


They're not XHTML validators, they're SGML validators. So they give
misleading results in this case.


Well, my understanding is that they will validate in XML mode when
served with an XML content-type, as I have (application/xhtml+xml).
The page
is being served with the proper MIME type of "applicatio n/xhtml+xml".


That's a bad idea - serve it as text/html if you actually want it to
work on the web. The web is ready for XHTML, but it's not yet ready for
XHTML served as application/xhtml+xml, even if that is more "proper".


I serve it as 'application/xhtml+xml' to get the validators into XML
mode. Also, Firefox handles the more proper content-type of
'application/xhtml+xml' perfectly fine. Eventually, I will switch back
to 'text/html', as a concession to IE 6.
Unfortunately, Firefox will not display the page due to


That's because it's not a well-formed page.


Sure it is. Tell me what's not well formed about it.
I am using a local, custom version of the XHTML DTD as well.


One would wonder why? And why you'd expect this to stand any chance of
working on the web?


Yes, Of course I would. The content type ('application/xhtml+xml') is
telling Firefox how to render it.

Oct 14 '05 #4
Jukka K. Korpela wrote:
rbronson1976 wrote:
Unfortunately, Firefox will not display the page due to a non-breaking
space (&nbsp;) in the XHTML. I am using a local, custom version of the
XHTML DTD as well.

The problem is that Gecko doesn't actually read the DTDs for XML
languages because it uses a non-validating XML parser. The reason
entity references actually work for XHTML 1.0 and 1.1, is because,
rather than reading the actual DTDs, it recognises the DOCTYPE
declarations and includes a pseudo-DTD catalog containing just the
entity declarations.

Because it doesn't recognise your DOCTYPE declaration, it doesn't know
that it should include that pseudo-DTD catalog and thus does not
recognise any of the entity references.

In text/html, browsers also don't read the DTD, but in the spirit of
accepting any rubbish you throw at them, they will understand entity
references regardless of the DOCTYPE you include or omit.

From the Mozilla Web Developer FAQ:
http://www.mozilla.org/docs/web-deve...html#xhtmldiff

In older versions of Mozilla as well as in old Mozilla-based
products, there is no pseudo-DTD catalog and the use of
externally defined character entities (other than the five
pre-defined ones) leads to an XML parsing error. There are
also other XHTML user agents that do not support externally
defined character entities (other than the five pre-defined
ones). Since non-validating XML processors are not required
to support externally defined character entities (other than
the five pre-defined ones), the use of externally defined
character entities (other than the five pre-defined ones)
is inherently unsafe in XML documents intended for the Web.
The best practice is to use straight UTF-8 instead of entities.
(Numeric character references are safe, too.)
Since you are using UTF-8, you don't need the entities, except perhaps due to flaws in the
authoring software. You can simply write the no-break space as such. It
even saves space (two octets vs. six). If you really can't do that, you
can use the character entity reference &#xa0;.


For most characters, encoding them in UTF-8 is usually the best option.
However, personally, I find it convenient to encode characters like
no-break space using numeric or hex character references since it helps
to distinguish it from a regular space in the source code.

Also, if you use a web-based CMS that accepts (X)HTML as input through a
textarea, then that may be the only way to include no-break spaces.
Firefox, at least, will convert any no-break spaces to regular spaces,
so a character reference is the only way to get it through in such cases.

--
Lachlan Hunt
http://lachy.id.au/
http://GetFirefox.com/ Rediscover the Web
http://GetThunderbird.com/ Reclaim your Inbox
Oct 15 '05 #5
Lachlan Hunt <sp***********@ gmail.com> wrote:
The problem is that Gecko doesn't actually read the DTDs for XML
languages because it uses a non-validating XML parser.
And this implies a significant difference between an XHTML document that
conforms to the XHTML specification (including the requirement to use a
specific DOCTYPE, rather than just a specific DTD) and an XML document that
might seem to be XHTML for all practical purposes but isn't.
For most characters, encoding them in UTF-8 is usually the best option.
However, personally, I find it convenient to encode characters like
no-break space using numeric or hex character references since it helps
to distinguish it from a regular space in the source code.
I don't find &#a0; or   particularly readable. This is really an
authoring tool issue: the tools should have a function like MS Word for
showing a space as different from a no-break space. Mostly when reading
HTML (or XML source) and working with it, it's best to have no-break spaces
shown as spaces, optionally changeable to suitable indicator symbols.
Also, if you use a web-based CMS that accepts (X)HTML as input through
a textarea, then that may be the only way to include no-break spaces.
Firefox, at least, will convert any no-break spaces to regular spaces,
so a character reference is the only way to get it through in such
cases.


That sounds bad. Isn't it a direct violation of the specifications to
change input data that way?

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

Oct 15 '05 #6
rbronson1976 wrote:
The problem seems to be rooted in the fact that Firefox does not
resolve the external entities correctly, or at all, when it encounters
a custom DTD.


Indeed -- but it's not just Firefox. To "resolve the external entities
correctly" you'd need to use a validating XML parser: no mainstream
browsers do.

Indeed, mainstream browsers can only handle entities like '&nbsp;' in
normal XHTML through a nasty hack or hard-coding parts of the DTD into the
browser (or browser config files).

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact

Oct 16 '05 #7
On 14 Oct 2005 10:22:50 -0700, "rbronson19 76" <rb**********@y ahoo.com>
wrote:
Okay, technically, it's not XHTML Strict because I am referencing a
custom DTD that has been tweaked
The crux of this question can be reduced to,
"Is this on topic for c.i.w.a.h?"

You're doing something that is legit XML, but it's not good practice for
HTML on the web. It's debatable as to whether it's legit HTML to do this
at all. If you do it, is it still "HTML" ? (I would think not).

In practical terms, for today, then it doesn't work. it doesn't work
because the browser's notion of "what is HTML" is based on a hard-coded
notion, not by supporting use of a a dynamic DTD.

Now is this a good thing or a bad thing? IMHO, it's a good thing. We
saw "DTD chaos" in the mid-late '90s, when the doctype disappeared from
usefulness because every new editor in town thought to "extend" the DTD
(no-one was quite sure why). The simple fact was that as browsers had no
idea how to render these new attributes, then they simply might as well
not have been there. And any notion of downloading the DTDs on demand
and using them to drive further parsing was farcical - the web just
never worked that way.

Now with CSS, things are a bit better. In fact it's possible (just not
useful) for a browser to take any XML document and some CSS and render
it perfectly competently, even if there isn't a single element in there
in common with (X)HTML. However this still isn't useful - to make a
useful "web page" the browser must know how to render things beyond
CSS' capabilities. Most obviously it must understand how to generate a
link from an <a> element.

Now by this same _capacity_ of CSS to render any content we like, it
reduces the need for it. Why invent an unknown <foo> element when <div
class="foo" > does the job just as well?
(I added a 'target' attribute to the <a> element).
In the simple case, then why not simply use the Transitional DTD
instead? It supports target, it's there for legacy support, it's there
for exactly the purpose you require.

Target isn't evil. Target wasn't removed from HTML, it was merely
deferred to a better thought-out module that we're still waiting for.

Extensible HTML will happen (one day). We've already seen it done well
and usefully with Ruby. This needs browser support though, not just
stretching the DTD and hoping CSS will take care of it. As such, it is
limited to a fairly small volume of well-known modules with some control
process for their invention - it's not a free-for-all for every page
designer. I see a situation about as fluid as Firefox extensions being
the ideal - build an extension, extend the markup, and publicise both in
a well-known place. But don't do it on a whim, per page or site.
(I added a 'target' attribute to the <a> element).
There's also the question of what you expect a browser to _do_ with a
target attribute on an <a> element. Suppose you define a "destinatio n"
attribute on the <a> element in your expanded DTD and claim it to have
equivalent meaning to target. What should a browser do with that ? -
nothing! Because it has no semantic knowledge of what "destinatio n"
means, then there's nothing it possibly should be expected to do with
it. of courseit might parse and render it correctly, applying CSS as
appropriate, but that's the limit.

Just the same thing applies to a target attribute added to the <a>
element. This is _NOT_ the target attribute from the Transitional DTD
(which would trigger some navigational behaviour) it's merely another
unknown attribute that you have invented yourself. Arguably it should
again be permitted, and have CSS applied to it according to the generic
rules, but it would be very much a _wrong_ action for any browser to
start making assumptions that <a target="..." > in Extended Strict had
the same meaning as <a target="..." > in Transitional.

I confess that I write exactly the same code myself, with HTML 4.01. I
use target to invoke convenient "tag soup processing" in just the way
you're after, but I don't kid myself that my document is still valid
afterwards. But "validity" is still a bit of a goal with optimisitic
rewards on the lager web.
Well, my understanding is that they will validate in XML mode when
served with an XML content-type, as I have (application/xhtml+xml).
My understanding is that they should, but don't. See past threads on the
usefulness of namespaces in XHTML and the issues of getting them
validated.
Also, Firefox handles the more proper content-type of
'application/xhtml+xml' perfectly fine. Eventually, I will switch back
to 'text/html', as a concession to IE 6.


Which means that the web still needs text/html. You could browser
sniff (and people do - read James Pickering's posts hereabouts) but why
bother if you're also being forced to still support the legacy ?
That's because it's not a well-formed page.


Sure it is. Tell me what's not well formed about it.


Interesting terminology point here, and I really don't know the answer
(Jukka?)

Is an XML document with &nbsp; in it a failure to be well-formed, or
just a failure to be valid ?

Is it's merely a validity failure, then perhaps FF _is_ being a little
trigger happy on rejecting it outright? But then is it possible to
build a "useful" "entity soup" browser that can make a useful attempt at
rendering a page containing undefined entity references? _We_ know what
they meant, and we also know that it's "trivial" enough to replace with
a "?" charcetr if needs be, but could a browser depend on this with any
degree of reliability?
--
Cats have nine lives, which is why they rarely post to Usenet.
Oct 16 '05 #8
Andy Dingley wrote:
On 14 Oct 2005 10:22:50 -0700, "rbronson19 76"
<rb**********@y ahoo.com> wrote:
That's because it's not a well-formed page. Sure it is. Tell me what's not well formed about it.


Is an XML document with &nbsp; in it a failure to be well-formed, or
just a failure to be valid ?


That's an interesting question, and the answer seems to be contrary to
what I believed before looking it up in the XML recommendation [1].

In a document without any DTD, a document with only an internal
DTD subset which contains no parameter entity references, or a
document with "standalone='ye s'", for an entity reference that
does not occur within the external subset or a parameter entity,
the Name given in the entity reference MUST match that in an
entity declaration that does not occur within the external subset
or a parameter entity, except that well-formed documents need not
declare any of the following entities: amp, lt, gt, apos, quot.
The declaration of a general entity MUST precede any reference to
it which appears in a default value in an attribute-list
declaration.

Note that non-validating processors are not obligated to to read
and process entity declarations occurring in parameter entities
or in the external subset; for such documents, the rule that an
entity must be declared is a well-formedness constraint only if
standalone='yes '.

AIUI, a document with standalone="no" and a DOCTYPE declaration
referencing an external subset, that contains an undeclared entity
reference is well formed. Thus, if I have understood correctly, I
believe this document is well-formed:

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<DOCTYPE p SYSTEM "http://www.example.com/p.dtd">
<p>&nbsp;</p>

(Since a non-validating parser won't even attempt to retrieve the DTD,
it doesn't really matter whether it exists or not. Also, note that (I
believe) the default value of standalone is "no", so it could be omitted
with the same result)
Is it's merely a validity failure, then perhaps FF _is_ being a
little trigger happy on rejecting it outright?
It would be a validity error if the entity were not declared in the
external subset or parameter entity, but, AIUI, is still well-formed.
But then is it possible to build a "useful" "entity soup" browser
that can make a useful attempt at rendering a page containing
undefined entity references? _We_ know what they meant, and we also
know that it's "trivial" enough to replace with a "?" charcetr if
needs be, but could a browser depend on this with any degree of
reliability?


I couldn't find any definition of what should be used in its place,
though I would assume that it could be replaced with U+FFFD Replacement
Character.

[1] http://www.w3.org/TR/REC-xml/#wf-entdeclared

--
Lachlan Hunt
http://lachy.id.au/
http://GetFirefox.com/ Rediscover the Web
http://GetThunderbird.com/ Reclaim your Inbox
Oct 17 '05 #9
Lachlan Hunt <sp***********@ gmail.com> wrote:

[ Regarding undefined entity references ]
I couldn't find any definition of what should be used in its place,
though I would assume that it could be replaced with U+FFFD Replacement
Character.


By the Unicode Standard, U+FFFD is a correct character to be used if you
have had data in another encoding and conversion to Unicode has encountered
the problem that a character has no Unicode equivalent. On the other hand,
it might be more suitable in practice to use Private Use character, since
then you could use _different_ codes for different unconvertible
characters.

However, there are no rules in XML or HTML specifications for handling
U+FFFD. Anything may happen if you feed a browser with it. Contrary to
popular (?) misconception, XML and HTML specs do not require conformance to
the Unicode standard; they just define character references in terms of
Unicode (or the equivalent ISO 10646). Besides, conformance to Unicode
would not require any particular processing of U+FFFD, except that _if_ you
recognize it, you must treat it by its Unicode semantics.

There's a more fundamental problem in using U+FFFD even in theory. An
undefined entity reference is simply undefined. We cannot know that it was
meant to expand to a _single_ character. Although all predefined entities
in HTML expand that way, it's just a simple special case, as far as SGML
and XML are concerned. Using U+FFFD would reflect the assumption that only
one character is involved.

Thus, if you would like to replace an undefined entity reference by some
character that indicates the situation, I would suggest
U+FFFC OBJECT REPLACEMENT CHARACTER
But for it, too, browser behavior is undefined. Besides, the expansion of
an entity reference need not be an "object" in any normal sense. It could
be part of a name, for example.

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

Oct 17 '05 #10

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

Similar topics

12
6030
by: Tjerk Wolterink | last post by:
In XHTML the entity nbsp stands for   A normal space like " " is also displayed as an normal space, but multiple spaces like " " are interpreted as 1 space in the xhtml page. So there comes the &nbsp; in handy: with "&nbsp;&nbsp;" you have two spaces. So with the nbsp entity you can create multiple spaces (in the display). Now i have an xml file with &nbsp; entities, i put it in an xsl-file that know xhtml entities.
12
47837
by: Robert Mark Bram | last post by:
Hi All, I am using the following trim function: function trim (str) { return str.replace(/^\s*/g, '').replace(/\s*$/g, ''); } The problem is that this doesn't trim instances of the "&nbsp;" char - the non breaking space. Can this be represented in a grep statement at
2
3309
by: Bill Green | last post by:
I am trying to add an indent to a Dropdown control. I prefix the text for the ListItem with a couple &nbsp; but it doesn't render the tags to spaces , instead the dropdown list shows: MainItem &nbsp;&nbsp;SubItem &nbsp;&nbsp;SubItem Thanks, --
2
1982
by: Rob T | last post by:
I have a dropdown list that I would like to put in a bunch of &nbsp;'s into it (I'm setting the font to a monospace font so I can show a couple of columns nice and neat). In the old asp days, I had no problem doing this, but now if I try to do something like this... boxOption.Items.Add(New ListItem("myFirstCol&nbsp;&nbsp;&nbsp;myLastCol")) ....it converts each & to a &amp;
1
1742
by: Vikram | last post by:
i am adding a row in dataset , in which i want to add &nbsp; (space chracter for html) and then want to bind dataset to asp.net dropdown list box. But & automatically converted to &amp chracter. Is there any way by which &nbsp; can be retained as it is when dropdown throws the html part. THanks
5
1703
by: Tim | last post by:
Hi, I am trying to load up a drop list with semi aligned columns like so: Item 2 Something Else etc. To do so, I have tried to fill the Text valus of ListItems like so:
9
5826
by: Jouni Karppinen | last post by:
I create a HTMLTable in my C# code and then add rows and cells into that table. I'm trying to set top and bottom border for each cell by using stylesheet and it works as far as cell has some text in it. If cell has no content at all, the borders do not show up (..strange) So I tried to insert text inside each cell which has no other content inside. Cell content is set in code:
3
8932
by: yawnmoth | last post by:
<? echo 'a'.trim(html_entity_decode('&nbsp;a&nbsp;')).'a'; ?> Shouldn't PHP output aaa? Looking at the documentation for trim I see that it doesn't support chr(0xA0) (eg. html_entity_decode('&nbsp;')), but it seems to me like it ought to...
7
9780
by: Sebarry | last post by:
Hi, I'm having trouble creating a blank table row in Javascript using document.createElement( '&nbsp;' ). When I look at the generated source it has intrepreted it as <td>&amp;nbsp;</td>. What do I need to do? I've tried using single quotes, double quotes and backslash. Thanks, Sean
0
8840
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8730
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
9367
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
9215
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...
0
9064
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
8007
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
6669
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...
2
2576
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2130
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.