473,406 Members | 2,710 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,406 software developers and data experts.

Usage of "auto". What for?

I currently get asked about my usage of "auto". What is it for?
The keyword is clearly superflous here.

In contrast to the huge majority of C/C++ developers I write
definitions very explicitly like that:

int main(char argc, char *argv[], char *env[]) {
try {
auto Exception mainException(1);
mainException.setErrNo(42);
} catch (Exception caughtException) {
std::cout << "caught caughtException:" << caughtException.errNo <<
std::endl;
}
}

Of course you do not need the keyword auto to make the program
compile, link and run.
On the other hand, you (more clearly parsers) gain easy information
about where definitions are made !

As a plain developer reading his C++ file in an editor with the
indention used above it is mor ease to remember, that the auto
variables will be deconstructed, when going out of scope.

The other thing is, that you can use code parsers more easily to
process ascpects of variable usage for example.

May 9 '07 #1
22 3025
"no*********@wanano.net" <To**************@wanano.netwrote in message
news:11**********************@q75g2000hsh.googlegr oups.com...
>I currently get asked about my usage of "auto". What is it for?
The keyword is clearly superflous here.

In contrast to the huge majority of C/C++ developers I write
definitions very explicitly like that:
Then you're in for a treat:
http://www.open-std.org/jtc1/sc22/wg...2006/n1984.pdf

Have fun rewriting your code once you switch to C++09 ;)

- Sylvester
May 9 '07 #2
At first sight I am really horrified.

Seems the principals of C++ are not at all interested in having a
stable language.
I.m.h.o. this is one reason ( in addition to the lack of an ABI
standards to allow for exchange of C++ binary libraries plus
headers ), why C++ looses followers against languages as C# for
example.
The less protection of development efforts by the standard, the more
readily you change.

A small community of indicate the downgrade of a language.
Of course there is middle-technology to connect the different
languages.

But there is an infrastructure around software development
( languages ) that is not solved by connective techniques, like
programmers, libraries, tools, discussions, ...

The idea of changing semantics and syntax of existing language
features is - to express it very politely - not necessariliy to the
advantage of the language.

May 9 '07 #3
"no*********@wanano.net" <To**************@wanano.netwrote in message
news:11**********************@h2g2000hsg.googlegro ups.com...
At first sight I am really horrified.

Seems the principals of C++ are not at all interested in having a
stable language.
I.m.h.o. this is one reason ( in addition to the lack of an ABI
standards to allow for exchange of C++ binary libraries plus
headers ), why C++ looses followers against languages as C# for
example.
I don't agree. C++ looses followers because C++ doesn't evolve as rapidly as
Java and C#. Besides, this very same auto feature will also makes it way
into C# 3.0, so according to your reasoning those who went to code C# will
also stop using C# for the very same reason they left C++.

And yes, you can misuse the new 'auto' feature just as you can misuse many
of the C++ features, but it's definitely a gain for those who deal with lots
of generic code and deeply nested template types. I, for one, am happy of
the new feature. I'm tired of writing std::vector<int>::iterator every time
while it's very obvious that if I call begin() on a vector it returns that
very same type (and this is just a mild nuisance).

- Sylvester
May 9 '07 #4
On 9 May, 11:15, "nospam_n...@wanano.net"
<Torsten.Reich...@wanano.netwrote:
At first sight I am really horrified.

Seems the principals of C++ are not at all interested in having a
stable language.
I.m.h.o. this is one reason ( in addition to the lack of an ABI
standards to allow for exchange of C++ binary libraries plus
headers ), why C++ looses followers against languages as C# for
example.
The less protection of development efforts by the standard, the more
readily you change.

A small community of indicate the downgrade of a language.
Of course there is middle-technology to connect the different
languages.

But there is an infrastructure around software development
( languages ) that is not solved by connective techniques, like
programmers, libraries, tools, discussions, ...

The idea of changing semantics and syntax of existing language
features is - to express it very politely - not necessariliy to the
advantage of the language.
You said yourself that your use of the auto keyword is in contrast to
the huge majority of C/C++ developers. For my part I have never once
seen it used in code and you are the first person I have ever
encountered, either online or in the real world, who uses it. If the
proposal were to change the meaning of a keyword like "class" or "if",
clearly that would be mad. There would be very little C++ code
unaffected. But auto in its current form has precisiely zero effect on
the compiler and is almost universally ignored by C++ programmers.
It's at the very top of the pointless keywords list, above even
register and inline. Given all that, while the general principle of
redefining the meaning of a keyword is quite alarming, in this
specific case I think the potential benefits of introducing a useful
capability that also exists (or will exist) in a competing language
outweigh the costs, which are extremely close to zero across the C++
world.

Gavin Deane

May 9 '07 #5
On May 9, 4:57 pm, "Sylvester Hesp" <s.h...@oisyn.nlwrote:
"nospam_n...@wanano.net" <Torsten.Reich...@wanano.netwrote in message

news:11**********************@q75g2000hsh.googlegr oups.com...
I currently get asked about my usage of "auto". What is it for?
The keyword is clearly superflous here.
In contrast to the huge majority of C/C++ developers I write
definitions very explicitly like that:

Then you're in for a treat:http://www.open-std.org/jtc1/sc22/wg...2006/n1984.pdf
Oh I can't wait for this!

There are times that I've written a templated function as it was
easier than trying to work out the correct type of an iterator or some
other deeply nested type.
K

May 9 '07 #6
Sylvester Hesp wrote:
"no*********@wanano.net" <To**************@wanano.netwrote in message
news:11**********************@q75g2000hsh.googlegr oups.com...
>I currently get asked about my usage of "auto". What is it for?
The keyword is clearly superflous here.

In contrast to the huge majority of C/C++ developers I write
definitions very explicitly like that:

Then you're in for a treat:
http://www.open-std.org/jtc1/sc22/wg...2006/n1984.pdf

Have fun rewriting your code once you switch to C++09 ;)
He won't have to. The present meaning of auto will be preserved; it
will just have another, much more useful, use. It will be like the many
different ways of using the "static" keyword.

Joe Gottman
May 9 '07 #7

"Joe Gottman" <jg******@carolina.rr.comwrote in message
news:46***********************@roadrunner.com...
Sylvester Hesp wrote:
>"no*********@wanano.net" <To**************@wanano.netwrote in message
news:11**********************@q75g2000hsh.googleg roups.com...
>>I currently get asked about my usage of "auto". What is it for?
The keyword is clearly superflous here.

In contrast to the huge majority of C/C++ developers I write
definitions very explicitly like that:

Then you're in for a treat:
http://www.open-std.org/jtc1/sc22/wg...2006/n1984.pdf

Have fun rewriting your code once you switch to C++09 ;)

He won't have to. The present meaning of auto will be preserved; it
will just have another, much more useful, use. It will be like the many
different ways of using the "static" keyword.
Interesting, do you have a source to back that up? Because if you read that
paper I just linked to, or the latest C++09 draft
(http://www.open-std.org/jtc1/sc22/wg...006/n2134.pdf), you
will see that the 'auto' storage specifier has been removed.

- Sylvester Hesp
May 9 '07 #8

"Sylvester Hesp" <s.****@oisyn.nlwrote in message
news:46*********************@news.xs4all.nl...
>
>>Then you're in for a treat:
http://www.open-std.org/jtc1/sc22/wg...2006/n1984.pdf

Have fun rewriting your code once you switch to C++09 ;)

He won't have to. The present meaning of auto will be preserved; it
will just have another, much more useful, use. It will be like the many
different ways of using the "static" keyword.

Interesting, do you have a source to back that up? Because if you read
that paper I just linked to, or the latest C++09 draft
(http://www.open-std.org/jtc1/sc22/wg...006/n2134.pdf), you
will see that the 'auto' storage specifier has been removed.

- Sylvester Hesp
Besides, it would make sense to remove it. Rather than with 'static', the
new usage for 'auto' is used in exactly the same context as the old usage,
which can conflict with eachother:

typedef int foo;
void bar(int i)
{
auto foo(i); // #1
}

What is the meaning of the statement at #1? Is it a definition of a local
variable i of type int, that has automatic storage duration? Or is it a
definition of a local variable foo, initialized with the int i, where it's
type is deduced from it's initialization? Currently, it is the former. But
after N1984 is implemented, it is the latter. You can't keep the former use
of auto alive because that will result in ambiguities in the language.

- Sylvester Hesp
May 9 '07 #9
On 2007-05-09 03:15:35 -0700, "no*********@wanano.net"
<To**************@wanano.netsaid:
At first sight I am really horrified.
[at the C++09 semantics of the auto keyword]
The idea of changing semantics and syntax of existing language
features is - to express it very politely - not necessariliy to the
advantage of the language.
I would agree with you if it weren't for the fact that the auto
keyword, as it exists, is completely useless. It effectively has *no
semantics to change*. Anyone currently using it in any real code is,
IMHO, simply being different for difference's sake.

--
Clark S. Cox III
cl*******@gmail.com

May 9 '07 #10

On 5/9/07 4:54 AM, in article 46*********************@news.xs4all.nl,
"Sylvester Hesp" <s.****@oisyn.nlwrote:
>
"Joe Gottman" <jg******@carolina.rr.comwrote in message
news:46***********************@roadrunner.com...
>Sylvester Hesp wrote:
>>"no*********@wanano.net" <To**************@wanano.netwrote in message
news:11**********************@q75g2000hsh.google groups.com...
I currently get asked about my usage of "auto". What is it for?
The keyword is clearly superflous here.

In contrast to the huge majority of C/C++ developers I write
definitions very explicitly like that:

Then you're in for a treat:
http://www.open-std.org/jtc1/sc22/wg...2006/n1984.pdf

Have fun rewriting your code once you switch to C++09 ;)

He won't have to. The present meaning of auto will be preserved; it
will just have another, much more useful, use. It will be like the many
different ways of using the "static" keyword.

Interesting, do you have a source to back that up? Because if you read that
paper I just linked to, or the latest C++09 draft
(http://www.open-std.org/jtc1/sc22/wg...006/n2134.pdf), you
will see that the 'auto' storage specifier has been removed.
The auto specifier (along with its automatic type deduction capability) is
described in §7.1.5.4 of n2134 (the latest draft C++ Standard).

Joe is correct: the existing semantics of auto are preserved so no code
changes will be necessary as a consequence of this new use for the auto
keyword.

Greg

May 9 '07 #11

On 5/9/07 5:06 AM, in article 46*********************@news.xs4all.nl,
"Sylvester Hesp" <s.****@oisyn.nlwrote:
>
"Sylvester Hesp" <s.****@oisyn.nlwrote in message
news:46*********************@news.xs4all.nl...
>>
>>>Then you're in for a treat:
http://www.open-std.org/jtc1/sc22/wg...2006/n1984.pdf

Have fun rewriting your code once you switch to C++09 ;)
He won't have to. The present meaning of auto will be preserved; it
will just have another, much more useful, use. It will be like the many
different ways of using the "static" keyword.

Interesting, do you have a source to back that up? Because if you read
that paper I just linked to, or the latest C++09 draft
(http://www.open-std.org/jtc1/sc22/wg...006/n2134.pdf), you
will see that the 'auto' storage specifier has been removed.

- Sylvester Hesp

Besides, it would make sense to remove it. Rather than with 'static', the
new usage for 'auto' is used in exactly the same context as the old usage,
which can conflict with eachother:

typedef int foo;
void bar(int i)
{
auto foo(i); // #1
}

What is the meaning of the statement at #1? Is it a definition of a local
variable i of type int, that has automatic storage duration?
Yes. Note that the local variable "i" hides the parameter that is also named
"i" - which is unlikely to be intentional. In fact, the usual syntax for a
declaration of this sort would be:

auto foo i;

Now, the name conflict with the "i" parameter is apparent.
Or is it a
definition of a local variable foo, initialized with the int i, where it's
type is deduced from it's initialization?
No. Since "foo" is a typedef name it may not also be a function name. And
since the type is supplied in this declaration, no automatic type deduction
needs to take place. So the meaning of this confusing declaration will be
just as confusing (and will mean the same thing) in C++09 as it does in
C++03.
Currently, it is the former. But
after N1984 is implemented, it is the latter. You can't keep the former use
of auto alive because that will result in ambiguities in the language.
No, as long as the use of "auto" is legal in C++03, then that same use of
"auto" will have the same meaning in C++09. In other words, any use of auto
to perform automatic type deduction in C++09, will not compile under the
current C++ Standard because omitting the type from a type declaration is
currently not legal.

Greg
May 9 '07 #12
On May 9, 11:57 am, "Sylvester Hesp" <s.h...@oisyn.nlwrote:
"nospam_n...@wanano.net" <Torsten.Reich...@wanano.netwrote in message
news:11**********************@q75g2000hsh.googlegr oups.com...
I currently get asked about my usage of "auto". What is it for?
The keyword is clearly superflous here.
In contrast to the huge majority of C/C++ developers I write
definitions very explicitly like that:
Then you're in for a treat:http://www.open-std.org/jtc1/sc22/wg...2006/n1984.pdf
Have fun rewriting your code once you switch to C++09 ;)
If you actually read the proposal, you'll find that it goes to
some pains to avoid breaking existing code. Whether his use is
a good idea or not, it will remain legal.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

May 10 '07 #13
On May 9, 12:15 pm, "nospam_n...@wanano.net"
<Torsten.Reich...@wanano.netwrote:
At first sight I am really horrified.
Read the proposal carefully. It goes to great pains to avoid
breaking existing code.
Seems the principals of C++ are not at all interested in having a
stable language.
Breaking existing code is considered a serious problem by the
committee. Breaking large bodies of existing code is sufficient
to prevent a proposal from being adopted. And while the
majority of C++ users may not use auto, you are not alone in
your preferences, and there is a significant body of code which
uses it. A proposal which would break such code would not stand
a chance of being adopted.

[...]
The idea of changing semantics and syntax of existing language
features is - to express it very politely - not necessariliy to the
advantage of the language.
I think that the majority of the committee would agree with you
here. There's no point in having a standard if standard
conforming code ceases to be legal a couple of years down the
road.

The proposal in question doesn't change the semantics of
existing code. It defines semantics for code which would not
currently be legal. Thus (according to proposal):

auto int i ; // Works as always...
auto j = i ; // Currently illegal, the proposal
// makes it legal, and defines
// semantics for it.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

May 10 '07 #14
On May 9, 11:32 am, "nospam_n...@wanano.net"
<Torsten.Reich...@wanano.netwrote:
I currently get asked about my usage of "auto". What is it for?
The keyword is clearly superflous here.
In contrast to the huge majority of C/C++ developers I write
definitions very explicitly like that:
int main(char argc, char *argv[], char *env[]) {
try {
auto Exception mainException(1);
mainException.setErrNo(42);
} catch (Exception caughtException) {
std::cout << "caught caughtException:" << caughtException.errNo <<
std::endl;
}
}
Of course you do not need the keyword auto to make the program
compile, link and run.
On the other hand, you (more clearly parsers) gain easy information
about where definitions are made !
As a plain developer reading his C++ file in an editor with the
indention used above it is mor ease to remember, that the auto
variables will be deconstructed, when going out of scope.
The other thing is, that you can use code parsers more easily to
process ascpects of variable usage for example.
It's a very good idea per se. It just has one major problem: no
one is using it. The result is that anyone reading your code
will wonder what is going on. It should have been required from
the beginning, in C. Or rather, C should have defined a
declaration syntax that was clear, and which worked, rather than
the mess we've inherited. But it's far too late to change that
now.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

May 10 '07 #15
Kirit Sælensminde wrote:
Oh I can't wait for this!

There are times that I've written a templated function as it was
easier than trying to work out the correct type of an iterator or some
other deeply nested type.
I have sometimes done that too. For example, I once wrote a small
program where I made a function which calls another function. I wanted
to make that other function be a parameter so that I can call the
first function and tell it which other function it should call. Even
though all those alternative functions had the same form, I would still
not be bothered by trying to remember how to write a function pointer
syntax, so I simply made it a template parameter to the first function
and let the compiler figure it out.

By the way, what will this do:

void foo(auto x) { ... }

Will that be equivalent to:

template<typename T>
void foo(T x) { ... }

?
May 10 '07 #16
"James Kanze" <ja*********@gmail.comwrote in message
news:11**********************@e51g2000hsg.googlegr oups.com...
On May 9, 11:57 am, "Sylvester Hesp" <s.h...@oisyn.nlwrote:
"nospam_n...@wanano.net" <Torsten.Reich...@wanano.netwrote in message
news:11**********************@q75g2000hsh.googlegr oups.com...
Then you're in for a
treat:http://www.open-std.org/jtc1/sc22/wg...2006/n1984.pdf
Have fun rewriting your code once you switch to C++09 ;)

If you actually read the proposal, you'll find that it goes to
some pains to avoid breaking existing code. Whether his use is
a good idea or not, it will remain legal.
I have not read the proposal fully - while browsing through the proposed
wording, I saw that they removed 'auto' from the storage class specifiers in
7.1.1, which made me believe the old behaviour of auto would disappear. My
bad.

- Sylvester Hesp
May 10 '07 #17

"Greg Herlihy" <gr****@pacbell.netwrote in message
news:C2******************@pacbell.net...
>
On 5/9/07 5:06 AM, in article 46*********************@news.xs4all.nl,
"Sylvester Hesp" <s.****@oisyn.nlwrote:
>Besides, it would make sense to remove it. Rather than with 'static', the
new usage for 'auto' is used in exactly the same context as the old
usage,
which can conflict with eachother:

typedef int foo;
void bar(int i)
{
auto foo(i); // #1
}

What is the meaning of the statement at #1? Is it a definition of a local
variable i of type int, that has automatic storage duration?

Yes. Note that the local variable "i" hides the parameter that is also
named
"i" - which is unlikely to be intentional. In fact, the usual syntax for a
declaration of this sort would be:

auto foo i;
Of course, but I had to think of a possible conflict, the above statement is
not ambiguous in any way ;)
>Or is it a
definition of a local variable foo, initialized with the int i, where
it's
type is deduced from it's initialization?

No. Since "foo" is a typedef name it may not also be a function name.
I take it you mean 'variable name'? And why not? It just locally hides the
global typedef, which always has been legal in C++.
And
since the type is supplied in this declaration, no automatic type
deduction
needs to take place. So the meaning of this confusing declaration will be
just as confusing (and will mean the same thing) in C++09 as it does in
C++03.
>Currently, it is the former. But
after N1984 is implemented, it is the latter. You can't keep the former
use
of auto alive because that will result in ambiguities in the language.

No, as long as the use of "auto" is legal in C++03, then that same use of
"auto" will have the same meaning in C++09. In other words, any use of
auto
to perform automatic type deduction in C++09, will not compile under the
current C++ Standard because omitting the type from a type declaration is
currently not legal.
Right, to recap: so while this is legal:

typedef int foo;
void bar(float i)
{
float foo(i); // hides ::foo
}

There is no corresponding declaration using automatic type deduction,
because the use of 'foo' in 'auto foo(i)' would make it a declaration of
variable 'i' of type 'foo' (thus int) with automatic storage duration,
rather than a declaration of variable 'foo' that is initialized with 'i'
with automatic type deduction (thus float). And we can't use 'auto foo = i',
because that is ill-formed because the omission of a variable name, even
though it *could* be parsed as a declaration with automatic type deduction,
but it isn't parsed that way, because foo is a type.

Is this correct?

- Sylvester Hesp
May 10 '07 #18
Juha Nieminen schrieb:
[...]
By the way, what will this do:

void foo(auto x) { ... }

Will that be equivalent to:

template<typename T>
void foo(T x) { ... }

?
Surely not. I did not found anythink in the proposal, but logically it
would only be legal with a default argument:

void foo(auto x = MyClass()) { ... }

which is:

void foo(MyClass x = MyClass()) { ... }

--
Thomas
http://www.netmeister.org/news/learn2quote.html
May 10 '07 #19
The "auto" keyword is not yet part of the C++ language. The document
Sylvester referred to is related to a proposal for the next revision
of the C++ standard. So, currently, it should strictly be treated as
a compiler-specific language extension. Therefore, to understand what
"auto" does in your case, you need to refer to your compiler's
documentation.

May 11 '07 #20
On 2007-05-11 21:59, Doctor Smith wrote:
The "auto" keyword is not yet part of the C++ language. The document
Sylvester referred to is related to a proposal for the next revision
of the C++ standard. So, currently, it should strictly be treated as
a compiler-specific language extension. Therefore, to understand what
"auto" does in your case, you need to refer to your compiler's
documentation.
Please quote the relevant sections you are replying to, since it will
make your post a lot easier to understand.

The keyword "auto" has been part of the C++ language for some time
(probably since the beginning) and it specifies that a variable shall
have automatic storage duration. However it is hardly ever used since
automatic storage duration is the default so the absence of presence of
it does not affect the semantics of the code.

The document Sylvester referred to describes a new usage of the auto
keyword, and as you pointed out it is not yet a part of the C++ language.

To understand what the code someone (I don't know who) posted does one
would need to know if he was talking about the current version of C++ or
the next, however considering that the current usage of auto is quite
trivial to understand one can assume that it was the semantics in the
next language he was talking about, in which case the working draft of
the new standard (currently document n2284) would probably be the best
source for information.

--
Erik Wikström
May 11 '07 #21
On May 10, 12:36 pm, "Sylvester Hesp" <s.h...@oisyn.nlwrote:
"James Kanze" <james.ka...@gmail.comwrote in message

news:11**********************@e51g2000hsg.googlegr oups.com...
On May 9, 11:57 am, "Sylvester Hesp" <s.h...@oisyn.nlwrote:
If you actually read the proposal, you'll find that it goes to
some pains to avoid breaking existing code. Whether his use is
a good idea or not, it will remain legal.
I have not read the proposal fully - while browsing through the proposed
wording, I saw that they removed 'auto' from the storage class specifiersin
7.1.1, which made me believe the old behaviour of auto would disappear. My
bad.
That was my first reaction, too, and that it would mean
rejection of the proposal by some of the national bodies. But
I've been through this before---I know that backwards
compatibility and not breaking existing code are important
considerations. The committee tries to not act irresponsibly.
So I read further, and found that, while no longer one of the
storage class specifiers, it acts exactly like one any time a
type specifier is present.

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

May 12 '07 #22
On May 11, 9:59 pm, Doctor Smith <smit...@gmail.comwrote:
The "auto" keyword is not yet part of the C++ language. The
document Sylvester referred to is related to a proposal for
the next revision of the C++ standard. So, currently, it
should strictly be treated as a compiler-specific language
extension. Therefore, to understand what "auto" does in your
case, you need to refer to your compiler's documentation.

The auto keyword has been part of C++ (and C) since the very
beginning. It's described in the first edition of K&R, and has
remained in all successor versions of C and C++, with the same
meaning. The proposal cited by Sylvester is to extend its
meaning to new cases, which are currently illegal.

--
James Kanze (Gabi Software) email: ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

May 12 '07 #23

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

Similar topics

16
by: John Baker | last post by:
Hi: I know this is a strange question, but I have inherited a system where files are copied and records re auto numbered (as an index field) )frequently, and I am wondering how high the number...
1
by: PL | last post by:
The Culture="auto" UICulture="auto" is a great idea, but how do you handle the situaion where SQL Server always requires a dot "." in numeric values. If I use Culture="auto"so that dates and...
1
by: Jefferds.A | last post by:
Hi, I'm putting together a little database of individuals categorized by family. I have two lists, one that contains family names and one that contains individuals' names. When you click on a link...
9
by: Beowulf | last post by:
I was having this problem: http://groups.google.com/group/microsoft.public.sqlserver.server/msg/e36e423972323378?dmode=source with it taking an inordinate amount of time to enumerate the...
2
by: Piotr K | last post by:
Hi, I've encountered a strange problem with Firefox which I don't have any idea how to resolve. To the point: I've <divelement with a style "height: auto" and I want to retrieve this value...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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:
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...
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,...
0
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.