gdi+

  1. B

    Making a textbox glow?

    Is it possible to make a text box glow in any way? If not what is something similar that I can do in replacement instead of a glowing effect. And now for more details; I am making a doctor who themed browser and I have a textbox that I want to glow(A golden color) when I refresh the browser. I...
  2. N

    Question How to add a .gif image from ressources using GDI+?

    I want to load a .gif image with no background at the pointer's location on the form every time the user clicks on the form. I tried using a picturebox but when two of this same image overlap the background of the picturebox covers the image behind.. How can i do this using GDI+ ? Dim PB As...
  3. I

    Infinite Redraw Loop with "Program not Responding" Message

    Hello Community, I have an urgent problem to which I would appreciate quick replies. I have written a program for a school project which graphs mathematical equations. Within Visual Studio (in debug mode) everything works perfectly. However, when I publish the program and run it as an installed...
  4. I

    Question Prevent Child Control Redraw when ALT or TAB Key is Pressed

    Hello, I am programming an application in VB.NET that makes use of a custom control (inherited from Windows.Forms.UserControl), which uses its Paint event (or rather MyBase.Paint) to graph mathematical equations that the user can enter. My problem is that, when the user presses the Tab or Alt...
  5. G

    Help with drawing a simple street for a car game

    Hi, I'm doing an app like a car game. I need to paint over a vector of points connected forming a line. The paint is like a street. Here is an example: I have a red trace that is the sight for drawing a street on it. The origin of this red line is from GPS coordenates. Here is a picture of...
  6. S

    Resolved PrintPreview/Printed page descrepencies?

    Hello, I have a document printed to a PrintPreview and then to a printer. I am using graphics.measurestring to position some custom subscript text. My problem is that upon examination of the printed output, the position of my subscript text is incorrect, but it is correct on the screen...
  7. M

    arrow moving?

    Hi to all, In my project I need to display an arrow moving when the user press the START button & it need to stop when stop button is pressed. The moving area of arrow is fixed .ie, consider 100 pixels for the arrow movement. Once it reaches the end it has to start from the first. I've the image...
  8. Neodynamic

    Neodynamic ImageDraw 5.0 for ASP.NET Released!!!

    Neodynamic ImageDraw for ASP.NET is the definitive solution for professional web imaging design, exclusively developed for ASP.NET applications. ImageDraw is a set of server controls (ImageDraw, ImageDrawButton, and ImageDrawMap) which generate real time on-fly Dynamic Composite Images for...
  9. Adagio

    Question Load icon from file

    I have now tried many different codes found all over the web, but so far I haven't had much luck :( I need to load the icon from a file, any file (including shortcuts) in as high quality as possible (it's ok if the code only works in Vista/Windows 7) So far I have only been able to get low...
  10. D

    How to properly open a Image using Bitmap Class and dispose it properly

    I am looking for a code snippet which opens a image, creates a clone of this bitmap in memory disposes this opened image so that all handles are closed. Usually we can open a bitmap using this Dim MyBit as new bitmap("C:\Image file.bmp") dim ClonedBit as bitmap = MyBit.clone MyBit.dispose the...
  11. E

    Question Split an image into seperate 32x32 peices

    Hi all, I'm new in these forums (and to vb or .net) so go easy on me! My question is, what is the simpleist way to split an image (384 x 256) into smaller peices (32 x 32). I will be using the images seperated only for animation and I dont need to save them or anything like that. I'm new to the...
Back
Top