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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ROBLEMMENS

  1. ROBLEMMENS

    Fax Notifications Windows 2003 Server

    Hi, we are using the fax service from windows 2003 server. Everything works but i'm unable to get the notifications to work. Normally when a user sends a fax on one of the last pages of the fax wizard he or she can enable a notification to be sent after succes/failure. This tab isn't there...
  2. ROBLEMMENS

    Save E-mail inclusive attachments as one object

    The file format is irrelivant, its just threaded as a bunch of bytes by outlook and saved with the message file.
  3. ROBLEMMENS

    Save E-mail inclusive attachments as one object

    In Outlook there is an option to save an e-mail including any attachments as one single file. On opening this (eml-)file the attachments are visible within the message and can be opened seperately. However in Groupwise if I choose to save an e-mail with attachments, I am forced to save every...
  4. ROBLEMMENS

    Interbase 7 server crashes

    I'm trying but i can't download it from borlands site, contacted there office and they told me to send tem a email. Waiting for a reply from them now. Anyway, thanks for your reply!
  5. ROBLEMMENS

    Interbase 7 server crashes

    We have a document archiving tool that runs with interbase 7. Sometimes the server crashes and needs to be restarted. At first this crash occured every half an hour. After a while i noticed that the windows temp directory was filled with IB_Merge an IB_Sort files a quick google learned that the...
  6. ROBLEMMENS

    How to retrieve multi selection fast?

    ok i'll do that thanx for your reply
  7. ROBLEMMENS

    How to retrieve multi selection fast?

    In the main window there is a list with all documents in the program, at startup the list is loaded in the grid and the newest documents are on top. The users want to be able to scroll trough the entire list, select the records they want and then do something with that. When a user performs an...
  8. ROBLEMMENS

    How to retrieve multi selection fast?

    I'm using IB_Grids, the only way i know to get all selected rows is to loop the buffer and check if a row is selected, like this: q.BufferFirst; While not q.BufferEOF do begin if q.Selected[q.BufferRowNum] then begin if(WhatInList = COL_NUMBERS) then...
  9. ROBLEMMENS

    IB Event's not working correct in ib7

    i had already downloaded the newest update for the IBX, i thinck i go with the IB-Objects. They offer me much functionality i missed in the IBX. Thancks for your replies
  10. ROBLEMMENS

    IB Event's not working correct in ib7

    i was using the ibx library deployed with delphi, i just tried out the IBObjects in the application and they seem to work fine, Should i port it to use the IBObjects??
  11. ROBLEMMENS

    IB Event's not working correct in ib7

    I have "ported" an application written in Delphi6 to Delphi7 it seems to work fine but the app does not recieve events anymore. I Commit after posting an event and all my event handlers are registred by the server. When i post an event from within the ib-console and commit it, nothing...
  12. ROBLEMMENS

    Stored procedure returning multiple rows

    hi, im using Delphi6 and Interbase 6, i need a stored procedure that returns more than one row but whenever i try to create the procedure it says token unknown ; ? This is my procedure: CREATE PROCEDURE TEST_PROC(DOC_NR INTEGER) RETURNS AS BEGIN SELECT * FROM DOCUMENT WHERE NR = :DOC_NR...

Part and Inventory Search

Back
Top