473,398 Members | 2,165 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Placing an image on a Panel

I'm a newbie to .NET from VB6.

I have a Form with a Panel control on it. When the Form loads it maximizes
and so does the Panel control. I then fill an array with the path to images
at a specific folder. At that point a timer fires every x seconds which
calls a routine that draws an image onto the Panel. This works great the
first time the code runs. But each subsquent timer event fails to load a new
image --it is always the same image (which is the first one it loaded). Of
course, I stepped through the code and can clearly see a new image is being
drawn each time after first clearing the old one. Yet, it is always the same
image. Is there something about a Panel that will not load a new image? I
set a watch on the array which references the image to load. When I was
stepping through my code I noticed in the Watch window that on the first run
through the Watch window showed the array value in black text. On the next
run through --and all subsquent ones-- it was in red text. No warnings or
anything it was just in red text. Is that significant? I could find no docs
on what the meaning of this in the Watch window could be. My code is this:

Private Sub DrawTheImage()

Dim Photo As Short

Dim PanelGraphic As Graphics = pnlImage.CreateGraphics

PanelGraphic.Clear(Color.Black)

Try

Photo = RandomNumber(ss.Pics.Count)

Dim newImage As Bitmap =
Bitmap.FromFile(ss.Pics(Photo).FullName)

Dim x As Integer
Dim y As Integer
Dim wid As Integer
Dim hgt As Integer

If (newImage.Height / newImage.Width) (pnlImage.Height /
pnlImage.Width) Then

' The new image is relatively tall and thin.
' Make the image as tall as possible.
hgt = pnlImage.ClientSize.Height
wid = CInt(hgt * newImage.Width / newImage.Height)

Else

' The new image is relatively short and wide.
' Make the image as wide as possible.
wid = pnlImage.ClientSize.Width
hgt = CInt(wid * newImage.Height / newImage.Width)

End If

x = (pnlImage.Width - wid) \ 2
y = (pnlImage.Height - hgt) \ 2

PanelGraphic.DrawImage(newImage, x, y, wid, hgt)

newImage.Dispose()
PanelGraphic.Dispose()

Catch ex As Exception

'DrawErrorImage()

End Try

End Sub
Sep 12 '07 #1
6 1496
On Sep 11, 8:21 pm, "Jerry West" <j...@comcast.netwrote:
I'm a newbie to .NET from VB6.

I have a Form with a Panel control on it. When the Form loads it maximizes
and so does the Panel control. I then fill an array with the path to images
at a specific folder. At that point a timer fires every x seconds which
calls a routine that draws an image onto the Panel. This works great the
first time the code runs. But each subsquent timer event fails to load a new
image --it is always the same image (which is the first one it loaded). Of
course, I stepped through the code and can clearly see a new image is being
drawn each time after first clearing the old one. Yet, it is always the same
image. Is there something about a Panel that will not load a new image? I
set a watch on the array which references the image to load. When I was
stepping through my code I noticed in the Watch window that on the first run
through the Watch window showed the array value in black text. On the next
run through --and all subsquent ones-- it was in red text. No warnings or
anything it was just in red text. Is that significant? I could find no docs
on what the meaning of this in the Watch window could be. My code is this:

Private Sub DrawTheImage()

Dim Photo As Short

Dim PanelGraphic As Graphics = pnlImage.CreateGraphics

PanelGraphic.Clear(Color.Black)

Try

Photo = RandomNumber(ss.Pics.Count)

Dim newImage As Bitmap =
Bitmap.FromFile(ss.Pics(Photo).FullName)

Dim x As Integer
Dim y As Integer
Dim wid As Integer
Dim hgt As Integer

If (newImage.Height / newImage.Width) (pnlImage.Height /
pnlImage.Width) Then

' The new image is relatively tall and thin.
' Make the image as tall as possible.
hgt = pnlImage.ClientSize.Height
wid = CInt(hgt * newImage.Width / newImage.Height)

Else

' The new image is relatively short and wide.
' Make the image as wide as possible.
wid = pnlImage.ClientSize.Width
hgt = CInt(wid * newImage.Height / newImage.Width)

End If

x = (pnlImage.Width - wid) \ 2
y = (pnlImage.Height - hgt) \ 2

PanelGraphic.DrawImage(newImage, x, y, wid, hgt)

newImage.Dispose()
PanelGraphic.Dispose()

Catch ex As Exception

'DrawErrorImage()

End Try

End Sub
What happens if you remove the "PanelGraphic.Dispose()" call?

Thanks,

Seth Rowe

Sep 12 '07 #2
Tried removing it but same results. I'm at a loss to know why? It seems the
red text of the watch item which provides the path to the next image to load
is significant. I have verified the path is correct and valid.

If anyone has any suggestions I'd love to hear them!

JW

"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@k79g2000hse.googlegr oups.com...
On Sep 11, 8:21 pm, "Jerry West" <j...@comcast.netwrote:
>I'm a newbie to .NET from VB6.

I have a Form with a Panel control on it. When the Form loads it
maximizes
and so does the Panel control. I then fill an array with the path to
images
at a specific folder. At that point a timer fires every x seconds which
calls a routine that draws an image onto the Panel. This works great the
first time the code runs. But each subsquent timer event fails to load a
new
image --it is always the same image (which is the first one it loaded).
Of
course, I stepped through the code and can clearly see a new image is
being
drawn each time after first clearing the old one. Yet, it is always the
same
image. Is there something about a Panel that will not load a new image? I
set a watch on the array which references the image to load. When I was
stepping through my code I noticed in the Watch window that on the first
run
through the Watch window showed the array value in black text. On the
next
run through --and all subsquent ones-- it was in red text. No warnings or
anything it was just in red text. Is that significant? I could find no
docs
on what the meaning of this in the Watch window could be. My code is
this:

Private Sub DrawTheImage()

Dim Photo As Short

Dim PanelGraphic As Graphics = pnlImage.CreateGraphics

PanelGraphic.Clear(Color.Black)

Try

Photo = RandomNumber(ss.Pics.Count)

Dim newImage As Bitmap =
Bitmap.FromFile(ss.Pics(Photo).FullName)

Dim x As Integer
Dim y As Integer
Dim wid As Integer
Dim hgt As Integer

If (newImage.Height / newImage.Width) (pnlImage.Height /
pnlImage.Width) Then

' The new image is relatively tall and thin.
' Make the image as tall as possible.
hgt = pnlImage.ClientSize.Height
wid = CInt(hgt * newImage.Width / newImage.Height)

Else

' The new image is relatively short and wide.
' Make the image as wide as possible.
wid = pnlImage.ClientSize.Width
hgt = CInt(wid * newImage.Height / newImage.Width)

End If

x = (pnlImage.Width - wid) \ 2
y = (pnlImage.Height - hgt) \ 2

PanelGraphic.DrawImage(newImage, x, y, wid, hgt)

newImage.Dispose()
PanelGraphic.Dispose()

Catch ex As Exception

'DrawErrorImage()

End Try

End Sub

What happens if you remove the "PanelGraphic.Dispose()" call?

Thanks,

Seth Rowe

Sep 12 '07 #3
I changed my code to simplify it and used a PictureBox control instead. Same
results:

Dim Photo As Integer

Photo = RandomNumber(ss.Pics.Count)

Dim myImage As Bitmap = New Bitmap(ss.Pics(Photo).FullName, True)

Me.pic1.Image = myImage

Again, I set a watch on ss.Pics(Photo).FullName. The first run through the
value for the watch item is in black text. The next run through the value
column shows the text value for that item in red text. This is in spite of
the fact that the path it indicates is valid. I'm guessing this fails
because of the reason why the debugger is flagging that watch item in red
text. It doesn't indicate an error --just places it in red text. I've looked
and looked for the significance of that in the help to no avail.

Anyone have an idea what could be going on here?

JW

"Jerry West" <jw@comcast.netwrote in message
news:13*************@news.supernews.com...
Tried removing it but same results. I'm at a loss to know why? It seems
the red text of the watch item which provides the path to the next image
to load is significant. I have verified the path is correct and valid.

If anyone has any suggestions I'd love to hear them!

JW

"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@k79g2000hse.googlegr oups.com...
>On Sep 11, 8:21 pm, "Jerry West" <j...@comcast.netwrote:
>>I'm a newbie to .NET from VB6.

I have a Form with a Panel control on it. When the Form loads it
maximizes
and so does the Panel control. I then fill an array with the path to
images
at a specific folder. At that point a timer fires every x seconds which
calls a routine that draws an image onto the Panel. This works great the
first time the code runs. But each subsquent timer event fails to load a
new
image --it is always the same image (which is the first one it loaded).
Of
course, I stepped through the code and can clearly see a new image is
being
drawn each time after first clearing the old one. Yet, it is always the
same
image. Is there something about a Panel that will not load a new image?
I
set a watch on the array which references the image to load. When I was
stepping through my code I noticed in the Watch window that on the first
run
through the Watch window showed the array value in black text. On the
next
run through --and all subsquent ones-- it was in red text. No warnings
or
anything it was just in red text. Is that significant? I could find no
docs
on what the meaning of this in the Watch window could be. My code is
this:

Private Sub DrawTheImage()

Dim Photo As Short

Dim PanelGraphic As Graphics = pnlImage.CreateGraphics

PanelGraphic.Clear(Color.Black)

Try

Photo = RandomNumber(ss.Pics.Count)

Dim newImage As Bitmap =
Bitmap.FromFile(ss.Pics(Photo).FullName)

Dim x As Integer
Dim y As Integer
Dim wid As Integer
Dim hgt As Integer

If (newImage.Height / newImage.Width) (pnlImage.Height /
pnlImage.Width) Then

' The new image is relatively tall and thin.
' Make the image as tall as possible.
hgt = pnlImage.ClientSize.Height
wid = CInt(hgt * newImage.Width / newImage.Height)

Else

' The new image is relatively short and wide.
' Make the image as wide as possible.
wid = pnlImage.ClientSize.Width
hgt = CInt(wid * newImage.Height / newImage.Width)

End If

x = (pnlImage.Width - wid) \ 2
y = (pnlImage.Height - hgt) \ 2

PanelGraphic.DrawImage(newImage, x, y, wid, hgt)

newImage.Dispose()
PanelGraphic.Dispose()

Catch ex As Exception

'DrawErrorImage()

End Try

End Sub

What happens if you remove the "PanelGraphic.Dispose()" call?

Thanks,

Seth Rowe


Sep 12 '07 #4
Even stranger...if I step through the code it works fine. Why in the heck
would that be?!!

JW

"Jerry West" <jw@comcast.netwrote in message
news:13*************@news.supernews.com...
>I changed my code to simplify it and used a PictureBox control instead.
Same results:

Dim Photo As Integer

Photo = RandomNumber(ss.Pics.Count)

Dim myImage As Bitmap = New Bitmap(ss.Pics(Photo).FullName, True)

Me.pic1.Image = myImage

Again, I set a watch on ss.Pics(Photo).FullName. The first run through the
value for the watch item is in black text. The next run through the value
column shows the text value for that item in red text. This is in spite of
the fact that the path it indicates is valid. I'm guessing this fails
because of the reason why the debugger is flagging that watch item in red
text. It doesn't indicate an error --just places it in red text. I've
looked and looked for the significance of that in the help to no avail.

Anyone have an idea what could be going on here?

JW

"Jerry West" <jw@comcast.netwrote in message
news:13*************@news.supernews.com...
>Tried removing it but same results. I'm at a loss to know why? It seems
the red text of the watch item which provides the path to the next image
to load is significant. I have verified the path is correct and valid.

If anyone has any suggestions I'd love to hear them!

JW

"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@k79g2000hse.googleg roups.com...
>>On Sep 11, 8:21 pm, "Jerry West" <j...@comcast.netwrote:
I'm a newbie to .NET from VB6.

I have a Form with a Panel control on it. When the Form loads it
maximizes
and so does the Panel control. I then fill an array with the path to
images
at a specific folder. At that point a timer fires every x seconds which
calls a routine that draws an image onto the Panel. This works great
the
first time the code runs. But each subsquent timer event fails to load
a new
image --it is always the same image (which is the first one it loaded).
Of
course, I stepped through the code and can clearly see a new image is
being
drawn each time after first clearing the old one. Yet, it is always the
same
image. Is there something about a Panel that will not load a new image?
I
set a watch on the array which references the image to load. When I was
stepping through my code I noticed in the Watch window that on the
first run
through the Watch window showed the array value in black text. On the
next
run through --and all subsquent ones-- it was in red text. No warnings
or
anything it was just in red text. Is that significant? I could find no
docs
on what the meaning of this in the Watch window could be. My code is
this:

Private Sub DrawTheImage()

Dim Photo As Short

Dim PanelGraphic As Graphics = pnlImage.CreateGraphics

PanelGraphic.Clear(Color.Black)

Try

Photo = RandomNumber(ss.Pics.Count)

Dim newImage As Bitmap =
Bitmap.FromFile(ss.Pics(Photo).FullName)

Dim x As Integer
Dim y As Integer
Dim wid As Integer
Dim hgt As Integer

If (newImage.Height / newImage.Width) (pnlImage.Height /
pnlImage.Width) Then

' The new image is relatively tall and thin.
' Make the image as tall as possible.
hgt = pnlImage.ClientSize.Height
wid = CInt(hgt * newImage.Width / newImage.Height)

Else

' The new image is relatively short and wide.
' Make the image as wide as possible.
wid = pnlImage.ClientSize.Width
hgt = CInt(wid * newImage.Height / newImage.Width)

End If

x = (pnlImage.Width - wid) \ 2
y = (pnlImage.Height - hgt) \ 2

PanelGraphic.DrawImage(newImage, x, y, wid, hgt)

newImage.Dispose()
PanelGraphic.Dispose()

Catch ex As Exception

'DrawErrorImage()

End Try

End Sub

What happens if you remove the "PanelGraphic.Dispose()" call?

Thanks,

Seth Rowe



Sep 12 '07 #5

"Jerry West" <jw@comcast.netwrote in message
news:13*************@news.supernews.com...
Even stranger...if I step through the code it works fine. Why in the heck
would that be?!!

JW

"Jerry West" <jw@comcast.netwrote in message
news:13*************@news.supernews.com...
>>I changed my code to simplify it and used a PictureBox control instead.
Same results:

Dim Photo As Integer

Photo = RandomNumber(ss.Pics.Count)

Dim myImage As Bitmap = New Bitmap(ss.Pics(Photo).FullName, True)

Me.pic1.Image = myImage

Again, I set a watch on ss.Pics(Photo).FullName. The first run through
the value for the watch item is in black text. The next run through the
value column shows the text value for that item in red text. This is in
spite of the fact that the path it indicates is valid. I'm guessing this
fails because of the reason why the debugger is flagging that watch item
in red text. It doesn't indicate an error --just places it in red text.
I've looked and looked for the significance of that in the help to no
avail.

Anyone have an idea what could be going on here?

JW

"Jerry West" <jw@comcast.netwrote in message
news:13*************@news.supernews.com...
>>Tried removing it but same results. I'm at a loss to know why? It seems
the red text of the watch item which provides the path to the next image
to load is significant. I have verified the path is correct and valid.

If anyone has any suggestions I'd love to hear them!

JW

"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@k79g2000hse.google groups.com...
On Sep 11, 8:21 pm, "Jerry West" <j...@comcast.netwrote:
I'm a newbie to .NET from VB6.
>
I have a Form with a Panel control on it. When the Form loads it
maximizes
and so does the Panel control. I then fill an array with the path to
images
at a specific folder. At that point a timer fires every x seconds
which
calls a routine that draws an image onto the Panel. This works great
the
first time the code runs. But each subsquent timer event fails to load
a new
image --it is always the same image (which is the first one it
loaded). Of
course, I stepped through the code and can clearly see a new image is
being
drawn each time after first clearing the old one. Yet, it is always
the same
image. Is there something about a Panel that will not load a new
image? I
set a watch on the array which references the image to load. When I
was
stepping through my code I noticed in the Watch window that on the
first run
through the Watch window showed the array value in black text. On the
next
run through --and all subsquent ones-- it was in red text. No warnings
or
anything it was just in red text. Is that significant? I could find no
docs
on what the meaning of this in the Watch window could be. My code is
this:
>
Private Sub DrawTheImage()
>
Dim Photo As Short
>
Dim PanelGraphic As Graphics = pnlImage.CreateGraphics
>
PanelGraphic.Clear(Color.Black)
>
Try
>
Photo = RandomNumber(ss.Pics.Count)
>
Dim newImage As Bitmap =
Bitmap.FromFile(ss.Pics(Photo).FullName)
>
Dim x As Integer
Dim y As Integer
Dim wid As Integer
Dim hgt As Integer
>
If (newImage.Height / newImage.Width) (pnlImage.Height /
pnlImage.Width) Then
>
' The new image is relatively tall and thin.
' Make the image as tall as possible.
hgt = pnlImage.ClientSize.Height
wid = CInt(hgt * newImage.Width / newImage.Height)
>
Else
>
' The new image is relatively short and wide.
' Make the image as wide as possible.
wid = pnlImage.ClientSize.Width
hgt = CInt(wid * newImage.Height / newImage.Width)
>
End If
>
x = (pnlImage.Width - wid) \ 2
y = (pnlImage.Height - hgt) \ 2
>
PanelGraphic.DrawImage(newImage, x, y, wid, hgt)
>
newImage.Dispose()
PanelGraphic.Dispose()
>
Catch ex As Exception
>
'DrawErrorImage()
>
End Try
>
End Sub

What happens if you remove the "PanelGraphic.Dispose()" call?

Thanks,

Seth Rowe


Do you set the timer.enabled = false at the beginning of the timer event
handler. I have had problems when the timer event processing takes longer
than the timer interval.

Set the timer back to enabled=true as last thing you do in timer event.

Hope this helps
Lloyd Sheen

Sep 13 '07 #6
Yep, that was the trick. Thanks!

JW

"Lloyd Sheen" <a@b.cwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
>
"Jerry West" <jw@comcast.netwrote in message
news:13*************@news.supernews.com...
>Even stranger...if I step through the code it works fine. Why in the heck
would that be?!!

JW

"Jerry West" <jw@comcast.netwrote in message
news:13*************@news.supernews.com...
>>>I changed my code to simplify it and used a PictureBox control instead.
Same results:

Dim Photo As Integer

Photo = RandomNumber(ss.Pics.Count)

Dim myImage As Bitmap = New Bitmap(ss.Pics(Photo).FullName, True)

Me.pic1.Image = myImage

Again, I set a watch on ss.Pics(Photo).FullName. The first run through
the value for the watch item is in black text. The next run through the
value column shows the text value for that item in red text. This is in
spite of the fact that the path it indicates is valid. I'm guessing this
fails because of the reason why the debugger is flagging that watch item
in red text. It doesn't indicate an error --just places it in red text.
I've looked and looked for the significance of that in the help to no
avail.

Anyone have an idea what could be going on here?

JW

"Jerry West" <jw@comcast.netwrote in message
news:13*************@news.supernews.com...
Tried removing it but same results. I'm at a loss to know why? It seems
the red text of the watch item which provides the path to the next
image to load is significant. I have verified the path is correct and
valid.

If anyone has any suggestions I'd love to hear them!

JW

"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@k79g2000hse.googl egroups.com...
On Sep 11, 8:21 pm, "Jerry West" <j...@comcast.netwrote:
>I'm a newbie to .NET from VB6.
>>
>I have a Form with a Panel control on it. When the Form loads it
>maximizes
>and so does the Panel control. I then fill an array with the path to
>images
>at a specific folder. At that point a timer fires every x seconds
>which
>calls a routine that draws an image onto the Panel. This works great
>the
>first time the code runs. But each subsquent timer event fails to
>load a new
>image --it is always the same image (which is the first one it
>loaded). Of
>course, I stepped through the code and can clearly see a new image is
>being
>drawn each time after first clearing the old one. Yet, it is always
>the same
>image. Is there something about a Panel that will not load a new
>image? I
>set a watch on the array which references the image to load. When I
>was
>stepping through my code I noticed in the Watch window that on the
>first run
>through the Watch window showed the array value in black text. On the
>next
>run through --and all subsquent ones-- it was in red text. No
>warnings or
>anything it was just in red text. Is that significant? I could find
>no docs
>on what the meaning of this in the Watch window could be. My code is
>this:
>>
> Private Sub DrawTheImage()
>>
> Dim Photo As Short
>>
> Dim PanelGraphic As Graphics = pnlImage.CreateGraphics
>>
> PanelGraphic.Clear(Color.Black)
>>
> Try
>>
> Photo = RandomNumber(ss.Pics.Count)
>>
> Dim newImage As Bitmap =
>Bitmap.FromFile(ss.Pics(Photo).FullName)
>>
> Dim x As Integer
> Dim y As Integer
> Dim wid As Integer
> Dim hgt As Integer
>>
> If (newImage.Height / newImage.Width) (pnlImage.Height
>/
>pnlImage.Width) Then
>>
> ' The new image is relatively tall and thin.
> ' Make the image as tall as possible.
> hgt = pnlImage.ClientSize.Height
> wid = CInt(hgt * newImage.Width / newImage.Height)
>>
> Else
>>
> ' The new image is relatively short and wide.
> ' Make the image as wide as possible.
> wid = pnlImage.ClientSize.Width
> hgt = CInt(wid * newImage.Height / newImage.Width)
>>
> End If
>>
> x = (pnlImage.Width - wid) \ 2
> y = (pnlImage.Height - hgt) \ 2
>>
> PanelGraphic.DrawImage(newImage, x, y, wid, hgt)
>>
> newImage.Dispose()
> PanelGraphic.Dispose()
>>
> Catch ex As Exception
>>
> 'DrawErrorImage()
>>
> End Try
>>
> End Sub
>
What happens if you remove the "PanelGraphic.Dispose()" call?
>
Thanks,
>
Seth Rowe
>



Do you set the timer.enabled = false at the beginning of the timer event
handler. I have had problems when the timer event processing takes longer
than the timer interval.

Set the timer back to enabled=true as last thing you do in timer event.

Hope this helps
Lloyd Sheen

Sep 13 '07 #7

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

Similar topics

1
by: Asaf Dan | last post by:
Hi, I'm using a panel to show an image. The Image could be bigger or smaller than the panel. I want to show the pixel coordinates of the image on a label next to the panel. I'm using an event...
3
by: Alberto | last post by:
I'm drawing an image in a panel control with this sentence in the Paint method: e.Graphics.DrawImageUnscaled(Image, panelImage.AutoScrollPosition); The problem is that I only want to paint a...
1
by: objectref | last post by:
Hi to all folks, i have the following problem and i have spent many hours to solve it but without any result, so, here it is: Imagine that you have a mdi-child form that has a panel on it, a...
2
by: Carl Gilbert | last post by:
Hi I am looking for either a component or technique to allow me to do the following: * Provide a panel with a background image * Resize the image to best fit the panel to maintain aspect...
0
by: zxo102 | last post by:
Hi everyone, As shown in the code below (modified based on the Image.py in wxpython demo), an image is created at location 1: (50,10) with rotated angle 1.12. Now, suppose I got another set of...
0
by: SamSpide | last post by:
Hi all, I'm trying to place a semi-transparent image (i.e. an image with parts of it were drawn in transparent color) over a playing video, but can't seem to make it work. Instead of the...
0
by: adubra | last post by:
Hi there, I am using a device context (DC) and a buffer to successfully draw to screen. However, when I update the DC at very high frame rate and drag the frame containing the image very quickly...
2
by: vertozia | last post by:
Hey there, ive been having difficulty placing an image, this is my screenshot, and what ive done so far: http://img341.imageshack.us/img341/9894/gridwg2.jpg /** * ConnectFourGUI * Provide...
2
by: chanshaw | last post by:
Alright I'm trying to place the textarea on top of the image but right now it displays the textarea below the image, how do i go about doing this. import java.awt.Color; import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
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,...
0
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
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...

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.