473,699 Members | 2,664 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Grouping & Sum of result page

Hi,

I have an asp page which prints data as follows:
The sum in brackets is a calculated result on the page, SQ *
RS2("SelectorQt y"), a variable SQ which holds a qty multiplied by a
record value

96 (50)
104 (50)
96 (100)
104 (100)
96 (100)
104 (100)
96 (100)

What I want to be able to do is print the page like this:

96 = 350 (where 350 is the sum of all items displayed as 96)
104 = 350 (where 350 is the sum of all items displayed as 104)

I would be very grateful for any help on this.
I cannot work out how to group or sum in the query as I have the first
SQL statement pulling data, then a second within the loop pulling the
number 96 & 104, then a calculation with done between data from both
SQL statements.

Thanks

Sep 25 '06 #1
5 1641
I'd think that you could do this at the database level, but it's hard to say
without seeing the database. So, for a code solution, this may be one of
the rare instances that a dictionary object comes into use.

Dim oDict
Set oDict = CreateObject("S cripting.Dictio nary")
Do While Not yourRecordset.E OF
sKey = yourRecordset.F ields.Item(0).V alue
sValue = yourRecordset.F ields.Item(1).V alue

If oDict.Exists(sK ey) Then
oDict(sKey) = CLng(oDict(sKey )) + CLng(sValue)
Else
oDict(sKey) = sValue
End If
yourRecordset.M oveNext
Loop

For Each oKey in oDict.Keys
Response.Write oKey & " = " & oDict(oKey) & "<br />"
Next
Set oDict = Nothing

Ray at work


"David" <da*********@sc ene-double.co.ukwro te in message
news:11******** **************@ m73g2000cwd.goo glegroups.com.. .
Hi,

I have an asp page which prints data as follows:
The sum in brackets is a calculated result on the page, SQ *
RS2("SelectorQt y"), a variable SQ which holds a qty multiplied by a
record value

96 (50)
104 (50)
96 (100)
104 (100)
96 (100)
104 (100)
96 (100)

What I want to be able to do is print the page like this:

96 = 350 (where 350 is the sum of all items displayed as 96)
104 = 350 (where 350 is the sum of all items displayed as 104)

I would be very grateful for any help on this.
I cannot work out how to group or sum in the query as I have the first
SQL statement pulling data, then a second within the loop pulling the
number 96 & 104, then a calculation with done between data from both
SQL statements.

Thanks

Sep 25 '06 #2
Ray,

Thanks for the reply,

The page worked with your code, but i'm not exactly sure how or what it
produced:
It displayed the first field in my SQL (customername) and then = a
number, for each customer.

I need it to list , SelectorName (A) = sum of qty for SelectorName A
etc

Please can you explain further ?

Thanks

-------------------------------------------------------------------------------------------------------

Ray Costanzo [MVP] wrote:
I'd think that you could do this at the database level, but it's hard to say
without seeing the database. So, for a code solution, this may be one of
the rare instances that a dictionary object comes into use.

Dim oDict
Set oDict = CreateObject("S cripting.Dictio nary")
Do While Not yourRecordset.E OF
sKey = yourRecordset.F ields.Item(0).V alue
sValue = yourRecordset.F ields.Item(1).V alue

If oDict.Exists(sK ey) Then
oDict(sKey) = CLng(oDict(sKey )) + CLng(sValue)
Else
oDict(sKey) = sValue
End If
yourRecordset.M oveNext
Loop

For Each oKey in oDict.Keys
Response.Write oKey & " = " & oDict(oKey) & "<br />"
Next
Set oDict = Nothing

Ray at work


"David" <da*********@sc ene-double.co.ukwro te in message
news:11******** **************@ m73g2000cwd.goo glegroups.com.. .
Hi,

I have an asp page which prints data as follows:
The sum in brackets is a calculated result on the page, SQ *
RS2("SelectorQt y"), a variable SQ which holds a qty multiplied by a
record value

96 (50)
104 (50)
96 (100)
104 (100)
96 (100)
104 (100)
96 (100)

What I want to be able to do is print the page like this:

96 = 350 (where 350 is the sum of all items displayed as 96)
104 = 350 (where 350 is the sum of all items displayed as 104)

I would be very grateful for any help on this.
I cannot work out how to group or sum in the query as I have the first
SQL statement pulling data, then a second within the loop pulling the
number 96 & 104, then a calculation with done between data from both
SQL statements.

Thanks
Sep 25 '06 #3
Can you explain the database design and show the code that you're using now
to get the data?

Ray at work

"David" <da*********@sc ene-double.co.ukwro te in message
news:11******** **************@ i42g2000cwa.goo glegroups.com.. .
Ray,

Thanks for the reply,

The page worked with your code, but i'm not exactly sure how or what it
produced:
It displayed the first field in my SQL (customername) and then = a
number, for each customer.

I need it to list , SelectorName (A) = sum of qty for SelectorName A
etc

Please can you explain further ?

Thanks

-------------------------------------------------------------------------------------------------------

Ray Costanzo [MVP] wrote:
>I'd think that you could do this at the database level, but it's hard to
say
without seeing the database. So, for a code solution, this may be one of
the rare instances that a dictionary object comes into use.

Dim oDict
Set oDict = CreateObject("S cripting.Dictio nary")
Do While Not yourRecordset.E OF
sKey = yourRecordset.F ields.Item(0).V alue
sValue = yourRecordset.F ields.Item(1).V alue

If oDict.Exists(sK ey) Then
oDict(sKey) = CLng(oDict(sKey )) + CLng(sValue)
Else
oDict(sKey) = sValue
End If
yourRecordset.M oveNext
Loop

For Each oKey in oDict.Keys
Response.Write oKey & " = " & oDict(oKey) & "<br />"
Next
Set oDict = Nothing

Ray at work


"David" <da*********@sc ene-double.co.ukwro te in message
news:11******* *************** @m73g2000cwd.go oglegroups.com. ..
Hi,

I have an asp page which prints data as follows:
The sum in brackets is a calculated result on the page, SQ *
RS2("SelectorQt y"), a variable SQ which holds a qty multiplied by a
record value

96 (50)
104 (50)
96 (100)
104 (100)
96 (100)
104 (100)
96 (100)

What I want to be able to do is print the page like this:

96 = 350 (where 350 is the sum of all items displayed as 96)
104 = 350 (where 350 is the sum of all items displayed as 104)

I would be very grateful for any help on this.
I cannot work out how to group or sum in the query as I have the first
SQL statement pulling data, then a second within the loop pulling the
number 96 & 104, then a calculation with done between data from both
SQL statements.

Thanks

Sep 25 '06 #4
Thanks Ray,

Each customer has many orders
Each order has many orderlines
Each orderline has 1 product
Each product has 1 or more MetalCodes (SelectorNames)
Each SelectorName for that Product has a qty required (SelectorQty)
Each orderline may be scheduled over various dates with ShipETA &
ShipQty

--------------------------------

Basically this page is to total metalwork used for each product on
order.

i.e. product A may be made of the following METALWORK CODES:
19 x 1 piece
30 x 1 piece

Product B
115 x 1 piece
67 x 1 piece
98 x 1 piece

Each product is assigned to an orderline of an order.
i.e. there may be an order for a customer of:

Product B x 10 (ShipQty)
product B requires the following metalwork
115 x 1 piece (this is Selector Name * SelectorQty)
67 x 1 piece
98 x 1 piece

so,

We require a total of
115 x 10 pieces (this is SelectorQty x ShipQty). ShipQty is the amount
of that product which uses code 115 for that particular order.

67 x 10 pieces
98 x 10 pieces

for this single orderline, but, the 10 x Product B required are split
over various scheduled dates. (ShipQty)
We may require 5 (ShipQty) this Friday and 5 (ShipQty) next Friday, but
i'm just interested in the total sum of all (SelectorQty x ShipQty) for
each Metal code.

So there will always be the same metalwork codes in the system, just
linked to different orders and quantities.

I need to write out all the metalwork codes, and print next to each one
the sum of all the different orders that uses that code

i.e.

for the above order we need
code 115 x 10 pieces

for another 30 orders we may also need code 115 in various other
quantities, which need to be totalled up.

Your dictionary code listed all the metal codes correctly and some of
the figures were even correct, but only 6 out of about 15 tested, so
something is still wrong somewhere.

I am using the following SQL statement:

-----------------------

strQuery = "SELECT metalselector.S electorName, SUM(SelectorQty *ShipQty)
AS TotalMW, metalselector.S electorQty, Customers.Custo merName,
OrderLines.JobN umber, Orders.PONumber , OrderLines.Orde rQuantity,
Sum(StockMoveme nts.QtyShipped) AS SumOfQtyShipped ,
OrderQuantity-Sum(QtyShipped) AS RemainingUnits, OrderLines.Orde rNotes,
Products.Produc tRangeID, OrderLines.Sele ctAll, PCBForecast.Shi pQty,
Products.ProdCo de, PCBForecast.Hel dMarker, Products.Produc tID,
PCBForecast.Shi pETA"

strQuery = strQuery & " FROM ((Customers INNER JOIN (Orders INNER JOIN
(Products INNER JOIN (OrderLines INNER JOIN StockMovements ON
OrderLines.JobN umber = StockMovements. JobNumber) ON (Products.Produ ctID
= OrderLines.Prod uctID) AND (Products.Produ ctID =
OrderLines.Prod uctID)) ON Orders.OrderID = OrderLines.Orde rID) ON
Customers.Custo merID = Orders.Customer ID) INNER JOIN PCBForecast ON
OrderLines.JobN umber = PCBForecast.Job Number) INNER JOIN metalselector
ON Products.Produc tID = metalselector.P roductID"

strQuery = strQuery & " GROUP BY metalselector.S electorName,
Customers.Custo merName, OrderLines.JobN umber, Orders.PONumber ,
OrderLines.Orde rQuantity, OrderLines.Orde rNotes,
Products.Produc tRangeID, OrderLines.Sele ctAll, PCBForecast.Shi pQty,
Products.ProdCo de, PCBForecast.Hel dMarker, Products.Produc tID,
PCBForecast.Shi pETA, metalselector.S electorQty"

strQuery = strQuery & " HAVING ((OrderQuantity-Sum(QtyShipped) >=0) AND
(OrderLines.Sel ectAll=-1) AND (PCBForecast.He ldMarker='Sched uled'))"

strQuery = strQuery & " ORDER BY SelectorName;"

Set RS = adoDataConn.Exe cute(strQuery)

-------------------------------

Your code gives me a resulting list as, in metalwork (SelectorName
order)
But most of the figures are incorrect.

1 = 2220
2 = 2668
3 = 18
4 = 9
5 = 27
6 = 300
7 = 420
8 = 933
9 = 264
10 = 18
11 = 460
12 = 31
19 = 3
20 = 3
Thanks
David

-------------------------------------------------------------
Ray Costanzo [MVP] wrote:
Can you explain the database design and show the code that you're using now
to get the data?

Ray at work

"David" <da*********@sc ene-double.co.ukwro te in message
news:11******** **************@ i42g2000cwa.goo glegroups.com.. .
Ray,

Thanks for the reply,

The page worked with your code, but i'm not exactly sure how or what it
produced:
It displayed the first field in my SQL (customername) and then = a
number, for each customer.

I need it to list , SelectorName (A) = sum of qty for SelectorName A
etc

Please can you explain further ?

Thanks

-------------------------------------------------------------------------------------------------------

Ray Costanzo [MVP] wrote:
I'd think that you could do this at the database level, but it's hard to
say
without seeing the database. So, for a code solution, this may be one of
the rare instances that a dictionary object comes into use.

Dim oDict
Set oDict = CreateObject("S cripting.Dictio nary")
Do While Not yourRecordset.E OF
sKey = yourRecordset.F ields.Item(0).V alue
sValue = yourRecordset.F ields.Item(1).V alue

If oDict.Exists(sK ey) Then
oDict(sKey) = CLng(oDict(sKey )) + CLng(sValue)
Else
oDict(sKey) = sValue
End If
yourRecordset.M oveNext
Loop

For Each oKey in oDict.Keys
Response.Write oKey & " = " & oDict(oKey) & "<br />"
Next
Set oDict = Nothing

Ray at work


"David" <da*********@sc ene-double.co.ukwro te in message
news:11******** **************@ m73g2000cwd.goo glegroups.com.. .
Hi,

I have an asp page which prints data as follows:
The sum in brackets is a calculated result on the page, SQ *
RS2("SelectorQt y"), a variable SQ which holds a qty multiplied by a
record value

96 (50)
104 (50)
96 (100)
104 (100)
96 (100)
104 (100)
96 (100)

What I want to be able to do is print the page like this:

96 = 350 (where 350 is the sum of all items displayed as 96)
104 = 350 (where 350 is the sum of all items displayed as 104)

I would be very grateful for any help on this.
I cannot work out how to group or sum in the query as I have the first
SQL statement pulling data, then a second within the loop pulling the
number 96 & 104, then a calculation with done between data from both
SQL statements.

Thanks
Sep 25 '06 #5
No worries, i've fixed it hopefully, the problem was to do with using
sum in the SQL.
Your code works a treat ..... even though I have never used this
object, .... cool... nice one !

David wrote:
Thanks Ray,

Each customer has many orders
Each order has many orderlines
Each orderline has 1 product
Each product has 1 or more MetalCodes (SelectorNames)
Each SelectorName for that Product has a qty required (SelectorQty)
Each orderline may be scheduled over various dates with ShipETA &
ShipQty

--------------------------------

Basically this page is to total metalwork used for each product on
order.

i.e. product A may be made of the following METALWORK CODES:
19 x 1 piece
30 x 1 piece

Product B
115 x 1 piece
67 x 1 piece
98 x 1 piece

Each product is assigned to an orderline of an order.
i.e. there may be an order for a customer of:

Product B x 10 (ShipQty)
product B requires the following metalwork
115 x 1 piece (this is Selector Name * SelectorQty)
67 x 1 piece
98 x 1 piece

so,

We require a total of
115 x 10 pieces (this is SelectorQty x ShipQty). ShipQty is the amount
of that product which uses code 115 for that particular order.

67 x 10 pieces
98 x 10 pieces

for this single orderline, but, the 10 x Product B required are split
over various scheduled dates. (ShipQty)
We may require 5 (ShipQty) this Friday and 5 (ShipQty) next Friday, but
i'm just interested in the total sum of all (SelectorQty x ShipQty) for
each Metal code.

So there will always be the same metalwork codes in the system, just
linked to different orders and quantities.

I need to write out all the metalwork codes, and print next to each one
the sum of all the different orders that uses that code

i.e.

for the above order we need
code 115 x 10 pieces

for another 30 orders we may also need code 115 in various other
quantities, which need to be totalled up.

Your dictionary code listed all the metal codes correctly and some of
the figures were even correct, but only 6 out of about 15 tested, so
something is still wrong somewhere.

I am using the following SQL statement:

-----------------------

strQuery = "SELECT metalselector.S electorName, SUM(SelectorQty *ShipQty)
AS TotalMW, metalselector.S electorQty, Customers.Custo merName,
OrderLines.JobN umber, Orders.PONumber , OrderLines.Orde rQuantity,
Sum(StockMoveme nts.QtyShipped) AS SumOfQtyShipped ,
OrderQuantity-Sum(QtyShipped) AS RemainingUnits, OrderLines.Orde rNotes,
Products.Produc tRangeID, OrderLines.Sele ctAll, PCBForecast.Shi pQty,
Products.ProdCo de, PCBForecast.Hel dMarker, Products.Produc tID,
PCBForecast.Shi pETA"

strQuery = strQuery & " FROM ((Customers INNER JOIN (Orders INNER JOIN
(Products INNER JOIN (OrderLines INNER JOIN StockMovements ON
OrderLines.JobN umber = StockMovements. JobNumber) ON (Products.Produ ctID
= OrderLines.Prod uctID) AND (Products.Produ ctID =
OrderLines.Prod uctID)) ON Orders.OrderID = OrderLines.Orde rID) ON
Customers.Custo merID = Orders.Customer ID) INNER JOIN PCBForecast ON
OrderLines.JobN umber = PCBForecast.Job Number) INNER JOIN metalselector
ON Products.Produc tID = metalselector.P roductID"

strQuery = strQuery & " GROUP BY metalselector.S electorName,
Customers.Custo merName, OrderLines.JobN umber, Orders.PONumber ,
OrderLines.Orde rQuantity, OrderLines.Orde rNotes,
Products.Produc tRangeID, OrderLines.Sele ctAll, PCBForecast.Shi pQty,
Products.ProdCo de, PCBForecast.Hel dMarker, Products.Produc tID,
PCBForecast.Shi pETA, metalselector.S electorQty"

strQuery = strQuery & " HAVING ((OrderQuantity-Sum(QtyShipped) >=0) AND
(OrderLines.Sel ectAll=-1) AND (PCBForecast.He ldMarker='Sched uled'))"

strQuery = strQuery & " ORDER BY SelectorName;"

Set RS = adoDataConn.Exe cute(strQuery)

-------------------------------

Your code gives me a resulting list as, in metalwork (SelectorName
order)
But most of the figures are incorrect.

1 = 2220
2 = 2668
3 = 18
4 = 9
5 = 27
6 = 300
7 = 420
8 = 933
9 = 264
10 = 18
11 = 460
12 = 31
19 = 3
20 = 3
Thanks
David

-------------------------------------------------------------
Ray Costanzo [MVP] wrote:
Can you explain the database design and show the code that you're using now
to get the data?

Ray at work

"David" <da*********@sc ene-double.co.ukwro te in message
news:11******** **************@ i42g2000cwa.goo glegroups.com.. .
Ray,
>
Thanks for the reply,
>
The page worked with your code, but i'm not exactly sure how or what it
produced:
It displayed the first field in my SQL (customername) and then = a
number, for each customer.
>
I need it to list , SelectorName (A) = sum of qty for SelectorName A
etc
>
Please can you explain further ?
>
Thanks
>
-------------------------------------------------------------------------------------------------------
>
>
>
Ray Costanzo [MVP] wrote:
>I'd think that you could do this at the database level, but it's hard to
>say
>without seeing the database. So, for a code solution, this may be one of
>the rare instances that a dictionary object comes into use.
>>
>Dim oDict
>Set oDict = CreateObject("S cripting.Dictio nary")
>>
>>
>Do While Not yourRecordset.E OF
> sKey = yourRecordset.F ields.Item(0).V alue
> sValue = yourRecordset.F ields.Item(1).V alue
>>
> If oDict.Exists(sK ey) Then
> oDict(sKey) = CLng(oDict(sKey )) + CLng(sValue)
> Else
> oDict(sKey) = sValue
> End If
> yourRecordset.M oveNext
>Loop
>>
>For Each oKey in oDict.Keys
> Response.Write oKey & " = " & oDict(oKey) & "<br />"
>Next
>Set oDict = Nothing
>>
>Ray at work
>>
>>
>>
>>
>"David" <da*********@sc ene-double.co.ukwro te in message
>news:11******* *************** @m73g2000cwd.go oglegroups.com. ..
Hi,
>
I have an asp page which prints data as follows:
The sum in brackets is a calculated result on the page, SQ *
RS2("SelectorQt y"), a variable SQ which holds a qty multiplied by a
record value
>
96 (50)
104 (50)
96 (100)
104 (100)
96 (100)
104 (100)
96 (100)
>
What I want to be able to do is print the page like this:
>
96 = 350 (where 350 is the sum of all items displayed as 96)
104 = 350 (where 350 is the sum of all items displayed as 104)
>
I would be very grateful for any help on this.
I cannot work out how to group or sum in the query as I have the first
SQL statement pulling data, then a second within the loop pulling the
number 96 & 104, then a calculation with done between data from both
SQL statements.
>
Thanks
>
>
Sep 25 '06 #6

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

Similar topics

6
8078
by: cjm | last post by:
I need to group records and assign a setid to the group. I have a table with data that looks like this ColA ColB 94015 01065 94016 01065 94015 01085 94015 01086 33383 00912 32601 00912
3
1811
by: Graham | last post by:
Hi, I am having trouble getting XSL to count the members of a group. What I am trying to do is group by <objectid.Contactid> and count the number of <activityid>'s for each <objectid.contactid>. My XSL keeps returning zero for the count. The results for the XML/XSLT files below should look like:- Contact # of Visits Account ----------------------------------------------------------
5
1605
by: Mike King | last post by:
I don't know how to group the following data in the way I want it. I want the output of the transformation to be "5678". Does anyone know what I am doing worry? <?xml version="1.0"?> <data> <unit sn="5"> <test-a> <result id="0">5</result> </test-a>
3
2735
by: ahaque38 | last post by:
Hello. Using A2K SP3, I am having the following problem with a report using "Sorting and Grouping". I have recently added a grouping in the reports for "Category2<>'CONTRACTS'". I have reports at the plan (overall totals), department and division levels which have sorting and grouping implemented with this new
0
2255
by: ward | last post by:
Greetings. Ok, I admit it, I bit off a bit more than I can chew. I need to complete this "Generate Report" page for my employer and I'm a little over my head. I could use some additional assistance. I say additional because I've already had help which is greatly appreciated. I do try to take the time and understand the provided script in hopes on not having to trouble others on those. But here it goes...
12
10104
by: InvalidLastName | last post by:
We have been used XslTransform. .NET 1.1, for transform XML document, Dataset with xsl to HTML. Some of these html contents contain javascript and links. For example: // javascript if (a &gt; b) ..... // xsl contents abc.aspx?p1=v1&amp;p2=<xsl:value-of select="$v2" />
0
5569
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted ******************************************************** For this teeny job, please refer to: http://feeds.reddit.com/feed/8fu/?o=25
1
5690
by: Sandeep Singh | last post by:
Hi, How to do group by in XSLT ? I tried on the following codes: <files> <file name="swablr.eps" size="4313" project="mars"/> <file name="batboy.wks" size="424" project="neptune"/> <file name="potrzebie.dbf" size="1102" project="jupiter"/>
0
1754
by: Leira | last post by:
Hi, I have a problem with grouping. My source XML has <record> elements that have a @name and a @group attribute. It looks something like this: <root> <result> <record name="test1" group="group1"><value>1A</value></record> <record name="test2" group="group1"><value>1B</value></record> <record name="test3" group="group1"><value>1C</value></record> <record name="test1" group="group2"><value>2A</value></record>
0
8618
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
9178
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8885
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
7752
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
6534
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
4376
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...
0
4631
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3058
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
3
2010
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.