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 SkipVought 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. jbpelletier

    Beveling - Image Manipulation

    Hi, I'm trying to create a beveling "filter" using mask and filter/effect(ie: blur, lightness etc etc). Test after test, im getting closer to what im looking for, but i still far away. Here an exemple of "beveling" and the effect i try to produce : (see the image with a cercle,square,triangle)...
  2. jbpelletier

    How to Catch Form Scroll Event?

    Thanks Griffyn, at least i know im on the good "track";) jb
  3. jbpelletier

    How to Catch Form Scroll Event?

    I found a way. However, im not sure if it's the "elegant" way. So if you find a better solution, please tell me. Here is what i did : 1- in my Tform class i've added the WMVScroll and WMHScroll Message Handler. Ex : TForm1 = class(TForm) ... private { Private declarations } procedure...
  4. jbpelletier

    How to Catch Form Scroll Event?

    Hi, I have a TForm which has the autoscroll property set to true. My problem is simple. I'm trying to catch the "on scroll" event of the form, but i can't find a way yet. I'm using delphi 7. Any help appreciate. Jb
  5. jbpelletier

    rollback segment

    ok.. tanx jb
  6. jbpelletier

    rollback segment

    Maybe it's an ez question, maybe it's impossible to do.. Is it possible to Not use the rollback segment for a specific opération. I'm looking for someting like : toggle rollback segment off; <do something> toggle rollback segment on; jb
  7. jbpelletier

    pl/sql + text file

    this "could " prolly works with my need. Do there is a way to do all "inside" the package.. cause those lines looks like SQL*Plus parameters and not PL/SQL... set echo off spool JB.txt set serveroutput on format wrap
  8. jbpelletier

    pl/sql + text file

    hi, im trying to write some data to a text file without succes.(looks like im attempting to write on the server instead of my cpu, not sure) I whant to know how would u do to write in a text file located "on" our cpu in pl/sql. lets say how to write "hello" in C:\test.text. any help...
  9. jbpelletier

    PL / SQL (get pkg/func/proc name)

    Hi, i code a prod that i use in the exception part of "all" proc/func.. Its called like that EXCEPTION WHEN OTHERS THEN Pr_Iv_Wlog('ERROR','PACKG_NAME.PROC_FUNC_NAME', SQLCODE ,SQLERRM); --this is save in a log table that add a timestamp RAISE; END; i whant to "soft code" the part...
  10. jbpelletier

    Flicker Problem

    Nice;) i should maybe an other look at Directx.. jb
  11. jbpelletier

    Flicker Problem

    hi, My understanding of the code above is that paintbox is redrawn at the timer rate. >> yes, it was for a demo purpose, to generate an high amout of repait, i tried up to "interaval = 25" within that the paintbox copys the image (bmp) in image, and then draws lines. >> yes, i copy the image...
  12. jbpelletier

    Flicker Problem

    ya real strange (well the image should be paint on your paint box with, cause i ask for in my code) .. trying to send u the project (maybe u should try the exe before u recompile) jb
  13. jbpelletier

    Flicker Problem

    here is a concrete exemple i tried with timer up to interval 25 with no flicker at all PREREQ : 0- create a new project 1- drop a Timage, and load your image inside 2- drop a TPaintbox (set his size to be the same as the Timage) 3- drop a Tbutton 4- drop a Ttimer CODE : //Paste this code...
  14. jbpelletier

    Flicker Problem

    hi, just to know.. with the 3rd method (witch i prefer), have u tried to not hide your buff image with (visible = fasle), but hide it setting left or top property outside the form? Also, u'll have to call a repait (or paint, dont remember) of the destination "image/canvas" after your drawing...
  15. jbpelletier

    Page in Section

    hi, As blom says, this is not possible do to a "reset page number after" in BO in version that do not merge with crystal report.. jb
  16. jbpelletier

    TBitmap vs CopyRect

    Do this mean u still have problems?.. if so.. i modified the code u pasted to make it work on my side (delphi 5), to do what u ask in your first post here it goes: // bmp_file_source_path='C:\source.bmp'; // bmp_file_dest_path='C:\dest.bmp'; //... procedure TForm1.Button1Click(Sender...
  17. jbpelletier

    TBitmap vs CopyRect

    Hi, first, u have a problem with your Trect. Rect(0,501,16,500) have a negative area.. from 501 to 500 = -1 this code should work.. with maybe a little modification of the TRect data.. // bmp_file_source_path='C:\source.bmp'; // bmp_file_dest_path='C:\dest.bmp'; //... procedure...
  18. jbpelletier

    Looking for More Icon / Bitmap

    Tanx again! Thats exacly what i was looking for! And i guess im not the only one:) jb
  19. jbpelletier

    Looking for More Icon / Bitmap

    Tanx, This link is better.. but it's not free ;( However, that's the kind of graphic im looking for.. jb
  20. jbpelletier

    Looking for More Icon / Bitmap

    Tanx Ors for your reply, But thats not really what im looking for. Im not looking for Lord of the ring, Star wars or The Sympson icons..! Thats why i said that after one hour, i got no concrete result... im looking for icons/bitmap like Directories Image, Google Image, Cut/Past Etc.. that have...

Part and Inventory Search

Back
Top