473,500 Members | 1,686 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Thumbnailing graphics from a sister site

I have to change the front page for a sales system I work on, and want
to use some thumbnails of wallpaper that is on a sister site.

The wallpapers are jpegs, and are 640, 800, 1024 & 1280 in size, and
range from around 100k to about 2 megs.

What I want to do is on my web page, keep the aspect ratio, but size
them to be no more than 300 pixels wide.

I've found some code to do this from a database, but can't find any that
create thumbnails on the fly.

Anyone know how to do this or have some code that'll do it?

The source filename is:

11_2006_640.jpg, 12_2006_640.jpg and so on.

Any help appreciated.

BC
Nov 15 '06 #1
6 1156
This is somewhat of a broad category. You are dealing with some
efficiency issues if you are:

(a) making a request to a server to retrieve the byte representation of
the jpg
(b) processing the image (the basic formula youre dealing with is
calculating the new Height as:

ratio = newWidth / currentWidth
newHeight = currentHeight * r;

(c) writing the newly created byte array to the output stream.
To deal with issue (a), you will probably want to look at WebRequest

To deal with issue(b), you will want to look at Bitmap class

To deal with issue(c), you will want to look at Response, in that what
you will be doing with the Bitmap in (b) is saving it to the output
stream
Make sure you're considering a proper caching strategy for this type of
on the fly processing (ie. once you have a thumbnail from the sister
site, hopefully you wouldn't need to resize it very often, if ever)

~kcf

On Nov 15, 11:12 am, Blasting Cap <goo...@christian.netwrote:
I have to change the front page for a sales system I work on, and want
to use some thumbnails of wallpaper that is on a sister site.

The wallpapers are jpegs, and are 640, 800, 1024 & 1280 in size, and
range from around 100k to about 2 megs.

What I want to do is on my web page, keep the aspect ratio, but size
them to be no more than 300 pixels wide.

I've found some code to do this from a database, but can't find any that
create thumbnails on the fly.

Anyone know how to do this or have some code that'll do it?

The source filename is:

11_2006_640.jpg, 12_2006_640.jpg and so on.

Any help appreciated.

BC
Nov 15 '06 #2
Is there any code doing part b available on the net? I had been doing
some request servervariables in the code, and when I tried to do the
webrequest, that made those stop working.

kferron wrote:
This is somewhat of a broad category. You are dealing with some
efficiency issues if you are:

(a) making a request to a server to retrieve the byte representation of
the jpg
(b) processing the image (the basic formula youre dealing with is
calculating the new Height as:

ratio = newWidth / currentWidth
newHeight = currentHeight * r;

(c) writing the newly created byte array to the output stream.
To deal with issue (a), you will probably want to look at WebRequest

To deal with issue(b), you will want to look at Bitmap class

To deal with issue(c), you will want to look at Response, in that what
you will be doing with the Bitmap in (b) is saving it to the output
stream
Make sure you're considering a proper caching strategy for this type of
on the fly processing (ie. once you have a thumbnail from the sister
site, hopefully you wouldn't need to resize it very often, if ever)

~kcf

On Nov 15, 11:12 am, Blasting Cap <goo...@christian.netwrote:
>I have to change the front page for a sales system I work on, and want
to use some thumbnails of wallpaper that is on a sister site.

The wallpapers are jpegs, and are 640, 800, 1024 & 1280 in size, and
range from around 100k to about 2 megs.

What I want to do is on my web page, keep the aspect ratio, but size
them to be no more than 300 pixels wide.

I've found some code to do this from a database, but can't find any that
create thumbnails on the fly.

Anyone know how to do this or have some code that'll do it?

The source filename is:

11_2006_640.jpg, 12_2006_640.jpg and so on.

Any help appreciated.

BC
Nov 15 '06 #3
doing a quick search i found this article that would get you started
http://west-wind.com/weblog/posts/283.aspx

Blasting Cap wrote:
Is there any code doing part b available on the net? I had been doing
some request servervariables in the code, and when I tried to do the
webrequest, that made those stop working.

kferron wrote:
This is somewhat of a broad category. You are dealing with some
efficiency issues if you are:

(a) making a request to a server to retrieve the byte representation of
the jpg
(b) processing the image (the basic formula youre dealing with is
calculating the new Height as:

ratio = newWidth / currentWidth
newHeight = currentHeight * r;

(c) writing the newly created byte array to the output stream.
To deal with issue (a), you will probably want to look at WebRequest

To deal with issue(b), you will want to look at Bitmap class

To deal with issue(c), you will want to look at Response, in that what
you will be doing with the Bitmap in (b) is saving it to the output
stream
Make sure you're considering a proper caching strategy for this type of
on the fly processing (ie. once you have a thumbnail from the sister
site, hopefully you wouldn't need to resize it very often, if ever)

~kcf

On Nov 15, 11:12 am, Blasting Cap <goo...@christian.netwrote:
I have to change the front page for a sales system I work on, and want
to use some thumbnails of wallpaper that is on a sister site.

The wallpapers are jpegs, and are 640, 800, 1024 & 1280 in size, and
range from around 100k to about 2 megs.

What I want to do is on my web page, keep the aspect ratio, but size
them to be no more than 300 pixels wide.

I've found some code to do this from a database, but can't find any that
create thumbnails on the fly.

Anyone know how to do this or have some code that'll do it?

The source filename is:

11_2006_640.jpg, 12_2006_640.jpg and so on.

Any help appreciated.

BC
Nov 15 '06 #4
I've looked at the code there, but I don't know if I'm trying to do
something that can't be easily done. All it ever does is hit the Catch
in the Thumbnail routine.

Here's the code I'm trying pull the image with:

'Dim Image As String = Request.QueryString("Image")
Dim Image As String = Session("filename")
If Image Is Nothing Then
Me.ErrorResult()
Return
End If

Dim sSize As String = Request("Size")
Dim Size As Integer = 120
If Not sSize Is Nothing Then
Size = Int32.Parse(sSize)
End If

'Dim Path As String = Server.MapPath(Request.ApplicationPath) +
"\\" + Image
Dim Path As String =
Server.UrlPathEncode("http://www.mywebsite.com/images/library/downloads/wallpaper/"
+ Image)
Dim bmp As Bitmap = CreateThumbnail(Path, Size, Size)

If bmp Is Nothing Then
Me.ErrorResult()
Return
End If

Dim OutputFilename As String = Nothing
OutputFilename = Request.QueryString("OutputFilename")

If Not OutputFilename Is Nothing Then
If Me.User.Identity.Name = "" Then
' *** Custom error display here
bmp.Dispose()
Me.ErrorResult()
End If
Try
bmp.Save(OutputFilename)
Catch ex As Exception
bmp.Dispose()
Me.ErrorResult()
Return
End Try
End If

' Put user code to initialize the page here
Response.ContentType = "image/jpeg"
bmp.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.Jpeg)
bmp.Dispose()
The only thing I'm doing differently is creating the filename, and then
where it's looking for a path, I'm giving it a URL.

The other two pieces of code (CreateThumbnail & the Errorresult) are as
they were:

Public Shared Function CreateThumbnail(ByVal lcFilename As String,
ByVal lnWidth As Integer, ByVal lnHeight As Integer) As Bitmap

Dim bmpOut As System.Drawing.Bitmap = Nothing
Try
Dim loBMP As Bitmap = New Bitmap(lcFilename)
Dim loFormat As ImageFormat = loBMP.RawFormat

Dim lnRatio As Decimal
Dim lnNewWidth As Integer = 0
Dim lnNewHeight As Integer = 0

'*** If the image is smaller than a thumbnail just return it
If loBMP.Width < lnWidth And loBMP.Height < lnHeight Then
Return loBMP
End If

If loBMP.Width loBMP.Height Then
lnRatio = CType(lnWidth / loBMP.Width, Decimal)
lnNewWidth = lnWidth
Dim lnTemp As Decimal = loBMP.Height * lnRatio
lnNewHeight = CType(lnTemp, Integer)
Else
lnRatio = CType(lnHeight / loBMP.Height, Decimal)
lnNewHeight = lnHeight
Dim lnTemp As Decimal = loBMP.Width * lnRatio
lnNewWidth = CType(lnTemp, Integer)
End If

' System.Drawing.Image imgOut =
' loBMP.GetThumbnailImage(lnNewWidth,lnNewHeight,
' null,IntPtr.Zero);
' *** This code creates cleaner (though bigger) thumbnails
and properly
' *** and handles GIF files better by generating a white
background for
' *** transparent images (as opposed to black)
bmpOut = New Bitmap(lnNewWidth, lnNewHeight)
Dim g As Graphics = Graphics.FromImage(bmpOut)
g.InterpolationMode =
System.Drawing.Drawing2D.InterpolationMode.HighQua lityBicubic
g.FillRectangle(Brushes.White, 0, 0, lnNewWidth, lnNewHeight)
g.DrawImage(loBMP, 0, 0, lnNewWidth, lnNewHeight)

loBMP.Dispose()
Catch
Return Nothing
End Try

Return bmpOut

End Function
Private Sub ErrorResult()
Response.Clear()
Response.StatusCode = 404
Response.End()
End Sub

All I really want to do is to put a thumbnail of a mm_yyyy_640.jpg
wallpaper from a sister site into a cell of a table as it's displayed on
the front page of my sales info website.

I'd appreciate any assistance in helping me figure out what's wrong with
what I'm trying to do?
BC

kferron wrote:
doing a quick search i found this article that would get you started
http://west-wind.com/weblog/posts/283.aspx

Blasting Cap wrote:
>Is there any code doing part b available on the net? I had been doing
some request servervariables in the code, and when I tried to do the
webrequest, that made those stop working.

kferron wrote:
>>This is somewhat of a broad category. You are dealing with some
efficiency issues if you are:

(a) making a request to a server to retrieve the byte representation of
the jpg
(b) processing the image (the basic formula youre dealing with is
calculating the new Height as:

ratio = newWidth / currentWidth
newHeight = currentHeight * r;

(c) writing the newly created byte array to the output stream.
To deal with issue (a), you will probably want to look at WebRequest

To deal with issue(b), you will want to look at Bitmap class

To deal with issue(c), you will want to look at Response, in that what
you will be doing with the Bitmap in (b) is saving it to the output
stream
Make sure you're considering a proper caching strategy for this type of
on the fly processing (ie. once you have a thumbnail from the sister
site, hopefully you wouldn't need to resize it very often, if ever)

~kcf

On Nov 15, 11:12 am, Blasting Cap <goo...@christian.netwrote:
I have to change the front page for a sales system I work on, and want
to use some thumbnails of wallpaper that is on a sister site.

The wallpapers are jpegs, and are 640, 800, 1024 & 1280 in size, and
range from around 100k to about 2 megs.

What I want to do is on my web page, keep the aspect ratio, but size
them to be no more than 300 pixels wide.

I've found some code to do this from a database, but can't find any that
create thumbnails on the fly.

Anyone know how to do this or have some code that'll do it?

The source filename is:

11_2006_640.jpg, 12_2006_640.jpg and so on.

Any help appreciated.

BC
Nov 16 '06 #5

What you're missing is you can't pass the path like that, you need to
get a file stream of the image youre grabbing

Blasting Cap wrote:
I've looked at the code there, but I don't know if I'm trying to do
something that can't be easily done. All it ever does is hit the Catch
in the Thumbnail routine.

Here's the code I'm trying pull the image with:

'Dim Image As String = Request.QueryString("Image")
Dim Image As String = Session("filename")
If Image Is Nothing Then
Me.ErrorResult()
Return
End If

Dim sSize As String = Request("Size")
Dim Size As Integer = 120
If Not sSize Is Nothing Then
Size = Int32.Parse(sSize)
End If

'Dim Path As String = Server.MapPath(Request.ApplicationPath) +
"\\" + Image
Dim Path As String =
Server.UrlPathEncode("http://www.mywebsite.com/images/library/downloads/wallpaper/"
+ Image)
Dim bmp As Bitmap = CreateThumbnail(Path, Size, Size)

If bmp Is Nothing Then
Me.ErrorResult()
Return
End If

Dim OutputFilename As String = Nothing
OutputFilename = Request.QueryString("OutputFilename")

If Not OutputFilename Is Nothing Then
If Me.User.Identity.Name = "" Then
' *** Custom error display here
bmp.Dispose()
Me.ErrorResult()
End If
Try
bmp.Save(OutputFilename)
Catch ex As Exception
bmp.Dispose()
Me.ErrorResult()
Return
End Try
End If

' Put user code to initialize the page here
Response.ContentType = "image/jpeg"
bmp.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.Jpeg)
bmp.Dispose()
The only thing I'm doing differently is creating the filename, and then
where it's looking for a path, I'm giving it a URL.

The other two pieces of code (CreateThumbnail & the Errorresult) are as
they were:

Public Shared Function CreateThumbnail(ByVal lcFilename As String,
ByVal lnWidth As Integer, ByVal lnHeight As Integer) As Bitmap

Dim bmpOut As System.Drawing.Bitmap = Nothing
Try
Dim loBMP As Bitmap = New Bitmap(lcFilename)
Dim loFormat As ImageFormat = loBMP.RawFormat

Dim lnRatio As Decimal
Dim lnNewWidth As Integer = 0
Dim lnNewHeight As Integer = 0

'*** If the image is smaller than a thumbnail just return it
If loBMP.Width < lnWidth And loBMP.Height < lnHeight Then
Return loBMP
End If

If loBMP.Width loBMP.Height Then
lnRatio = CType(lnWidth / loBMP.Width, Decimal)
lnNewWidth = lnWidth
Dim lnTemp As Decimal = loBMP.Height * lnRatio
lnNewHeight = CType(lnTemp, Integer)
Else
lnRatio = CType(lnHeight / loBMP.Height, Decimal)
lnNewHeight = lnHeight
Dim lnTemp As Decimal = loBMP.Width * lnRatio
lnNewWidth = CType(lnTemp, Integer)
End If

' System.Drawing.Image imgOut =
' loBMP.GetThumbnailImage(lnNewWidth,lnNewHeight,
' null,IntPtr.Zero);
' *** This code creates cleaner (though bigger) thumbnails
and properly
' *** and handles GIF files better by generating a white
background for
' *** transparent images (as opposed to black)
bmpOut = New Bitmap(lnNewWidth, lnNewHeight)
Dim g As Graphics = Graphics.FromImage(bmpOut)
g.InterpolationMode =
System.Drawing.Drawing2D.InterpolationMode.HighQua lityBicubic
g.FillRectangle(Brushes.White, 0, 0, lnNewWidth, lnNewHeight)
g.DrawImage(loBMP, 0, 0, lnNewWidth, lnNewHeight)

loBMP.Dispose()
Catch
Return Nothing
End Try

Return bmpOut

End Function
Private Sub ErrorResult()
Response.Clear()
Response.StatusCode = 404
Response.End()
End Sub

All I really want to do is to put a thumbnail of a mm_yyyy_640.jpg
wallpaper from a sister site into a cell of a table as it's displayed on
the front page of my sales info website.

I'd appreciate any assistance in helping me figure out what's wrong with
what I'm trying to do?
BC

kferron wrote:
doing a quick search i found this article that would get you started
http://west-wind.com/weblog/posts/283.aspx

Blasting Cap wrote:
Is there any code doing part b available on the net? I had been doing
some request servervariables in the code, and when I tried to do the
webrequest, that made those stop working.

kferron wrote:
This is somewhat of a broad category. You are dealing with some
efficiency issues if you are:

(a) making a request to a server to retrieve the byte representation of
the jpg
(b) processing the image (the basic formula youre dealing with is
calculating the new Height as:

ratio = newWidth / currentWidth
newHeight = currentHeight * r;

(c) writing the newly created byte array to the output stream.
To deal with issue (a), you will probably want to look at WebRequest

To deal with issue(b), you will want to look at Bitmap class

To deal with issue(c), you will want to look at Response, in that what
you will be doing with the Bitmap in (b) is saving it to the output
stream
Make sure you're considering a proper caching strategy for this type of
on the fly processing (ie. once you have a thumbnail from the sister
site, hopefully you wouldn't need to resize it very often, if ever)

~kcf

On Nov 15, 11:12 am, Blasting Cap <goo...@christian.netwrote:
I have to change the front page for a sales system I work on, and want
to use some thumbnails of wallpaper that is on a sister site.

The wallpapers are jpegs, and are 640, 800, 1024 & 1280 in size, and
range from around 100k to about 2 megs.

What I want to do is on my web page, keep the aspect ratio, but size
them to be no more than 300 pixels wide.

I've found some code to do this from a database, but can't find any that
create thumbnails on the fly.

Anyone know how to do this or have some code that'll do it?

The source filename is:

11_2006_640.jpg, 12_2006_640.jpg and so on.

Any help appreciated.

BC
Nov 16 '06 #6

What you're missing is you can't pass the path like that, you need to
get a file stream of the image youre grabbing

Blasting Cap wrote:
I've looked at the code there, but I don't know if I'm trying to do
something that can't be easily done. All it ever does is hit the Catch
in the Thumbnail routine.

Here's the code I'm trying pull the image with:

'Dim Image As String = Request.QueryString("Image")
Dim Image As String = Session("filename")
If Image Is Nothing Then
Me.ErrorResult()
Return
End If

Dim sSize As String = Request("Size")
Dim Size As Integer = 120
If Not sSize Is Nothing Then
Size = Int32.Parse(sSize)
End If

'Dim Path As String = Server.MapPath(Request.ApplicationPath) +
"\\" + Image
Dim Path As String =
Server.UrlPathEncode("http://www.mywebsite.com/images/library/downloads/wallpaper/"
+ Image)
Dim bmp As Bitmap = CreateThumbnail(Path, Size, Size)

If bmp Is Nothing Then
Me.ErrorResult()
Return
End If

Dim OutputFilename As String = Nothing
OutputFilename = Request.QueryString("OutputFilename")

If Not OutputFilename Is Nothing Then
If Me.User.Identity.Name = "" Then
' *** Custom error display here
bmp.Dispose()
Me.ErrorResult()
End If
Try
bmp.Save(OutputFilename)
Catch ex As Exception
bmp.Dispose()
Me.ErrorResult()
Return
End Try
End If

' Put user code to initialize the page here
Response.ContentType = "image/jpeg"
bmp.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.Jpeg)
bmp.Dispose()
The only thing I'm doing differently is creating the filename, and then
where it's looking for a path, I'm giving it a URL.

The other two pieces of code (CreateThumbnail & the Errorresult) are as
they were:

Public Shared Function CreateThumbnail(ByVal lcFilename As String,
ByVal lnWidth As Integer, ByVal lnHeight As Integer) As Bitmap

Dim bmpOut As System.Drawing.Bitmap = Nothing
Try
Dim loBMP As Bitmap = New Bitmap(lcFilename)
Dim loFormat As ImageFormat = loBMP.RawFormat

Dim lnRatio As Decimal
Dim lnNewWidth As Integer = 0
Dim lnNewHeight As Integer = 0

'*** If the image is smaller than a thumbnail just return it
If loBMP.Width < lnWidth And loBMP.Height < lnHeight Then
Return loBMP
End If

If loBMP.Width loBMP.Height Then
lnRatio = CType(lnWidth / loBMP.Width, Decimal)
lnNewWidth = lnWidth
Dim lnTemp As Decimal = loBMP.Height * lnRatio
lnNewHeight = CType(lnTemp, Integer)
Else
lnRatio = CType(lnHeight / loBMP.Height, Decimal)
lnNewHeight = lnHeight
Dim lnTemp As Decimal = loBMP.Width * lnRatio
lnNewWidth = CType(lnTemp, Integer)
End If

' System.Drawing.Image imgOut =
' loBMP.GetThumbnailImage(lnNewWidth,lnNewHeight,
' null,IntPtr.Zero);
' *** This code creates cleaner (though bigger) thumbnails
and properly
' *** and handles GIF files better by generating a white
background for
' *** transparent images (as opposed to black)
bmpOut = New Bitmap(lnNewWidth, lnNewHeight)
Dim g As Graphics = Graphics.FromImage(bmpOut)
g.InterpolationMode =
System.Drawing.Drawing2D.InterpolationMode.HighQua lityBicubic
g.FillRectangle(Brushes.White, 0, 0, lnNewWidth, lnNewHeight)
g.DrawImage(loBMP, 0, 0, lnNewWidth, lnNewHeight)

loBMP.Dispose()
Catch
Return Nothing
End Try

Return bmpOut

End Function
Private Sub ErrorResult()
Response.Clear()
Response.StatusCode = 404
Response.End()
End Sub

All I really want to do is to put a thumbnail of a mm_yyyy_640.jpg
wallpaper from a sister site into a cell of a table as it's displayed on
the front page of my sales info website.

I'd appreciate any assistance in helping me figure out what's wrong with
what I'm trying to do?
BC

kferron wrote:
doing a quick search i found this article that would get you started
http://west-wind.com/weblog/posts/283.aspx

Blasting Cap wrote:
Is there any code doing part b available on the net? I had been doing
some request servervariables in the code, and when I tried to do the
webrequest, that made those stop working.

kferron wrote:
This is somewhat of a broad category. You are dealing with some
efficiency issues if you are:

(a) making a request to a server to retrieve the byte representation of
the jpg
(b) processing the image (the basic formula youre dealing with is
calculating the new Height as:

ratio = newWidth / currentWidth
newHeight = currentHeight * r;

(c) writing the newly created byte array to the output stream.
To deal with issue (a), you will probably want to look at WebRequest

To deal with issue(b), you will want to look at Bitmap class

To deal with issue(c), you will want to look at Response, in that what
you will be doing with the Bitmap in (b) is saving it to the output
stream
Make sure you're considering a proper caching strategy for this type of
on the fly processing (ie. once you have a thumbnail from the sister
site, hopefully you wouldn't need to resize it very often, if ever)

~kcf

On Nov 15, 11:12 am, Blasting Cap <goo...@christian.netwrote:
I have to change the front page for a sales system I work on, and want
to use some thumbnails of wallpaper that is on a sister site.

The wallpapers are jpegs, and are 640, 800, 1024 & 1280 in size, and
range from around 100k to about 2 megs.

What I want to do is on my web page, keep the aspect ratio, but size
them to be no more than 300 pixels wide.

I've found some code to do this from a database, but can't find any that
create thumbnails on the fly.

Anyone know how to do this or have some code that'll do it?

The source filename is:

11_2006_640.jpg, 12_2006_640.jpg and so on.

Any help appreciated.

BC
Nov 16 '06 #7

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

Similar topics

4
1459
by: .: DeVa :. | last post by:
Need recomendation for script that would dynamicly create thumbnails from pictures in certain directory, and automaticly genreate link to original pictures... Tuts are also welcom... TNX. ...
9
1679
by: Devin | last post by:
I'm using frontpage as the editor. The first button opens a new browser and loads the jpg for each button. The second button opens the new browser but don't load up the graphics. Why? ...
14
2031
by: rogerclive | last post by:
Perhaps, there is no bigger sleazy company in the entire Maple Republic ( Canada ) than Matrox Graphics Inc. I paid $100+ through my nose circa 1999 for Matrox Millenium II and Mystique. It...
7
2532
by: DotNetDeveloper | last post by:
Does anyone have any opinion about this book: ".NET Graphics and Printing" Peter G. Aitken ISBN 1931097043 http://www.amazon.com/exec/obidos/ASIN/1931097046/ Can someone new to both...
5
2203
by: Carlos Ojea Castro | last post by:
Hello: I want to display graphics from my postgresql database, but I must choose the proper tool first. Which one is more suitable?: perl? php? pg_autodoc? another one?
3
2240
by: rangermccoy | last post by:
Hello there, What are the best php/c libraries for handling media including images, video, and music? I would like to manipulate media dfiles, including watermarking, thumbnailing,...
7
3008
by: Michael Galvin | last post by:
I am trying to use Python to send to the printer a calender filled with a mix of text and simple graphics. I want to draw on the printed page something like a table with 6 rows and 7 columns to...
3
1140
by: philleep | last post by:
Hi, Someone told me that you can do auto thumbnailing in php. How? cheer, Philleep
7
10049
by: Brian Ward | last post by:
I am trying to get to grips with some basic graphics, being new to C#. I have this code (see below) in a simple project .. when I run it 6 text strings are drawn, as I expected .. but this happens...
0
7134
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,...
0
7014
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7229
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...
1
6905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7395
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...
0
3108
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...
0
3103
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1429
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 ...
0
311
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...

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.