PC Review


Reply
Thread Tools Rate Thread

Can you merge a "Count" Crosstab with a "Money Sum" Crosstab?

 
 
Iram
Guest
Posts: n/a
 
      3rd May 2010

Hello,
I have created two critical queries. One counts how many times we did
something and the other sums the money amounts for the same "counted"
records. The common field between both crosstab queries is TeamName.
I need a single report that shows Counts and Amounts. How can you merge both
of these or is there a different way around this?


Thanks.
Iram
 
Reply With Quote
 
 
 
 
KARL DEWEY
Guest
Posts: n/a
 
      3rd May 2010
Post the SQL of both crosstab queries by opening in design view, click on
VIEW - SQL View, highlight all, copy, and paste in a post.

--
Build a little, test a little.


"Iram" wrote:

>
> Hello,
> I have created two critical queries. One counts how many times we did
> something and the other sums the money amounts for the same "counted"
> records. The common field between both crosstab queries is TeamName.
> I need a single report that shows Counts and Amounts. How can you merge both
> of these or is there a different way around this?
>
>
> Thanks.
> Iram

 
Reply With Quote
 
Iram
Guest
Posts: n/a
 
      3rd May 2010
Karl,
Here you go per your request.... I need to merge the two below crosstab
queries. One query counts and the other sums...


Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryCounts

TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) AS CountOfWorkerID
SELECT tbl_CountingWhatCountsTempTable.TeamName,
Count(tbl_CountingWhatCountsTempTable.WorkerID) AS [Total Of WorkerID]
FROM tbl_CountingWhatCountsTempTable
GROUP BY tbl_CountingWhatCountsTempTable.TeamName
PIVOT tbl_CountingWhatCountsTempTable.Category;






Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryAmounts

TRANSFORM Sum(tbl_CountingWhatCountsTempTable.Amount) AS SumOfAmount
SELECT tbl_CountingWhatCountsTempTable.TeamName,
Sum(tbl_CountingWhatCountsTempTable.Amount) AS Totals
FROM tbl_CountingWhatCountsTempTable
GROUP BY tbl_CountingWhatCountsTempTable.TeamName
PIVOT tbl_CountingWhatCountsTempTable.Category;





Iram

"KARL DEWEY" wrote:

> Post the SQL of both crosstab queries by opening in design view, click on
> VIEW - SQL View, highlight all, copy, and paste in a post.
>
> --
> Build a little, test a little.
>
>
> "Iram" wrote:
>
> >
> > Hello,
> > I have created two critical queries. One counts how many times we did
> > something and the other sums the money amounts for the same "counted"
> > records. The common field between both crosstab queries is TeamName.
> > I need a single report that shows Counts and Amounts. How can you merge both
> > of these or is there a different way around this?
> >
> >
> > Thanks.
> > Iram

 
Reply With Quote
 
KARL DEWEY
Guest
Posts: n/a
 
      3rd May 2010
Try this --
TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
Sum(tbl_CountingWhatCountsTempTable.Amount) AS CountWorker_SumAmount
SELECT tbl_CountingWhatCountsTempTable.TeamName,
Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
Sum(tbl_CountingWhatCountsTempTable.Amount) AS Total_CountWorker_SumAmount
FROM tbl_CountingWhatCountsTempTable
GROUP BY tbl_CountingWhatCountsTempTable.TeamName
PIVOT tbl_CountingWhatCountsTempTable.Category;

--
Build a little, test a little.


"Iram" wrote:

> Karl,
> Here you go per your request.... I need to merge the two below crosstab
> queries. One query counts and the other sums...
>
>
> Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryCounts
>
> TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) AS CountOfWorkerID
> SELECT tbl_CountingWhatCountsTempTable.TeamName,
> Count(tbl_CountingWhatCountsTempTable.WorkerID) AS [Total Of WorkerID]
> FROM tbl_CountingWhatCountsTempTable
> GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> PIVOT tbl_CountingWhatCountsTempTable.Category;
>
>
>
>
>
>
> Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryAmounts
>
> TRANSFORM Sum(tbl_CountingWhatCountsTempTable.Amount) AS SumOfAmount
> SELECT tbl_CountingWhatCountsTempTable.TeamName,
> Sum(tbl_CountingWhatCountsTempTable.Amount) AS Totals
> FROM tbl_CountingWhatCountsTempTable
> GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> PIVOT tbl_CountingWhatCountsTempTable.Category;
>
>
>
>
>
> Iram
>
> "KARL DEWEY" wrote:
>
> > Post the SQL of both crosstab queries by opening in design view, click on
> > VIEW - SQL View, highlight all, copy, and paste in a post.
> >
> > --
> > Build a little, test a little.
> >
> >
> > "Iram" wrote:
> >
> > >
> > > Hello,
> > > I have created two critical queries. One counts how many times we did
> > > something and the other sums the money amounts for the same "counted"
> > > records. The common field between both crosstab queries is TeamName.
> > > I need a single report that shows Counts and Amounts. How can you merge both
> > > of these or is there a different way around this?
> > >
> > >
> > > Thanks.
> > > Iram

 
Reply With Quote
 
Iram
Guest
Posts: n/a
 
      4th May 2010
KARL DEWEY, THAT WAS IMPRESSIVE!!!!

It works beautifully!
I didn't think it was possible!

YOU ARE THE MAN!


Thanks!
Iram/mcp


"KARL DEWEY" wrote:

> Try this --
> TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
> Sum(tbl_CountingWhatCountsTempTable.Amount) AS CountWorker_SumAmount
> SELECT tbl_CountingWhatCountsTempTable.TeamName,
> Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
> Sum(tbl_CountingWhatCountsTempTable.Amount) AS Total_CountWorker_SumAmount
> FROM tbl_CountingWhatCountsTempTable
> GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> PIVOT tbl_CountingWhatCountsTempTable.Category;
>
> --
> Build a little, test a little.
>
>
> "Iram" wrote:
>
> > Karl,
> > Here you go per your request.... I need to merge the two below crosstab
> > queries. One query counts and the other sums...
> >
> >
> > Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryCounts
> >
> > TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) AS CountOfWorkerID
> > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > Count(tbl_CountingWhatCountsTempTable.WorkerID) AS [Total Of WorkerID]
> > FROM tbl_CountingWhatCountsTempTable
> > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > PIVOT tbl_CountingWhatCountsTempTable.Category;
> >
> >
> >
> >
> >
> >
> > Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryAmounts
> >
> > TRANSFORM Sum(tbl_CountingWhatCountsTempTable.Amount) AS SumOfAmount
> > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > Sum(tbl_CountingWhatCountsTempTable.Amount) AS Totals
> > FROM tbl_CountingWhatCountsTempTable
> > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > PIVOT tbl_CountingWhatCountsTempTable.Category;
> >
> >
> >
> >
> >
> > Iram
> >
> > "KARL DEWEY" wrote:
> >
> > > Post the SQL of both crosstab queries by opening in design view, click on
> > > VIEW - SQL View, highlight all, copy, and paste in a post.
> > >
> > > --
> > > Build a little, test a little.
> > >
> > >
> > > "Iram" wrote:
> > >
> > > >
> > > > Hello,
> > > > I have created two critical queries. One counts how many times we did
> > > > something and the other sums the money amounts for the same "counted"
> > > > records. The common field between both crosstab queries is TeamName.
> > > > I need a single report that shows Counts and Amounts. How can you merge both
> > > > of these or is there a different way around this?
> > > >
> > > >
> > > > Thanks.
> > > > Iram

 
Reply With Quote
 
Iram
Guest
Posts: n/a
 
      4th May 2010
KARL,
I created a copy of your query so that I could create a parameterized query
that would pull in a date range however the crosstab no longer groups the
"Teams". I inserted the following parameters in the Query Parameters:
[Forms]![frm_FormDailyReports]![BeginDate] Date/Time
[Forms]![frm_FormDailyReports]![EndDate] Date/Time

The query comes up with multiples of the same team. How can I fix this. Your
query works beautifully and it is essential in our operations, but now I need
this secondary query with a date range which is also essential. Could you
help me fix this?

Update query with Date Range parameter
PARAMETERS [Forms]![frm_FormDailyReports]![BeginDate] DateTime,
[Forms]![frm_FormDailyReports]![EndDate] DateTime;
TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) & " " &
Sum(tbl_CountingWhatCountsTempTable.Amount) AS CountWorker_SumAmount
SELECT tbl_CountingWhatCountsTempTable.Team,
Count(tbl_CountingWhatCountsTempTable.WorkerID) & " " &
Sum(tbl_CountingWhatCountsTempTable.Amount) AS [Total Counts/$]
FROM tbl_CountingWhatCountsTempTable
WHERE (((tbl_CountingWhatCountsTempTable.StatsDate) Between
[Forms]![frm_FormDailyReports]![BeginDate] And
[Forms]![frm_FormDailyReports]![EndDate]))
GROUP BY tbl_CountingWhatCountsTempTable.Team,
tbl_CountingWhatCountsTempTable.StatsDate
PIVOT tbl_CountingWhatCountsTempTable.Category;


Thanks.
Iram/mcp




"KARL DEWEY" wrote:

> Try this --
> TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
> Sum(tbl_CountingWhatCountsTempTable.Amount) AS CountWorker_SumAmount
> SELECT tbl_CountingWhatCountsTempTable.TeamName,
> Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
> Sum(tbl_CountingWhatCountsTempTable.Amount) AS Total_CountWorker_SumAmount
> FROM tbl_CountingWhatCountsTempTable
> GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> PIVOT tbl_CountingWhatCountsTempTable.Category;
>
> --
> Build a little, test a little.
>
>
> "Iram" wrote:
>
> > Karl,
> > Here you go per your request.... I need to merge the two below crosstab
> > queries. One query counts and the other sums...
> >
> >
> > Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryCounts
> >
> > TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) AS CountOfWorkerID
> > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > Count(tbl_CountingWhatCountsTempTable.WorkerID) AS [Total Of WorkerID]
> > FROM tbl_CountingWhatCountsTempTable
> > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > PIVOT tbl_CountingWhatCountsTempTable.Category;
> >
> >
> >
> >
> >
> >
> > Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryAmounts
> >
> > TRANSFORM Sum(tbl_CountingWhatCountsTempTable.Amount) AS SumOfAmount
> > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > Sum(tbl_CountingWhatCountsTempTable.Amount) AS Totals
> > FROM tbl_CountingWhatCountsTempTable
> > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > PIVOT tbl_CountingWhatCountsTempTable.Category;
> >
> >
> >
> >
> >
> > Iram
> >
> > "KARL DEWEY" wrote:
> >
> > > Post the SQL of both crosstab queries by opening in design view, click on
> > > VIEW - SQL View, highlight all, copy, and paste in a post.
> > >
> > > --
> > > Build a little, test a little.
> > >
> > >
> > > "Iram" wrote:
> > >
> > > >
> > > > Hello,
> > > > I have created two critical queries. One counts how many times we did
> > > > something and the other sums the money amounts for the same "counted"
> > > > records. The common field between both crosstab queries is TeamName.
> > > > I need a single report that shows Counts and Amounts. How can you merge both
> > > > of these or is there a different way around this?
> > > >
> > > >
> > > > Thanks.
> > > > Iram

 
Reply With Quote
 
KARL DEWEY
Guest
Posts: n/a
 
      4th May 2010
>>The query comes up with multiples of the same team.
Your problem is that you included tbl_CountingWhatCountsTempTable.StatsDate
in the GROUP BY.

Use just the team.
.....
GROUP BY tbl_CountingWhatCountsTempTable.Team
PIVOT tbl_CountingWhatCountsTempTable.Category;

--
Build a little, test a little.


"Iram" wrote:

> KARL,
> I created a copy of your query so that I could create a parameterized query
> that would pull in a date range however the crosstab no longer groups the
> "Teams". I inserted the following parameters in the Query Parameters:
> [Forms]![frm_FormDailyReports]![BeginDate] Date/Time
> [Forms]![frm_FormDailyReports]![EndDate] Date/Time
>
> The query comes up with multiples of the same team. How can I fix this. Your
> query works beautifully and it is essential in our operations, but now I need
> this secondary query with a date range which is also essential. Could you
> help me fix this?
>
> Update query with Date Range parameter
> PARAMETERS [Forms]![frm_FormDailyReports]![BeginDate] DateTime,
> [Forms]![frm_FormDailyReports]![EndDate] DateTime;
> TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) & " " &
> Sum(tbl_CountingWhatCountsTempTable.Amount) AS CountWorker_SumAmount
> SELECT tbl_CountingWhatCountsTempTable.Team,
> Count(tbl_CountingWhatCountsTempTable.WorkerID) & " " &
> Sum(tbl_CountingWhatCountsTempTable.Amount) AS [Total Counts/$]
> FROM tbl_CountingWhatCountsTempTable
> WHERE (((tbl_CountingWhatCountsTempTable.StatsDate) Between
> [Forms]![frm_FormDailyReports]![BeginDate] And
> [Forms]![frm_FormDailyReports]![EndDate]))
> GROUP BY tbl_CountingWhatCountsTempTable.Team,
> tbl_CountingWhatCountsTempTable.StatsDate
> PIVOT tbl_CountingWhatCountsTempTable.Category;
>
>
> Thanks.
> Iram/mcp
>
>
>
>
> "KARL DEWEY" wrote:
>
> > Try this --
> > TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
> > Sum(tbl_CountingWhatCountsTempTable.Amount) AS CountWorker_SumAmount
> > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
> > Sum(tbl_CountingWhatCountsTempTable.Amount) AS Total_CountWorker_SumAmount
> > FROM tbl_CountingWhatCountsTempTable
> > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > PIVOT tbl_CountingWhatCountsTempTable.Category;
> >
> > --
> > Build a little, test a little.
> >
> >
> > "Iram" wrote:
> >
> > > Karl,
> > > Here you go per your request.... I need to merge the two below crosstab
> > > queries. One query counts and the other sums...
> > >
> > >
> > > Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryCounts
> > >
> > > TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) AS CountOfWorkerID
> > > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > > Count(tbl_CountingWhatCountsTempTable.WorkerID) AS [Total Of WorkerID]
> > > FROM tbl_CountingWhatCountsTempTable
> > > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > > PIVOT tbl_CountingWhatCountsTempTable.Category;
> > >
> > >
> > >
> > >
> > >
> > >
> > > Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryAmounts
> > >
> > > TRANSFORM Sum(tbl_CountingWhatCountsTempTable.Amount) AS SumOfAmount
> > > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > > Sum(tbl_CountingWhatCountsTempTable.Amount) AS Totals
> > > FROM tbl_CountingWhatCountsTempTable
> > > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > > PIVOT tbl_CountingWhatCountsTempTable.Category;
> > >
> > >
> > >
> > >
> > >
> > > Iram
> > >
> > > "KARL DEWEY" wrote:
> > >
> > > > Post the SQL of both crosstab queries by opening in design view, click on
> > > > VIEW - SQL View, highlight all, copy, and paste in a post.
> > > >
> > > > --
> > > > Build a little, test a little.
> > > >
> > > >
> > > > "Iram" wrote:
> > > >
> > > > >
> > > > > Hello,
> > > > > I have created two critical queries. One counts how many times we did
> > > > > something and the other sums the money amounts for the same "counted"
> > > > > records. The common field between both crosstab queries is TeamName.
> > > > > I need a single report that shows Counts and Amounts. How can you merge both
> > > > > of these or is there a different way around this?
> > > > >
> > > > >
> > > > > Thanks.
> > > > > Iram

 
Reply With Quote
 
Iram
Guest
Posts: n/a
 
      5th May 2010
AGAIN YOUR AWESOME!




"KARL DEWEY" wrote:

> >>The query comes up with multiples of the same team.

> Your problem is that you included tbl_CountingWhatCountsTempTable.StatsDate
> in the GROUP BY.
>
> Use just the team.
> .....
> GROUP BY tbl_CountingWhatCountsTempTable.Team
> PIVOT tbl_CountingWhatCountsTempTable.Category;
>
> --
> Build a little, test a little.
>
>
> "Iram" wrote:
>
> > KARL,
> > I created a copy of your query so that I could create a parameterized query
> > that would pull in a date range however the crosstab no longer groups the
> > "Teams". I inserted the following parameters in the Query Parameters:
> > [Forms]![frm_FormDailyReports]![BeginDate] Date/Time
> > [Forms]![frm_FormDailyReports]![EndDate] Date/Time
> >
> > The query comes up with multiples of the same team. How can I fix this. Your
> > query works beautifully and it is essential in our operations, but now I need
> > this secondary query with a date range which is also essential. Could you
> > help me fix this?
> >
> > Update query with Date Range parameter
> > PARAMETERS [Forms]![frm_FormDailyReports]![BeginDate] DateTime,
> > [Forms]![frm_FormDailyReports]![EndDate] DateTime;
> > TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) & " " &
> > Sum(tbl_CountingWhatCountsTempTable.Amount) AS CountWorker_SumAmount
> > SELECT tbl_CountingWhatCountsTempTable.Team,
> > Count(tbl_CountingWhatCountsTempTable.WorkerID) & " " &
> > Sum(tbl_CountingWhatCountsTempTable.Amount) AS [Total Counts/$]
> > FROM tbl_CountingWhatCountsTempTable
> > WHERE (((tbl_CountingWhatCountsTempTable.StatsDate) Between
> > [Forms]![frm_FormDailyReports]![BeginDate] And
> > [Forms]![frm_FormDailyReports]![EndDate]))
> > GROUP BY tbl_CountingWhatCountsTempTable.Team,
> > tbl_CountingWhatCountsTempTable.StatsDate
> > PIVOT tbl_CountingWhatCountsTempTable.Category;
> >
> >
> > Thanks.
> > Iram/mcp
> >
> >
> >
> >
> > "KARL DEWEY" wrote:
> >
> > > Try this --
> > > TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
> > > Sum(tbl_CountingWhatCountsTempTable.Amount) AS CountWorker_SumAmount
> > > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > > Count(tbl_CountingWhatCountsTempTable.WorkerID) & " -- " &
> > > Sum(tbl_CountingWhatCountsTempTable.Amount) AS Total_CountWorker_SumAmount
> > > FROM tbl_CountingWhatCountsTempTable
> > > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > > PIVOT tbl_CountingWhatCountsTempTable.Category;
> > >
> > > --
> > > Build a little, test a little.
> > >
> > >
> > > "Iram" wrote:
> > >
> > > > Karl,
> > > > Here you go per your request.... I need to merge the two below crosstab
> > > > queries. One query counts and the other sums...
> > > >
> > > >
> > > > Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryCounts
> > > >
> > > > TRANSFORM Count(tbl_CountingWhatCountsTempTable.WorkerID) AS CountOfWorkerID
> > > > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > > > Count(tbl_CountingWhatCountsTempTable.WorkerID) AS [Total Of WorkerID]
> > > > FROM tbl_CountingWhatCountsTempTable
> > > > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > > > PIVOT tbl_CountingWhatCountsTempTable.Category;
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Query Name: qry_CountingWhatCounts_RunCrosstabOnCategoryAmounts
> > > >
> > > > TRANSFORM Sum(tbl_CountingWhatCountsTempTable.Amount) AS SumOfAmount
> > > > SELECT tbl_CountingWhatCountsTempTable.TeamName,
> > > > Sum(tbl_CountingWhatCountsTempTable.Amount) AS Totals
> > > > FROM tbl_CountingWhatCountsTempTable
> > > > GROUP BY tbl_CountingWhatCountsTempTable.TeamName
> > > > PIVOT tbl_CountingWhatCountsTempTable.Category;
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Iram
> > > >
> > > > "KARL DEWEY" wrote:
> > > >
> > > > > Post the SQL of both crosstab queries by opening in design view, click on
> > > > > VIEW - SQL View, highlight all, copy, and paste in a post.
> > > > >
> > > > > --
> > > > > Build a little, test a little.
> > > > >
> > > > >
> > > > > "Iram" wrote:
> > > > >
> > > > > >
> > > > > > Hello,
> > > > > > I have created two critical queries. One counts how many times we did
> > > > > > something and the other sums the money amounts for the same "counted"
> > > > > > records. The common field between both crosstab queries is TeamName.
> > > > > > I need a single report that shows Counts and Amounts. How can you merge both
> > > > > > of these or is there a different way around this?
> > > > > >
> > > > > >
> > > > > > Thanks.
> > > > > > Iram

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Field Names: "LongName", "ShortName", "Code", "Description","Comments" PeteCresswell Microsoft Access 2 25th Feb 2009 11:41 PM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB Microsoft Excel New Users 7 13th May 2006 10:02 PM
<FORM METHOD="post" onSubmit="return fieldcheck()" name="orientation" action="http://ws-kitty.BU.edu/AT/survey/orientation/script/write.asp" language="JavaScript"> Joeyej Microsoft ASP .NET 0 4th Jun 2004 08:55 PM
Manual "Windows Update" produces "ActiveX/active scripting" error message even with "LOW" security level setting in "Trusted" Zone Ray2 Windows XP Help 1 14th Nov 2003 06:50 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:58 PM.