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 strongm 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: *

  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

    How do you create a delphi .exe file

    Is this a serious question? If so you can build your project by clicking Project -> Build (Your Project), but I think that delphi should automatically build it each time you compile. Go to the folder your project is saved and you should find your exe file there. If you can't find it there...
  5. 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...
  6. 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...
  7. siu01jam

    TImage.proportional

    I would only want to capture the image in this case . . . I am trying to get the bitmap image that is displayed in a TImage after proportional and stretch have taken effect. I think maybe a better way would be to write my own resize function and pass the image to that before displaying it, then...
  8. 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...
  9. 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...
  10. siu01jam

    Seperate Units

    How do I change my TPanel so it is called from the VCL library? Thanks for the help!
  11. siu01jam

    Seperate Units

    I am using Delphi 6 Enterprise . . . Could this make a difference?
  12. 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