VS 2008 MessageBoxIcon Custom Image?
Jan 25, 2010I need to set a custom image icon on MessageBox.Show parameter which is presently limited to MessageBoxIcon enums any programatical way to overcome this ?
View 3 RepliesI need to set a custom image icon on MessageBox.Show parameter which is presently limited to MessageBoxIcon enums any programatical way to overcome this ?
View 3 RepliesWhat is difference between MessageBoxIcon.Exclamation and MessageBoxIcon.Warning?
View 4 RepliesI want to add a new icon in the MessageBoxIcon list. Is it possible? If possible how to accomplish it.
View 2 RepliesIs there a better image then a check for a checkbox or would i have to create my a new control?
View 6 RepliesI want to see what the different MessageBoxIcons look like. I found some code that jmc had posted but it only gets the names and values, I want to see the names and the pictures.
View 10 RepliesI created a new cursor (it works properly, I tried it in windows 7) but is not working for me in the program.I took the Windows cursor (aero_helpsel_xl, from C:WindowsCursors) and it appears to me the same error.i use with this code:
Me.Cursor = New Cursor("Patch..")
The problem say:: "{"Image format is not valid. Image file may be corrupted.
Parameter name: stream "}"
edit: I realized what the problem ... It can read only cur files with 24-bit color and lower - but it shows only two colors: black and white.
I'd like to verify if an image control has an image loaded . If it does , I want to unload that image (and load no image) , but if the image control has no image loaded , I want to load an image . Is it possible ?
If ImageMY.Image.Equals(Nothing) Then
ImageMY.Image = System.Drawing.Image.FromFile("C:ImageBlaBlaBla.jpg")
Else
[code].....
So I have a custom control that acts like a combobox and I want to use a custom background image for it. I also want to use a custom hover color and remove those white borders or set them to transparent as seen in the picture below.
View 9 RepliesI have a custom control that acts like a combobox and I want to use a custom background image for it.
View 9 Replies I have a background image and i'm trying to make a custom gui for the app, which goes around the image, and of course its an irregular shape, so i thought that i could use the region and so i used several ellipses and the i tried to add a rectangle but the parts that overlap invert the path therefor the part that overlaps is now transparent and not part of the window.
What I would like to do is get some examples of using all the curves, lines... and be able to make one region that is connected with all those paths that are made.
I'm having a few problems creating a transparent form. The reason I want to do this is because I'm attempting to make a custom border (one that isn't exactly square).I can already get the form to be transparent, then I set my custom background image, which all works perfect, it even detects when the mouse enters the image, which is great. (I use transparency key to make the form transparent)
The problem is, if I add ANY control, or even if I just save the file, NOTHING else, the whole thing has a spaz attack.. Instead of having the image with the transparent form, the square form appears every time I run the app.
I'm trying use just a user control form to act like the old VB6 picturebox. Mainly, i'm doing this is because a user control form is also a container but i also want it to have an image property. I've done this. The new control does have an Image property but the problem is that the user control form doesn't have an image property but only a BackgroundImage property.I was hoping that there is some way to place the selected image, directly on the surface of the user control and not to it's BackgroundImage property. Here is what is got so far:
Code:
Public Property Image As System.Drawing.Image
Get
Return Me.BackgroundImage
End Get
[code]....
As you can see, for now, i have to use the BackgroundImage property but i want to image to be placed on the controls surface, so that the image can be manipulated, like drawing game tiles on it or image processing. The user control doesn't have a real image property?
how to go about using an image to 'fill' a progress bar instead of the stock standard green thing?using and image as the background of a progress bar aswell.
View 5 RepliesI support a .Net 2.0 Windows application that has a custom listview control to allow for greater flexibility. I am not allowed to bring this to a newer version of the gramework until next year. We are moving from XP to Windows 7, and we have identified an issue with how the column sort image (up/down arrow) is drawn to the listview. Currently in XP, the image is drawn to the right of the column's text. However, in Windows 7, I am getting Access Violation Exceptions. Now, I know that the error is with the improper handling of memory using the unmanaged code as shown below. I am looking for a method to mimic what we have below in a safe manner using managed code.
[Code]...
i do make custom button component with the below code..
Imports System.Drawing
Public Class AnsBtn
Inherits Windows.Forms.Button
[Code].....
After building the button class i import the dll to my project.
how i can switch between the images to set it as the current background image.
" Answerbtn1.BackgroundImage = ........"
I try to achieve to paint a form with a gradient backcolor and overlap an image with transparency. This is possible? I want using a tile background image with transparent background and paint the background with a custom linear gradient.
View 2 RepliesIn VB6 you could BITBLT things around before refreshing the screen. In .NET, I'm aware of DrawImage, but that can only be done on a paint event rather than before anything gets painted. The issue I have is, I need to open several files with image data in them and then build a bigger image with those smaller images. Before I could open them, BITBLT them to a Buffer. As far as I can tell .NET offers no way to do this as the only function I've been able to find (DrawImage) only works within the paint event. Is there still a way to do this in VS08 or no?
View 6 RepliesIve been programming in VB6 for years, i figured its time for an upgrade. Here's what im doing, and what the problem is:
Im loading a bunch of pictures on top of one image. They are all PNG files, and some of the images have transparent edges, and some semi-transparency within the image itself.
So basically, i need to be able to load these images on top of the other images, and still maintain the transparency.
Is this possible in VB08? This is one of the main reasons i moved to 08 from vb6, more things possible including multithreading.
I need to know how to use listview, I'm having trouble using it.What are listviews uses?What can be listed in listview?What cannot be listview?If an image is in listview, will it display a thumbnail of the image?
View 4 RepliesI want to draw an image onto another image object but use an alphamask specified from another image that is grayscale.
I am drawing an animation manually so don't want to do this pixel by pixel as this would be extremely inefficient.
I'm having a problem getting the src of the image the mouse is hovering over in a webbrowser. I can get an href just fine, just not an src. To get the href, I used this
Something = Webbrowser1.Document.ActiveElement.GetAttribute("href")
When I try to do it for an image, nothing happens. How do I get the image location?
I am trying to edit an image. I can open the image with Picturebox1.load(mypicture)
I can change the pixels/edit the picture by Dim img as new bitmap(picturebox1.image)
[Code]...
now here is the weird part. When I save the image the filesize INCREASES..but the picture dimensions are the same Example... TEST.PNG 1.3KB, when opened up via picturebox/saved the image is now 2.3KB
not sure why...i even though I specify system.drawing.imaging.imageformat.PNG
samething with JPG... it actually SHRINKS it evenmore.. example 88KB jpeg.. saved as jpeg is now 47.7KB...
I am trying to read a 16bit binary file (tif image) and pixel values of the image ranges from 1200 to 4500. I tried to use BinaryReader using ReadUInt16 but I get EndOfStreamException Unhandled error. ReadByte method works fine with an 8bit tif file. I do not know how to read a 16bit image file using binaryReader. Shouldn't I use ReadUInt16 since values of pixels range from 1200 to 4500?
[Code]....
Screen and send are both bmps:This is what I've tried so far but it doesn't work
For y = 0 To screen.Height - 1
For x = 0 To screen.Width - 1
If getpixel(screen, x, y) = getpixel(send, 0, 0) Then
[code].....
Is it possible to make a "Custom.Custom"? Example:
Custom.Custom1 = "1"
Custom.Custom2 = "2"
and
MessageBox.Show(Custom.Custom2)
Would show "2"
How do I create a program that finds the position of an image that is contained in another image?
View 1 RepliesI'm trying to get the image's name from a imagelist..[code]ofcourse that "name" doesn't exists, and I'm trying to find out what another correct way to get the name of that image.
View 1 RepliesI have a listview control. it has an imagelist attached to it with two images in it. I have entered items into my listview, and they are using the first image in my imagelist.... GREAT! Now, there is a variable I have that will tell me which index in the listview is currently active, noting to do with what I select that could be at another index it's just what's being processed by the program at the time in some task.
Create a function that will change the images of all my listview items by looping through them. If the index variable is set to 2, I want the 3rd item in my list view set to use the 2nd image in my imagelist. The rest of the items in my listview need to be set to the first image in the imagelist.
This is what I would like to achieve:To create a custom messagebox, with varying number of buttons with custom .Text descriptions, and other features. I intended to have a property array that would be redim-ed and have values (.Text values) set by the calling class:
[code]...
I came across this great article on creating a custom datagridview column which creates a graph-like effect in the cells of a custom datagridview column:[URL]..Does anyone know how you would edit this to format the number in the cell as a percentage? And does anyone know how you would set this up to take 0 values which do not create any graph effects at all.I have been trying to do this but keep getting errors.
View 1 Replies