472,973 Members | 2,321 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,973 software developers and data experts.

why does this comparison script run so slow??

essentially I am trying to do some counts based on some
assumptions in the recordset. So I get the RS back, put
the values into a variable, move to the next record in the
RS and compare what is in the variable to the value in the
next record in the recordset and do a count. Then
overwrite the value in the variables and do the same for
the next record and so.

But this runs extremly slow. 5000 records takes about 10
minutes in IE6 and I can only guess it is the stepping
through the RS that is the problem?? There are only 4
fields in the RS...but the comparisons seem to take
forever and wondering is there something I am doing wrong
or anything I can do to speed it up???

Thanks in advance
set lRS = moConn.Execute(sSQL)

if not lRS.EOF then
iCnt = 0
iTransfers = 0
iRepeatCalls = 0
iRealACWs = 0

Do While Not lRS.EOF
if iCnt <> 0 then
if (sInternal_No = Trim(CStr(lRS("Internal Card
No")))) and (sSupp_No = Trim(CStr(lRS("Supp No")))) and
(sUser_Id = Trim(CStr(lRS("User Id")))) then

'do something
end if
sInternal_No = Trim(CStr(lRS("Internal Card No")))
sSupp_No = Trim(CStr(lRS("Supp No")))
sContact_Time = lRS("Contact Date/Time")
sUser_Id = Trim(CStr(lRS("UserId")))
lRS.MoveNext
Loop
Jul 19 '05 #1
5 3087
Well I was just doing a

set lRS = moConn.Execute

So whatever the default is, but I changed it to :

call lRS.Open(sSQL,moConn,adOpenForwardOnly,adLockReadO nly)

and while it seems to run a little faster, still very slow
for only 3 thousand records. It is not the SQL query as
that takes about 1 second in Query Analyser.

In the 'do something section, all I do is increment a 3
counts based on whether the comparisons evaluate to true
and each comparison can only can only be true once so
if...elseif....else if

iCnt = iCnt + 1

and also builting a HTML table which I will then write out
at the end, but I limit that to 250 rows, but something
like below...any help would be great as I can't believe
how slow it runs through the loop.

Cheers

sACW_HTML = sACW_HTML + "<tr
onmouseover='javascript:fnMouseOver(this)'
onmouseout='javascript:fnMouseOut(this)'>"

sACW_HTML = sACW_HTML + "<td style='border-
bottom: 1 solid #8A9AC6;padding-left:5px;padding-
right:5px'><font color='#000000' size='1' face='MS Sans
Serif'>" & CStr(lRS.Fields("Contact Date/Time"))
& "</font></td>"

sACW_HTML = sACW_HTML + "<td style='border-
left: 1 solid #8A9AC6; border-bottom: 1 solid
#8A9AC6;padding-left:5px;padding-right:5px'><font
color='#000000' size='1' face='MS Sans Serif'>" & CStr
(lRS.Fields("Internal Card No")) & "</font></td>"

sACW_HTML = sACW_HTML + "<td style='border-
left: 1 solid #8A9AC6; border-bottom: 1 solid
#8A9AC6;padding-left:5px;padding-right:5px'><font
color='#000000' size='1' face='MS Sans Serif'>" & CStr
(lRS.Fields("Supp No")) & "</font></td>"

sACW_HTML = sACW_HTML + "<td style='border-
left: 1 solid #8A9AC6; border-bottom: 1 solid
#8A9AC6;padding-left:5px;padding-right:5px'><font
color='#000000' size='1' face='MS Sans Serif'>" & CStr
(lRS.Fields("User Id")) & "</font></td>"

sACW_HTML = sACW_HTML + "</tr>"
-----Original Message-----
What is in the bit that is marked "do something"?

Also, what type of cursor/lock do you have on the recordset?
Cheers
Ken

"Shay" <sh*******@hotmail.com> wrote in message
news:3d****************************@phx.gbl...
: essentially I am trying to do some counts based on some
: assumptions in the recordset. So I get the RS back, put
: the values into a variable, move to the next record in the: RS and compare what is in the variable to the value in the: next record in the recordset and do a count. Then
: overwrite the value in the variables and do the same for
: the next record and so.
:
: But this runs extremly slow. 5000 records takes about 10
: minutes in IE6 and I can only guess it is the stepping
: through the RS that is the problem?? There are only 4
: fields in the RS...but the comparisons seem to take
: forever and wondering is there something I am doing wrong: or anything I can do to speed it up???
:
: Thanks in advance
:
:
: set lRS = moConn.Execute(sSQL)
:
: if not lRS.EOF then
: iCnt = 0
: iTransfers = 0
: iRepeatCalls = 0
: iRealACWs = 0
:
: Do While Not lRS.EOF
: if iCnt <> 0 then
:
:
: if (sInternal_No = Trim(CStr(lRS("Internal Card
: No")))) and (sSupp_No = Trim(CStr(lRS("Supp No")))) and
: (sUser_Id = Trim(CStr(lRS("User Id")))) then
:
: 'do something
:
:
: end if
:
:
: sInternal_No = Trim(CStr(lRS("Internal Card No")))
: sSupp_No = Trim(CStr(lRS("Supp No")))
: sContact_Time = lRS("Contact Date/Time")
: sUser_Id = Trim(CStr(lRS("UserId")))
: lRS.MoveNext
: Loop
.

Jul 19 '05 #2
OK, a couple of things will make this faster:

a) Use "SELECT COUNT()" SQL statements to get your counts, rather than
scrolling through a whole recordset incrementing counters based on comparing
values.

b) The main reason everything is slow is the string concatenation. This is
*very* slow in VBScript for large amounts of data and/or large numbers of
concatenations. There is an explanation here:
http://www.adopenstatic.com/experime...catenation.asp
under the heading "Why does VBScript concatenation take so long?"

Cheers
Ken

"Shay" <sh*******@hotmail.com> wrote in message
news:06****************************@phx.gbl...
: Well I was just doing a
:
: set lRS = moConn.Execute
:
: So whatever the default is, but I changed it to :
:
: call lRS.Open(sSQL,moConn,adOpenForwardOnly,adLockReadO nly)
:
: and while it seems to run a little faster, still very slow
: for only 3 thousand records. It is not the SQL query as
: that takes about 1 second in Query Analyser.
:
: In the 'do something section, all I do is increment a 3
: counts based on whether the comparisons evaluate to true
: and each comparison can only can only be true once so
: if...elseif....else if
:
: iCnt = iCnt + 1
:
: and also builting a HTML table which I will then write out
: at the end, but I limit that to 250 rows, but something
: like below...any help would be great as I can't believe
: how slow it runs through the loop.
:
: Cheers
:
: sACW_HTML = sACW_HTML + "<tr
: onmouseover='javascript:fnMouseOver(this)'
: onmouseout='javascript:fnMouseOut(this)'>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: bottom: 1 solid #8A9AC6;padding-left:5px;padding-
: right:5px'><font color='#000000' size='1' face='MS Sans
: Serif'>" & CStr(lRS.Fields("Contact Date/Time"))
: & "</font></td>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: left: 1 solid #8A9AC6; border-bottom: 1 solid
: #8A9AC6;padding-left:5px;padding-right:5px'><font
: color='#000000' size='1' face='MS Sans Serif'>" & CStr
: (lRS.Fields("Internal Card No")) & "</font></td>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: left: 1 solid #8A9AC6; border-bottom: 1 solid
: #8A9AC6;padding-left:5px;padding-right:5px'><font
: color='#000000' size='1' face='MS Sans Serif'>" & CStr
: (lRS.Fields("Supp No")) & "</font></td>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: left: 1 solid #8A9AC6; border-bottom: 1 solid
: #8A9AC6;padding-left:5px;padding-right:5px'><font
: color='#000000' size='1' face='MS Sans Serif'>" & CStr
: (lRS.Fields("User Id")) & "</font></td>"
:
: sACW_HTML = sACW_HTML + "</tr>"
:
:
:
: >-----Original Message-----
: >What is in the bit that is marked "do something"?
: >
: >Also, what type of cursor/lock do you have on the
: recordset?
: >
: >Cheers
: >Ken
: >
: >"Shay" <sh*******@hotmail.com> wrote in message
: >news:3d****************************@phx.gbl...
: >: essentially I am trying to do some counts based on some
: >: assumptions in the recordset. So I get the RS back, put
: >: the values into a variable, move to the next record in
: the
: >: RS and compare what is in the variable to the value in
: the
: >: next record in the recordset and do a count. Then
: >: overwrite the value in the variables and do the same for
: >: the next record and so.
: >:
: >: But this runs extremly slow. 5000 records takes about 10
: >: minutes in IE6 and I can only guess it is the stepping
: >: through the RS that is the problem?? There are only 4
: >: fields in the RS...but the comparisons seem to take
: >: forever and wondering is there something I am doing
: wrong
: >: or anything I can do to speed it up???
: >:
: >: Thanks in advance
: >:
: >:
: >: set lRS = moConn.Execute(sSQL)
: >:
: >: if not lRS.EOF then
: >: iCnt = 0
: >: iTransfers = 0
: >: iRepeatCalls = 0
: >: iRealACWs = 0
: >:
: >: Do While Not lRS.EOF
: >: if iCnt <> 0 then
: >:
: >:
: >: if (sInternal_No = Trim(CStr(lRS("Internal Card
: >: No")))) and (sSupp_No = Trim(CStr(lRS("Supp No")))) and
: >: (sUser_Id = Trim(CStr(lRS("User Id")))) then
: >:
: >: 'do something
: >:
: >:
: >: end if
: >:
: >:
: >: sInternal_No = Trim(CStr(lRS("Internal Card No")))
: >: sSupp_No = Trim(CStr(lRS("Supp No")))
: >: sContact_Time = lRS("Contact Date/Time")
: >: sUser_Id = Trim(CStr(lRS("UserId")))
: >: lRS.MoveNext
: >: Loop
: >
: >
: >.
: >
Jul 19 '05 #3

"Shay" <sh*******@hotmail.com> wrote in message
news:02****************************@phx.gbl...
Hey thanks for the link. That speeds it up a hell of a
lot, but I can't do the Select Count(*) as it is implied
data and I actually have to run through the RS and do
comparisons to get the counts.

But thanks again, will just have to do something else for
the HTML table.

Cheers
-----Original Message-----
OK, a couple of things will make this faster:

a) Use "SELECT COUNT()" SQL statements to get your

counts, rather than
scrolling through a whole recordset incrementing counters

based on comparing
values.

b) The main reason everything is slow is the string

concatenation. This is
*very* slow in VBScript for large amounts of data and/or

large numbers of
concatenations. There is an explanation here:
http://www.adopenstatic.com/experime...catenation.asp
under the heading "Why does VBScript concatenation take

so long?"

Cheers
Ken

"Shay" <sh*******@hotmail.com> wrote in message
news:06****************************@phx.gbl...
: Well I was just doing a
:
: set lRS = moConn.Execute
:
: So whatever the default is, but I changed it to :
:
: call lRS.Open

(sSQL,moConn,adOpenForwardOnly,adLockReadOnly)
:
: and while it seems to run a little faster, still very

slow
: for only 3 thousand records. It is not the SQL query as
: that takes about 1 second in Query Analyser.
:
: In the 'do something section, all I do is increment a 3
: counts based on whether the comparisons evaluate to true
: and each comparison can only can only be true once so
: if...elseif....else if
:
: iCnt = iCnt + 1
:
: and also builting a HTML table which I will then write

out
: at the end, but I limit that to 250 rows, but something
: like below...any help would be great as I can't believe
: how slow it runs through the loop.
:
: Cheers
:
: sACW_HTML = sACW_HTML + "<tr
: onmouseover='javascript:fnMouseOver(this)'
: onmouseout='javascript:fnMouseOut(this)'>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: bottom: 1 solid #8A9AC6;padding-left:5px;padding-
: right:5px'><font color='#000000' size='1' face='MS Sans
: Serif'>" & CStr(lRS.Fields("Contact Date/Time"))
: & "</font></td>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: left: 1 solid #8A9AC6; border-bottom: 1 solid
: #8A9AC6;padding-left:5px;padding-right:5px'><font
: color='#000000' size='1' face='MS Sans Serif'>" & CStr
: (lRS.Fields("Internal Card No")) & "</font></td>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: left: 1 solid #8A9AC6; border-bottom: 1 solid
: #8A9AC6;padding-left:5px;padding-right:5px'><font
: color='#000000' size='1' face='MS Sans Serif'>" & CStr
: (lRS.Fields("Supp No")) & "</font></td>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: left: 1 solid #8A9AC6; border-bottom: 1 solid
: #8A9AC6;padding-left:5px;padding-right:5px'><font
: color='#000000' size='1' face='MS Sans Serif'>" & CStr
: (lRS.Fields("User Id")) & "</font></td>"
:
: sACW_HTML = sACW_HTML + "</tr>"
:
:
:
: >-----Original Message-----
: >What is in the bit that is marked "do something"?
: >
: >Also, what type of cursor/lock do you have on the
: recordset?
: >
: >Cheers
: >Ken
: >
: >"Shay" <sh*******@hotmail.com> wrote in message
: >news:3d****************************@phx.gbl...
: >: essentially I am trying to do some counts based on

some
: >: assumptions in the recordset. So I get the RS back,

put
: >: the values into a variable, move to the next record

in
: the
: >: RS and compare what is in the variable to the value

in
: the
: >: next record in the recordset and do a count. Then
: >: overwrite the value in the variables and do the same

for
: >: the next record and so.
: >:
: >: But this runs extremly slow. 5000 records takes

about 10
: >: minutes in IE6 and I can only guess it is the

stepping
: >: through the RS that is the problem?? There are only 4
: >: fields in the RS...but the comparisons seem to take
: >: forever and wondering is there something I am doing
: wrong
: >: or anything I can do to speed it up???
: >:
: >: Thanks in advance
: >:
: >:
: >: set lRS = moConn.Execute(sSQL)
: >:
: >: if not lRS.EOF then
: >: iCnt = 0
: >: iTransfers = 0
: >: iRepeatCalls = 0
: >: iRealACWs = 0
: >:
: >: Do While Not lRS.EOF
: >: if iCnt <> 0 then
: >:
: >:
: >: if (sInternal_No = Trim(CStr(lRS("Internal Card
: >: No")))) and (sSupp_No = Trim(CStr(lRS("Supp No"))))

and
: >: (sUser_Id = Trim(CStr(lRS("User Id")))) then
: >:
: >: 'do something
: >:
: >:
: >: end if
: >:
: >:
: >: sInternal_No = Trim(CStr(lRS("Internal Card No")))
: >: sSupp_No = Trim(CStr(lRS("Supp No")))
: >: sContact_Time = lRS("Contact Date/Time")
: >: sUser_Id = Trim(CStr(lRS("UserId")))
: >: lRS.MoveNext
: >: Loop
: >
: >
: >.
: >
.

If you describe the summary logic in some more detail we could very
likely get this in one query/stored procedure. Here's some code.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>ACW</title>
<style type="text/css">
..ACW{
border-left : 1px solid #8A9AC6;
border-bottom : 1px solid #8A9AC6;
padding-left : 5px;
padding-right : 5px;
color : #000000;
font : 1 MS Serif;
}
</style>
</head>
<body>
<table>
<tr>
<td class='ACW'>
<%
Dim sSQL,sConn,cn,rs
sSQL = "EXEC spMyStoredProcedure" '<-- Insert your stored procedure/SQL
statement here
sConn = '<--- Insert your connection string here
Set cn = CreateObject("ADODB.Connection")
cn.Open sConn
Set rs = cn.Execute(sSQL,,&H1)
If Not rs.EOF Then Response.Write rs.GetString(2,,"</td><td
class='ACW'>","</td></tr><tr><td class='ACW'>")
rs.Close : Set rs = Nothing
%>
</td>
</tr>
</table>
</body>
</html>
Jul 19 '05 #4
"Chris Hohmann" <hohmannATyahooDOTcom> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...

"Shay" <sh*******@hotmail.com> wrote in message
news:02****************************@phx.gbl...
Hey thanks for the link. That speeds it up a hell of a
lot, but I can't do the Select Count(*) as it is implied
data and I actually have to run through the RS and do
comparisons to get the counts.

But thanks again, will just have to do something else for
the HTML table.

Cheers
-----Original Message-----
OK, a couple of things will make this faster:

a) Use "SELECT COUNT()" SQL statements to get your counts, rather than
scrolling through a whole recordset incrementing counters

based on comparing
values.

b) The main reason everything is slow is the string

concatenation. This is
*very* slow in VBScript for large amounts of data and/or

large numbers of
concatenations. There is an explanation here:
http://www.adopenstatic.com/experime...catenation.asp
under the heading "Why does VBScript concatenation take

so long?"

Cheers
Ken

"Shay" <sh*******@hotmail.com> wrote in message
news:06****************************@phx.gbl...
: Well I was just doing a
:
: set lRS = moConn.Execute
:
: So whatever the default is, but I changed it to :
:
: call lRS.Open

(sSQL,moConn,adOpenForwardOnly,adLockReadOnly)
:
: and while it seems to run a little faster, still very

slow
: for only 3 thousand records. It is not the SQL query as
: that takes about 1 second in Query Analyser.
:
: In the 'do something section, all I do is increment a 3
: counts based on whether the comparisons evaluate to true
: and each comparison can only can only be true once so
: if...elseif....else if
:
: iCnt = iCnt + 1
:
: and also builting a HTML table which I will then write

out
: at the end, but I limit that to 250 rows, but something
: like below...any help would be great as I can't believe
: how slow it runs through the loop.
:
: Cheers
:
: sACW_HTML = sACW_HTML + "<tr
: onmouseover='javascript:fnMouseOver(this)'
: onmouseout='javascript:fnMouseOut(this)'>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: bottom: 1 solid #8A9AC6;padding-left:5px;padding-
: right:5px'><font color='#000000' size='1' face='MS Sans
: Serif'>" & CStr(lRS.Fields("Contact Date/Time"))
: & "</font></td>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: left: 1 solid #8A9AC6; border-bottom: 1 solid
: #8A9AC6;padding-left:5px;padding-right:5px'><font
: color='#000000' size='1' face='MS Sans Serif'>" & CStr
: (lRS.Fields("Internal Card No")) & "</font></td>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: left: 1 solid #8A9AC6; border-bottom: 1 solid
: #8A9AC6;padding-left:5px;padding-right:5px'><font
: color='#000000' size='1' face='MS Sans Serif'>" & CStr
: (lRS.Fields("Supp No")) & "</font></td>"
:
: sACW_HTML = sACW_HTML + "<td style='border-
: left: 1 solid #8A9AC6; border-bottom: 1 solid
: #8A9AC6;padding-left:5px;padding-right:5px'><font
: color='#000000' size='1' face='MS Sans Serif'>" & CStr
: (lRS.Fields("User Id")) & "</font></td>"
:
: sACW_HTML = sACW_HTML + "</tr>"
:
:
:
: >-----Original Message-----
: >What is in the bit that is marked "do something"?
: >
: >Also, what type of cursor/lock do you have on the
: recordset?
: >
: >Cheers
: >Ken
: >
: >"Shay" <sh*******@hotmail.com> wrote in message
: >news:3d****************************@phx.gbl...
: >: essentially I am trying to do some counts based on

some
: >: assumptions in the recordset. So I get the RS back,

put
: >: the values into a variable, move to the next record

in
: the
: >: RS and compare what is in the variable to the value

in
: the
: >: next record in the recordset and do a count. Then
: >: overwrite the value in the variables and do the same

for
: >: the next record and so.
: >:
: >: But this runs extremly slow. 5000 records takes

about 10
: >: minutes in IE6 and I can only guess it is the

stepping
: >: through the RS that is the problem?? There are only 4
: >: fields in the RS...but the comparisons seem to take
: >: forever and wondering is there something I am doing
: wrong
: >: or anything I can do to speed it up???
: >:
: >: Thanks in advance
: >:
: >:
: >: set lRS = moConn.Execute(sSQL)
: >:
: >: if not lRS.EOF then
: >: iCnt = 0
: >: iTransfers = 0
: >: iRepeatCalls = 0
: >: iRealACWs = 0
: >:
: >: Do While Not lRS.EOF
: >: if iCnt <> 0 then
: >:
: >:
: >: if (sInternal_No = Trim(CStr(lRS("Internal Card
: >: No")))) and (sSupp_No = Trim(CStr(lRS("Supp No"))))

and
: >: (sUser_Id = Trim(CStr(lRS("User Id")))) then
: >:
: >: 'do something
: >:
: >:
: >: end if
: >:
: >:
: >: sInternal_No = Trim(CStr(lRS("Internal Card No")))
: >: sSupp_No = Trim(CStr(lRS("Supp No")))
: >: sContact_Time = lRS("Contact Date/Time")
: >: sUser_Id = Trim(CStr(lRS("UserId")))
: >: lRS.MoveNext
: >: Loop
: >
: >
: >.
: >
.

If you describe the summary logic in some more detail we could very
likely get this in one query/stored procedure. Here's some code.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>ACW</title>
<style type="text/css">
.ACW{
border-left : 1px solid #8A9AC6;
border-bottom : 1px solid #8A9AC6;
padding-left : 5px;
padding-right : 5px;
color : #000000;
font : 1 MS Serif;
}
</style>
</head>
<body>
<table>
<tr>
<td class='ACW'>
<%
Dim sSQL,sConn,cn,rs
sSQL = "EXEC spMyStoredProcedure" '<-- Insert your stored

procedure/SQL statement here
sConn = '<--- Insert your connection string here
Set cn = CreateObject("ADODB.Connection")
cn.Open sConn
Set rs = cn.Execute(sSQL,,&H1)
If Not rs.EOF Then Response.Write rs.GetString(2,,"</td><td
class='ACW'>","</td></tr><tr><td class='ACW'>")
rs.Close : Set rs = Nothing
%>
</td>
</tr>
</table>
</body>
</html>

Additional note: 5,000 records with four columns took 2.66 seconds on my
admittedly scrawny workstation (Dell OptiPlex GX110, 866mHz, 512M RAM).
Jul 19 '05 #5
"Chris Hohmann" <hohmannATyahooDOTcom> wrote in message
news:OW**************@tk2msftngp13.phx.gbl...
<<Beginning of message omitted for brevity>>
Additional note: 5,000 records with four columns took 2.66 seconds on my admittedly scrawny workstation (Dell OptiPlex GX110, 866mHz, 512M

RAM).

I was able to knock down that number to 0.25 seconds by omitting the
closing tags for <tr> and <td> and specifying a style for <td> instead
of creating a special class. Not too shabby. The GetString call looks
like this:

rs.GetString(2,,"<td>","<tr><td>")

HTH
-Chris, who loves carrying on a conversation all by himself. ;-)
Jul 19 '05 #6

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

Similar topics

5
by: Joe Blow | last post by:
I'm sure I'm missing something blindingly obvious here. I am relatively new to PHP, so excuse dumb mistakes. I a trying to check a form submitted from an earlier page, and check $_POST for empty...
1
by: Bill W. | last post by:
I'm teaching myself VB6. As a first project, I've decided to work on a Window's version of the Unix command, "diff" -- with a few twists. But being unfamiliar with VB, I am unsure as to how to...
30
by: Christian Seberino | last post by:
How does Ruby compare to Python?? How good is DESIGN of Ruby compared to Python? Python's design is godly. I'm wondering if Ruby's is godly too. I've heard it has solid OOP design but then...
8
by: lawrence | last post by:
I'm learning Javascript. I downloaded a script for study. Please tell me how the variable "loop" can have scope in the first function when it is altered in the second function? It is not defined...
4
by: Schraalhans Keukenmeester | last post by:
I have no clue why below code (found it somewhere and altered it a wee bit to my needs) will run without problem in both IE and Mozilla FireFox 1.0 but in the latter it takes up close to 100% cpu....
8
by: opt_inf_env | last post by:
Hello, I try to understand how the following script works. <style type="text/css"> .fauxLink {text-decoration: underline; color: blue; cursor: pointer; font-weight: bold; }
5
by: BILL | last post by:
Hi Everyone, I've been looking through these .NET groups and can't find the exact answer I want, so I'm asking. Can someone let me know the best way (you feel) to search a C# string for an...
6
by: sales | last post by:
Hello, I am trying to get my website checkout page to rotate / take turns displaying shopping comparison engine surveys rather than display them all 4 at the same time, thus overwhelming &...
7
by: Alan | last post by:
Hi. I have programmed in C++ before, but I`m a couple of years out of practice. I am seeking some advice on getting started on a quickie project. . . . I have to read a 54MB text file and do a...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...
3
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

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.