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

  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?

    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
  3. 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
  4. 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...
  5. 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...
  6. jbpelletier

    Looking for More Icon / Bitmap

    Hi, Buttons image and icon located in the Borland Shared diectory are kinda limited.. im looking to find more of them. I Searched on the net for more than one hour with no concrete results.. Does anyone know where i can download tons of them for free? I would like to find something that looks...
  7. jbpelletier

    Page in Section

    Hi, im trying to set a field in the footer that will display the page in section and number of page in section... Not the page and number of page in report. for exemple, for each client (client is section 1) in my report display : page x of y any idea how to do this? tanx jb
  8. jbpelletier

    File name problem (maybe char set? )

    Hi, i have problems with some files name, using something like slFile.LoadFromFile (path); //slFile = stringlist for exemple if "path" equal c:\Emu4?.ini, in my app, Delphi will try to open c:\Emu4?.ini instead. i realized that fileexists('c:\Emu4?.ini') is true but slFile.LoadFromFile...
  9. jbpelletier

    TDirectoryOutline

    Hi, im not able to find how i can set a TDirectoryOutline object to be initialize (in code) to a specific path value. In fact im able but the component dont show the proper expand (visualy its incorect) DirectoryOutline1.Directory:=path; //will set the correct value but i keep the old visual...
  10. jbpelletier

    Multi columns TListBox

    Hi, i have difficulties adding text in columns of a multi columns TlistBox. Im only able to add text in the first column... trying to find the syntax on the web and in the help but no result...:| anyone can give me the correct syntax? tanx jb
  11. jbpelletier

    find files or folders

    hi, im looking for an equivalent of the "find files or folders" of Windows. In fact, i need to find all *.somthing files located on a specific drive, then loop the list to process files returned by the search... any help would be appriciate jb
  12. jbpelletier

    Fields is filtered

    Hi, Do there is a way to show (ex : different field font color) the user that the filed is filtered? i know that if u click on the filed u can check if the filter icon is down or not .. but i whant a more explicit way to show it tanx jb
  13. jbpelletier

    JToggleButton + icon + stretch?

    hi, i wanna add an icone file to a JToggleButton (done), and set the image to be stretch (fill the button area). in delphi i would simply do, mybutton.stretch:=true; possible in java?, how? tanx a lot jb
  14. jbpelletier

    ALTER SESSION

    hi, our server use this date format : DD-MON-RR and i whant to use this statement at the begining of a pl/sql script to change the date format .. but only for that script... >> alter session set nls_date_format='DD-MM-RR'; will other user (doing other thing on that oracle server) be affect...
  15. jbpelletier

    ORACLE AND VB (OO4O)

    To work with oracle database from vb with ease try the OraSession Object for more info look http://www.orafaq.net/faqoo4o.htm http://kenpo.msun.edu/man/oracle/doc/win.817/a85257/toc.htm jb
  16. jbpelletier

    connect to oracle (without ADO/BDE)

    Hi, I need an alternative to ADO and BDE to connect my app to an oracle database. I found something on google called TOracleSession witch dont pass by ADO or BDE to connect to oracle.. but the guy sell his component, and its too expensive for my needs.. so any idea on how i could do that...
  17. jbpelletier

    CODE THE DECODE FUNCTION?

    hi, im trying to recode the DECODE function for the PLSQL part (since i can't called DECODE in PLSQL) My problem : i dont know with what i should replace TYPE_TO_USE? by, i whant it to be of any type. FUNCTION DECODE (in_bool_cond BOOLEAN,in_true TYPE_TO_USE?,in_false TYPE_TO_USE?,) RETURN...
  18. jbpelletier

    jpg to bitmap?

    hi im loading a bmp fileinto a tbitmap then i do some canvas manipulation like this : //filename is 'file1.bmp'; my_bitmap:=Tbitmap.create; my_bitmap.LoadFromFile(filename); //canvas manipulation my_bitmap.free; i would like to be able to do the canvas manipulation either if...
  19. jbpelletier

    wsMinimized hide taskbar

    hi, when i set the option windowstate to wsMinimized on my form, my form load as maximized but it hide the windows task bar. I dont have that problem under NT station so far. Only win xp station seems to have this problem... any idea on how to solve this? tanx jb
  20. jbpelletier

    folder selection dlgbox

    hi i need something like this : Application.GetOpenFilename but to select a folder with office 97/ in access and excel vba jb

Part and Inventory Search

Back
Top