Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: siu01jam
  • Content: Threads
  • Order by date
  1. siu01jam

    Tool Tips

    Hi, The following link has code to produce cool tool tip ballons for components. The problem is that I have built a massive application using SpeedButtons and you can't call the function with speedbuttons because of the hierarchy of the components and hWnd. Does anyone have any idea how to make...
  2. siu01jam

    BMP and GIF

    Hi, Does anyone have an algorithm that will convert a GIF file to BMP, allowing it to be displayed in a TImage? I also need to be able to convert back from BMP to GIF. Thanks in advance, James
  3. siu01jam

    Drag Drop in Delphi

    Hi, I have got panel components being created at runtime, and I cannot seem to be able to drag/drop the panels onto each other. In the constructor I have the following code: self.OnDragDrop:= ImageDragDrop; self.OnDragOver:= ImageDragOver; Then: procedure...
  4. siu01jam

    TCanvas.StretchDraw

    I have an image at a given height and width and i am trying to StretchDraw it onto another canvas. With size do begin Left:= 0; Top:= 0; Right:= StrToInt(Edit1.Text); Bottom:= StrToInt(Edit2.Text); end; ResizedImage.Height:= Size.Bottom...
  5. siu01jam

    Spin Edit

    Hopefully this should be quite an easy one . . . I think all I need is to get the cursor to go to the end of a spinedit box . . I have a line of code that works out a new width of an image if the height is changed and vice versa. The problem is that when I select everything in one of the...
  6. siu01jam

    Images and the clipboard, CF_HDROP, null characters

    I have been trying to copy an image to the windows clipboard and then paste it to a canvas on my form. It is working with BMP images but I also want it to work for JPEGs. I have an algorithm that can convert from JPG to BMP. When I copy a JPG file, I found out that the type of data stored in...
  7. siu01jam

    TImage.proportional

    I am using a TImage to display an image assigned at run time. I am using the "proportional" and "stretch" options depending what has been selected by the user. The changes are not made to the actual image, only to the way it is displayed. I want to save the image as it is...
  8. siu01jam

    Seperate Units

    I have an object inheriting from TPanel declared in a seperate unit: type TPreviewPanel = class(TPanel) private procedure ImagePreviewClick(Sender: TObject); protected { Protected Declarations } public constructor Create(Owner: TComponent); override; destructor...

Part and Inventory Search

Back
Top