2
votes
2answers
1k views
How to draw smooth images with C#?
I'm trying to draw images on a C# form (in PictureBoxes, as well as using Graphics.DrawImage()), and am looking for a way to draw them smooth. The images must be a format that sup …
0
votes
1answer
229 views
Is it possible to set the image alignment of a PictureBox in VB.NET?
I have a PictureBox that is docked in the upper left corner of a form. It is contained inside of a SplitContainer, and the PictureBox is set to Fill the side of the panel that it r …
0
votes
0answers
17 views
Alternating pPicture boxes with updating images stop showing on form after a while
Hi,
I've got two pictureboxes in a windows form which are assigned a new image in a separate thread, then are made visible to the windows form. So if we had two pictureboxes, A an …
0
votes
2answers
59 views
Making a TextBox Transparent
Hello,
I have a TextBox in my Form that I want to let it be tranparent and show a picture that is in a PictureBox, behind it, but how I can do this? Thanks.
0
votes
1answer
32 views
Switching PictureBox Images C#
I'm trying to make a "checkbox" that has a custom check image. I need it to toggle between checked and unchecked when the user clicks the picturebox. I've tried the following code, …
1
vote
2answers
84 views
Load image from memory into VB6 PictureBox
I'm not a VB6 developer so excuse me if I'm not making any sense.
If I have a VARIANT array of bytes containing an RGB array of image data, is it possible to get that data to be d …
0
votes
2answers
30 views
Vb.Net Object on top of another
In VB.NET I made a web browser and I wanted there to be an image behind the web browser slightly peeking out. I put the image on after i put the web browser on the form and I cant …
0
votes
0answers
32 views
How bind Image field to PictureBox in VB.Net 2008
Hi all,
I have a table with image field that I need to bind to System.Windows.Forms.PictureBox, and I need to Load new images o Overwrite existing images or delete the image int t …
0
votes
1answer
72 views
Select Area in Picture Box - Windows Mobile
Hi,
I would like a method that give the coordinates of the rectangle 'drawn' by the user, on an image placed in a picturebox.
The main problem I am having is that I am not able t …
0
votes
2answers
49 views
Why does my PictureBox loading routine leak memory?
I've been trying to swap images in a PictureBox in a C++/CLI application but my solution appears to have a memory leak:
System::Void button1_Click(System::Object^ sender, System: …
0
votes
0answers
211 views
VB.NET: Resize an image (jpg,gif,png) to avoid out of memory error in Picturebox Control on .NETCF 2.0
I'm searching for a solution to resize image(jpg) being passed in from an array in Picturebox Control on .NETCF 2.0 in VB.NET without resorting to using the opennetcf library, is i …
1
vote
1answer
51 views
Forcing a PictureBox to retain its image if the image was drawn on using code in vb.net
My pictureboxes sometimes clear of all drawings when they are done creating the image, or sometimes halfway through. Calling GC.Collect() before the drawing starts lets it draw MOR …
1
vote
2answers
164 views
c# picturebox inheritance for card game
I'm woking on a card game for my Intro to OOP paper. The game itself meets the specifications but I am now playing around with it for my own gratification and learning.
I have a c …
0
votes
0answers
51 views
How do I create a displayed array of image thumbnails in a C# windows app?
I want to create a displayed array of image thumbnails in a C# Windows app.
I would like each image to be selectable for migration into a picturebox.
Has anyone built something l …
0
votes
1answer
65 views
Saving drawn images in a PictureBox
I created a form with a PictureBox. I created a drawing in the PictureBox. But I can't save the file to a specified folder without dialogue controls. Only through code. Please help …
