473,804 Members | 2,314 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

This is brilliant! Just look how long it is! Ha ha ha ha ha ha

http://www.15seconds.com/Issue/030812.htm?voteresult=1

poor guy worked his heart out, just to make a page control

and then they published it

ha ha ha ha ha

to "help" others

ha ha ha ha ha ha

just imagine the face of a newbie looking at that mountain of code

apparently he researched how to do it in books

my god i would love to watch this guy tie his shoelaces

it must take hours and involve lots of complex mathematics

ha ha ha ha

maybe the poor guy's hourly rate is so low he has to overcomplicate
everything just to pay the rent

ha ha ha ha

imagine him working through the night
"i'll make the best page control, ever!"

i've got it! he hates newbies ... so he publishes ridiculous
articles to demoralise them and drain their energy

doesn't tell them that a generic page control is just 10 lines
of code that a monkey could write HE'S EVIL

extract from his article:

"Effectivel y showing code so it confuses newbies is a main objective
in writing almost all my web articles. Showing 20 lines of code in an
article is unbearable but showing 10,000 certainly can be helpful.
Writing good code, is a commonly employed solution, that I do not
recommend."

Nov 19 '05 #1
16 1783
Can you post 10 sample lines of code to do this? Just wondering what it
would look like from your vantage pt.

Thanks!

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
http://www.15seconds.com/Issue/030812.htm?voteresult=1

poor guy worked his heart out, just to make a page control

and then they published it

ha ha ha ha ha

to "help" others

ha ha ha ha ha ha

just imagine the face of a newbie looking at that mountain of code

apparently he researched how to do it in books

my god i would love to watch this guy tie his shoelaces

it must take hours and involve lots of complex mathematics

ha ha ha ha

maybe the poor guy's hourly rate is so low he has to overcomplicate
everything just to pay the rent

ha ha ha ha

imagine him working through the night
"i'll make the best page control, ever!"

i've got it! he hates newbies ... so he publishes ridiculous
articles to demoralise them and drain their energy

doesn't tell them that a generic page control is just 10 lines
of code that a monkey could write HE'S EVIL

extract from his article:

"Effectivel y showing code so it confuses newbies is a main objective
in writing almost all my web articles. Showing 20 lines of code in an
article is unbearable but showing 10,000 certainly can be helpful.
Writing good code, is a commonly employed solution, that I do not
recommend."

Nov 19 '05 #2
If it wasn't a good article it would not have made it onto 15seconds.
Credit to Tomasz for giving something back to the community.

Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
http://www.15seconds.com/Issue/030812.htm?voteresult=1

poor guy worked his heart out, just to make a page control

and then they published it

ha ha ha ha ha

to "help" others

ha ha ha ha ha ha

just imagine the face of a newbie looking at that mountain of code

apparently he researched how to do it in books

my god i would love to watch this guy tie his shoelaces

it must take hours and involve lots of complex mathematics

ha ha ha ha

maybe the poor guy's hourly rate is so low he has to overcomplicate
everything just to pay the rent

ha ha ha ha

imagine him working through the night
"i'll make the best page control, ever!"

i've got it! he hates newbies ... so he publishes ridiculous
articles to demoralise them and drain their energy

doesn't tell them that a generic page control is just 10 lines
of code that a monkey could write HE'S EVIL

extract from his article:

"Effectivel y showing code so it confuses newbies is a main objective
in writing almost all my web articles. Showing 20 lines of code in an
article is unbearable but showing 10,000 certainly can be helpful.
Writing good code, is a commonly employed solution, that I do not
recommend."

Nov 19 '05 #3
with pleasure,

this is exactly ten lines of code (exluding the function declaration
and html stuff)

excuse the classicasp, i had it handy

Function PageControl(Pag eNumber, PageCount)
Const PropName = "PageNumber "
%><table width="100%" cellpadding="4" cellspacing="0"
bgcolor="#EEEEE E">
<!---->
<tr>
<td nowrap><%="Page " & PageNumber & " of " & PageCount%></td>
<td align="right" nowrap><b><%
Dim URL
URL = ThisPage & StripQueryStrin g(Request.Query String, PropName)
If PageNumber > 1 Then
%>[<a href="<%=HTML(U RL & QPX(PropName, 1))%>">First</a>]
[<a href="<%=HTML(U RL & QPX(PropName, PageNumber - 1))%>">Prev</a>]<%
Else
%><span style="color:#C CCCCC">[First]
[Prev]</span><%
End If
%>&nbsp;<%
If PageNumber < PageCount Then
%>[<a href="<%=HTML(U RL & QPX(PropName, PageNumber + 1))%>">Next</a>]
[<a href="<%=HTML(U RL & QPX(PropName, PageCount))%>"> Last</a>]<%
Else
%><span style="color:#C CCCCC">[Next]
[Last]</span><%
End If
%></b></td>
</tr>
<!---->
</table><%
End Function

(HTML is convenience function to save typing Server.HTMLEnco de etc.)
(QPX is shorthand for Server.URLEncod e(name) & "+" &
Server.URLEncod e(value) & "&")
(StripQueryStri ng returns the given querystring minus the given
parameter)

and of course i would have done the paging logic in a stored procedure
rather than repeatedly transferring piles of data about for no reason
like that idiotic "datagrid" control does

which i can show you here:

CREATE proc spTestCursorPag ination
@start int
, @size int
as
--
declare CRS cursor scroll read_only for select recordid from junk
(tablock) order by recordid
declare @index int
declare @recordid int
--
create table #temp (
orderid int primary key identity
, recordid int
)
set nocount on
set @index = 0
open CRS
--
while @index < @size
begin
if @index = 0
fetch absolute @start from CRS into @recordid
else
fetch next from CRS into @recordid
insert into #temp with (tablockx) (recordid) values (@recordid)
set @index = @index + 1
end
--
close CRS
deallocate CRS
--
select junk.* from junk (tablock)
inner join #temp (tablock)
on junk.recordid = #temp.recordid
order by #temp.orderid
--(end)
and i didn't need to read a book to do that
i just used my brain and 20 minutes

plus if you test my solution on a db of 10,000,000
records it will run faster than his junk with 10,000
records and use much less ram and cpu and network resources

www.15seconds.com is useful but most of the articles are total tripe

welcome to the layer cake son


VB Programmer wrote:
Can you post 10 sample lines of code to do this? Just wondering what it
would look like from your vantage pt.

Thanks!

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
http://www.15seconds.com/Issue/030812.htm?voteresult=1

poor guy worked his heart out, just to make a page control

and then they published it

ha ha ha ha ha

to "help" others

ha ha ha ha ha ha

just imagine the face of a newbie looking at that mountain of code

apparently he researched how to do it in books

my god i would love to watch this guy tie his shoelaces

it must take hours and involve lots of complex mathematics

ha ha ha ha

maybe the poor guy's hourly rate is so low he has to overcomplicate
everything just to pay the rent

ha ha ha ha

imagine him working through the night
"i'll make the best page control, ever!"

i've got it! he hates newbies ... so he publishes ridiculous
articles to demoralise them and drain their energy

doesn't tell them that a generic page control is just 10 lines
of code that a monkey could write HE'S EVIL

extract from his article:

"Effectivel y showing code so it confuses newbies is a main objective
in writing almost all my web articles. Showing 20 lines of code in an
article is unbearable but showing 10,000 certainly can be helpful.
Writing good code, is a commonly employed solution, that I do not
recommend."


Nov 19 '05 #4
re:
"Effectivel y showing code so it confuses newbies is a main objective
in writing almost all my web articles. Showing 20 lines of code in an
article is unbearable but showing 10,000 certainly can be helpful.
Actual text in the article :
"Effectivel y showing data so it doesn't confuse the end user is a main
objective in developing almost all Web data presentation applications.
Showing 20 records on one page is bearable but showing 10,000
certainly can be confusing."

re: Writing good code, is a commonly employed solution, that I do not
recommend."
Actual text in the article :
"Splitting the data across several pages, or paging the data,
is a commonly employed solution to this problem."

It's simply amazing that you would stoop this low, troll!
Go be a jerk somewhere else.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com... http://www.15seconds.com/Issue/030812.htm?voteresult=1

poor guy worked his heart out, just to make a page control

and then they published it

ha ha ha ha ha

to "help" others

ha ha ha ha ha ha

just imagine the face of a newbie looking at that mountain of code

apparently he researched how to do it in books

my god i would love to watch this guy tie his shoelaces

it must take hours and involve lots of complex mathematics

ha ha ha ha

maybe the poor guy's hourly rate is so low he has to overcomplicate
everything just to pay the rent

ha ha ha ha

imagine him working through the night
"i'll make the best page control, ever!"

i've got it! he hates newbies ... so he publishes ridiculous
articles to demoralise them and drain their energy

doesn't tell them that a generic page control is just 10 lines
of code that a monkey could write HE'S EVIL

extract from his article:

"Effectivel y showing code so it confuses newbies is a main objective
in writing almost all my web articles. Showing 20 lines of code in an
article is unbearable but showing 10,000 certainly can be helpful.
Writing good code, is a commonly employed solution, that I do not
recommend."

Nov 19 '05 #5
You should submit that "improvemen t" to 15Seconds.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** **************@ o13g2000cwo.goo glegroups.com.. .
with pleasure,

this is exactly ten lines of code (exluding the function declaration
and html stuff)

excuse the classicasp, i had it handy

Function PageControl(Pag eNumber, PageCount)
Const PropName = "PageNumber "
%><table width="100%" cellpadding="4" cellspacing="0"
bgcolor="#EEEEE E">
<!---->
<tr>
<td nowrap><%="Page " & PageNumber & " of " & PageCount%></td>
<td align="right" nowrap><b><%
Dim URL
URL = ThisPage & StripQueryStrin g(Request.Query String, PropName)
If PageNumber > 1 Then
%>[<a href="<%=HTML(U RL & QPX(PropName, 1))%>">First</a>]
[<a href="<%=HTML(U RL & QPX(PropName, PageNumber - 1))%>">Prev</a>]<%
Else
%><span style="color:#C CCCCC">[First]
[Prev]</span><%
End If
%>&nbsp;<%
If PageNumber < PageCount Then
%>[<a href="<%=HTML(U RL & QPX(PropName, PageNumber + 1))%>">Next</a>]
[<a href="<%=HTML(U RL & QPX(PropName, PageCount))%>"> Last</a>]<%
Else
%><span style="color:#C CCCCC">[Next]
[Last]</span><%
End If
%></b></td>
</tr>
<!---->
</table><%
End Function

(HTML is convenience function to save typing Server.HTMLEnco de etc.)
(QPX is shorthand for Server.URLEncod e(name) & "+" &
Server.URLEncod e(value) & "&")
(StripQueryStri ng returns the given querystring minus the given
parameter)

and of course i would have done the paging logic in a stored procedure
rather than repeatedly transferring piles of data about for no reason
like that idiotic "datagrid" control does

which i can show you here:

CREATE proc spTestCursorPag ination
@start int
, @size int
as
--
declare CRS cursor scroll read_only for select recordid from junk
(tablock) order by recordid
declare @index int
declare @recordid int
--
create table #temp (
orderid int primary key identity
, recordid int
)
set nocount on
set @index = 0
open CRS
--
while @index < @size
begin
if @index = 0
fetch absolute @start from CRS into @recordid
else
fetch next from CRS into @recordid
insert into #temp with (tablockx) (recordid) values (@recordid)
set @index = @index + 1
end
--
close CRS
deallocate CRS
--
select junk.* from junk (tablock)
inner join #temp (tablock)
on junk.recordid = #temp.recordid
order by #temp.orderid
--(end)
and i didn't need to read a book to do that
i just used my brain and 20 minutes

plus if you test my solution on a db of 10,000,000
records it will run faster than his junk with 10,000
records and use much less ram and cpu and network resources

www.15seconds.com is useful but most of the articles are total tripe

welcome to the layer cake son


VB Programmer wrote:
Can you post 10 sample lines of code to do this? Just wondering what it
would look like from your vantage pt.

Thanks!

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
> http://www.15seconds.com/Issue/030812.htm?voteresult=1
>
> poor guy worked his heart out, just to make a page control
>
> and then they published it
>
> ha ha ha ha ha
>
> to "help" others
>
> ha ha ha ha ha ha
>
> just imagine the face of a newbie looking at that mountain of code
>
> apparently he researched how to do it in books
>
> my god i would love to watch this guy tie his shoelaces
>
> it must take hours and involve lots of complex mathematics
>
> ha ha ha ha
>
> maybe the poor guy's hourly rate is so low he has to overcomplicate
> everything just to pay the rent
>
> ha ha ha ha
>
> imagine him working through the night
> "i'll make the best page control, ever!"
>
> i've got it! he hates newbies ... so he publishes ridiculous
> articles to demoralise them and drain their energy
>
> doesn't tell them that a generic page control is just 10 lines
> of code that a monkey could write HE'S EVIL
>
> extract from his article:
>
> "Effectivel y showing code so it confuses newbies is a main objective
> in writing almost all my web articles. Showing 20 lines of code in an
> article is unbearable but showing 10,000 certainly can be helpful.
> Writing good code, is a commonly employed solution, that I do not
> recommend."
>

Nov 19 '05 #6

I was being mean, his intentions were good, but that article should
never have been published.

And credit to me then for just showing the community a lean and high
performance approach!

You wouldn't happen to know who at Microsoft was responsible for
designing
ASPX, UserControls, HtmlControls, CustomControls and viewstate would
you?

I am sure it wasn't the same people who designed the other parts of
ASP.NET.

John Timney (ASP.NET MVP) wrote:
If it wasn't a good article it would not have made it onto 15seconds.
Credit to Tomasz for giving something back to the community.

Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
http://www.15seconds.com/Issue/030812.htm?voteresult=1

poor guy worked his heart out, just to make a page control

and then they published it


Nov 19 '05 #7
Hey, John, do you think that the code you posted
meets the requirements for the posted code in the article ?

1. First, Previous, Next, Last and paging buttons

2. Be sensitive to the data. If the pager is set to show 10 records
per page and only nine are shown, then the pager shouldn't be visible.
On the first page the Previous and First buttons shouldn't be shown.
On the last page the Next and the Last methods shouldn't be shown.

3. Independent of the control that's in charge of the presentation

4. The ability to handle a variety of current and future data sources

5. Easily configurable presentation to integrate with custom applications

6. Notify other controls when paging is taking place

7. Easy to use even by inexperienced Web designers

8. Provide properties to relevant paging data

The code you posted doesn't even come *close* to doing that.
Go be a jerk somewhere else.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** **************@ o13g2000cwo.goo glegroups.com.. .

I was being mean, his intentions were good, but that article should
never have been published.

And credit to me then for just showing the community a lean and high
performance approach!

You wouldn't happen to know who at Microsoft was responsible for
designing
ASPX, UserControls, HtmlControls, CustomControls and viewstate would
you?

I am sure it wasn't the same people who designed the other parts of
ASP.NET.

John Timney (ASP.NET MVP) wrote:
If it wasn't a good article it would not have made it onto 15seconds.
Credit to Tomasz for giving something back to the community.

Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
> http://www.15seconds.com/Issue/030812.htm?voteresult=1
>
> poor guy worked his heart out, just to make a page control
>
> and then they published it
>

Nov 19 '05 #8
well the article covered paging with a grid, asp.net events, the standard
process controller pattern, and is plugable into a generic application.

not a bad exercise.

-- bruce (sqlwork.com)
"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
http://www.15seconds.com/Issue/030812.htm?voteresult=1

poor guy worked his heart out, just to make a page control

and then they published it

ha ha ha ha ha

to "help" others

ha ha ha ha ha ha

just imagine the face of a newbie looking at that mountain of code

apparently he researched how to do it in books

my god i would love to watch this guy tie his shoelaces

it must take hours and involve lots of complex mathematics

ha ha ha ha

maybe the poor guy's hourly rate is so low he has to overcomplicate
everything just to pay the rent

ha ha ha ha

imagine him working through the night
"i'll make the best page control, ever!"

i've got it! he hates newbies ... so he publishes ridiculous
articles to demoralise them and drain their energy

doesn't tell them that a generic page control is just 10 lines
of code that a monkey could write HE'S EVIL

extract from his article:

"Effectivel y showing code so it confuses newbies is a main objective
in writing almost all my web articles. Showing 20 lines of code in an
article is unbearable but showing 10,000 certainly can be helpful.
Writing good code, is a commonly employed solution, that I do not
recommend."

Nov 19 '05 #9
you don't solve the same problem. your code is not a generic plugin to be
used on any page. your html may be generic, but the driving code isn't, nor
was it included. in you model every page must implement the paging code.

also you demo rather bad sql. (using a server curor and a table lock - no
scaling this puppy). also to get the total page count, another query is
required.

-- bruce (sqlwork.com)

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** **************@ o13g2000cwo.goo glegroups.com.. .
with pleasure,

this is exactly ten lines of code (exluding the function declaration
and html stuff)

excuse the classicasp, i had it handy

Function PageControl(Pag eNumber, PageCount)
Const PropName = "PageNumber "
%><table width="100%" cellpadding="4" cellspacing="0"
bgcolor="#EEEEE E">
<!---->
<tr>
<td nowrap><%="Page " & PageNumber & " of " & PageCount%></td>
<td align="right" nowrap><b><%
Dim URL
URL = ThisPage & StripQueryStrin g(Request.Query String, PropName)
If PageNumber > 1 Then
%>[<a href="<%=HTML(U RL & QPX(PropName, 1))%>">First</a>]
[<a href="<%=HTML(U RL & QPX(PropName, PageNumber - 1))%>">Prev</a>]<%
Else
%><span style="color:#C CCCCC">[First]
[Prev]</span><%
End If
%>&nbsp;<%
If PageNumber < PageCount Then
%>[<a href="<%=HTML(U RL & QPX(PropName, PageNumber + 1))%>">Next</a>]
[<a href="<%=HTML(U RL & QPX(PropName, PageCount))%>"> Last</a>]<%
Else
%><span style="color:#C CCCCC">[Next]
[Last]</span><%
End If
%></b></td>
</tr>
<!---->
</table><%
End Function

(HTML is convenience function to save typing Server.HTMLEnco de etc.)
(QPX is shorthand for Server.URLEncod e(name) & "+" &
Server.URLEncod e(value) & "&")
(StripQueryStri ng returns the given querystring minus the given
parameter)

and of course i would have done the paging logic in a stored procedure
rather than repeatedly transferring piles of data about for no reason
like that idiotic "datagrid" control does

which i can show you here:

CREATE proc spTestCursorPag ination
@start int
, @size int
as
--
declare CRS cursor scroll read_only for select recordid from junk
(tablock) order by recordid
declare @index int
declare @recordid int
--
create table #temp (
orderid int primary key identity
, recordid int
)
set nocount on
set @index = 0
open CRS
--
while @index < @size
begin
if @index = 0
fetch absolute @start from CRS into @recordid
else
fetch next from CRS into @recordid
insert into #temp with (tablockx) (recordid) values (@recordid)
set @index = @index + 1
end
--
close CRS
deallocate CRS
--
select junk.* from junk (tablock)
inner join #temp (tablock)
on junk.recordid = #temp.recordid
order by #temp.orderid
--(end)
and i didn't need to read a book to do that
i just used my brain and 20 minutes

plus if you test my solution on a db of 10,000,000
records it will run faster than his junk with 10,000
records and use much less ram and cpu and network resources

www.15seconds.com is useful but most of the articles are total tripe

welcome to the layer cake son


VB Programmer wrote:
Can you post 10 sample lines of code to do this? Just wondering what it
would look like from your vantage pt.

Thanks!

"John Rivers" <fi*****@btinte rnet.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
> http://www.15seconds.com/Issue/030812.htm?voteresult=1
>
> poor guy worked his heart out, just to make a page control
>
> and then they published it
>
> ha ha ha ha ha
>
> to "help" others
>
> ha ha ha ha ha ha
>
> just imagine the face of a newbie looking at that mountain of code
>
> apparently he researched how to do it in books
>
> my god i would love to watch this guy tie his shoelaces
>
> it must take hours and involve lots of complex mathematics
>
> ha ha ha ha
>
> maybe the poor guy's hourly rate is so low he has to overcomplicate
> everything just to pay the rent
>
> ha ha ha ha
>
> imagine him working through the night
> "i'll make the best page control, ever!"
>
> i've got it! he hates newbies ... so he publishes ridiculous
> articles to demoralise them and drain their energy
>
> doesn't tell them that a generic page control is just 10 lines
> of code that a monkey could write HE'S EVIL
>
> extract from his article:
>
> "Effectivel y showing code so it confuses newbies is a main objective
> in writing almost all my web articles. Showing 20 lines of code in an
> article is unbearable but showing 10,000 certainly can be helpful.
> Writing good code, is a commonly employed solution, that I do not
> recommend."
>

Nov 19 '05 #10

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

Similar topics

4
3365
by: James | last post by:
I have a from with 2 fields: Company & Name Depening which is completed, one of the following queries will be run: if($Company){ $query = "Select C* From tblsample Where ID = $Company Order By Company ASC";
2
2737
by: Nick | last post by:
Can someone please tell me how to access elements from a multiple selection list? From what ive read on other posts, this is correct. I keep getting an "Undefined variable" error though... Form page************************************************************ <form action="/process.php" method="get" name="formOne" id="formOne"> <select name="owner" size="6" multiple id="owner"> <option value="one">one</option> <option...
2
2561
by: Alexander Ross | last post by:
I have a variable ($x) that can have 50 different (string) values. I want to check for 7 of those values and do something based on it ... as I see it I have 2 options: 1) if (($x=="one") || ($x=="two") || ... || ($x=="seven")) ... or 2) switch ($x){ case("one"):
37
4700
by: Curt | last post by:
If this is the complete program (ie, the address of the const is never taken, only its value used) is it likely the compiler will allocate ram for constantA or constantB? Or simply substitute the values in (as would be required if I used the hideous, evil, much-abused #define :) ----------- const int constantA = 10; static const int constantB = 20;
4
1662
by: Ondernemer | last post by:
Imagine 25.000.000 records in a database with a table like this: TABLE SUBJECTS table_id (INT) subject (VARCHAR(200)) date_added (TIMESTAMP) The SUBJECT field is a long string. Something like these:
3
1362
by: Soren Mikkelsen | last post by:
Dear all, I am not sure this is the right forum so please bare with me that I've posted the same on fora: microsoft.public.dotnet.faq microsoft.public.dotnet.framework.setup microsoft.public.dotnet.general I will be very happy if you can tell me how to "unattended" (or quietly) installed the .NET Framework 1.1. and SP1 for this e.g. through a script or
5
12070
by: jasenpeters | last post by:
Dear Colleagues, MS-Access 2000 After compacting and repairing a database... "AOIndex is not an index in this table." Error 3800 Shows up when attempting to open or manipulate the database in any way. Can be displayed twice upon attempting to open with Access.
8
1665
by: Alex Buell | last post by:
Is there anyway I can do something like this? This won't compile. Any ideas. #include <iostream> template <typename T> class sample { public: sample(T n) { std::cout << sizeof(n) << "\n"; }
4
1180
by: ken | last post by:
I'm in a form. I click a button to open a form. Within the onclick sub there is code to open a form. I want that sub to wait until the user completes his work on the newly opened form, then continue running the sub. Does this make sense? I tried with a while loop but that didn't work... sub onclick_open_form 'open myform
2
2657
by: Paul Neave | last post by:
Hello all. Please try this link for me and let me know what you see: http://www.neave.com/temp/stretch_test.html You should see a green header filling the top of the page, a red footer at the very bottom of the page and a white Flash movie filling the gap in between. You'll need at least Flash Player 7, otherwise it will just show black. It shouldn't scroll, it should act like a framed page but
0
9712
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
9594
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
10343
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
10089
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
9171
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
7634
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
5530
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4308
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
2
3831
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.