C3PO - Scanning a Folder & Detecting user's "drag-and-drop" operations

We are using Novell C3PO to export messages in XML format when the user
press a button at the GroupWise Client message window, and this was done to
provide an integration with a ERP software (from a very famous company here
in Brazil), so the user reads his emails and can click this button and open
the ERP ORDER SCREEN with all costumer's data filled in, that increases the
productivity of the Sales Departament.
REsuming, the main porpouse is to collect information of each email to open
the Order Screen of the ERP system, without having to type everything again.
The costumer wanted to go on and get several messages at the same time, that
was stored on a GroupWise Folder, using a simple redirection rule and this
was done using Visual Basic (called here "looking process"), that looks for
messages into a specific folder in the GroupWise Client called "_Send". So,
convert that messages to XML and then move to another folder called
"_History".
Now we can drag many messages at the same time to the folder _Send and then
they will be converted. It is working very well. The problem is that the
GroupWise Client computers are becoming slower because of the "looking
process" (that VB application). We used VB because we could not find a
process or a feature in C3PO that selects several messages at the same time
and read them one-by-one.
QUESTIONS :
1- Can I have this "Looking Process" using C3PO tools ?
2- Is there a way to detect a "Drag-and-Drop" event in the GroupWise Client
with C3PO, so I would not need to scan those folders ?

Jose Calil Nassur wrote:
> We are using Novell C3PO to export messages in XML format when the user
> press a button at the GroupWise Client message window, and this was done to
> provide an integration with a ERP software (from a very famous company here
> in Brazil), so the user reads his emails and can click this button and open
> the ERP ORDER SCREEN with all costumer's data filled in, that increases the
> productivity of the Sales Departament.
> REsuming, the main porpouse is to collect information of each email to open
> the Order Screen of the ERP system, without having to type everything again.
>
>
I've been doing something similar, but rather than creating a new
message, I've been using custom properties
on each mail, so as they arrive I add two tags, one with a tagID, and
the other with metadata. I then write
searches for each folder returning only the message that are yet to be
tagged. Nice and efficient, written
in C#. I've run over my big mailbox (2GB) and the box hardly raises a sweat.
Sincerely,
Adam Bradley
Identity Concepts
Mobile : +61 419 637 518
email : adam_j_bradley \at\ identityconcepts.com.au
irc: #nidm on freenode.net
Web : http://www.identityconcepts.com.au

Similar Messages

  • RE : Drag and Drop operations between two outlinefields

    Hi,
    Has any one tried the drag and drop operations between two Outline widgets ina
    window.Any help appreciated.
    Thanks
    balsubHi Balsub,
    Here are some lines which can help you :
    First of all, your 2 OutLineFields must be in a draggable state.
    In the event loop of your window, you have to listen to the event
    ObjectDrop
    on the 2 OutLineFields :
    When Self.<MyOutLine1>.ObjectDrop(SourceX = SourceX,
    SourceY = SourceY,
    SourceField = SourceField,
    TargetX = TargetX,
    TargetY = TargetY,
    TargetField = TargetField) do
    When Self.<MyOutLine2>.ObjectDrop(SourceX = SourceX,
    SourceY = SourceY,
    SourceField = SourceField,
    TargetX = TargetX,
    TargetY = TargetY,
    TargetField = TargetField) do
    Then, when you receive this event, the LocateNode() method will give you
    the DisplayNode which is beeing dragged :
    (assume that your OutLineFields are mapped to the class named :
    ClassOutLine,
    and Col is an Integer which is not important here)
    TheSourceLine : ClassOutLine;
    Col : Integer;
    TheSourceLine = (ClassOutLine)((OutLineField)(SourceField).LocateNode(X
    = SourceX,
    Y = SourceY,
    Column = Col));
    If you want to remove this line from the Source OutLineField :
    TheSourceLine.Parent = Nil;
    TheSourceLine.UpdateFieldFromData();
    If you want to insert this line at the end of the Target OutLineField :
    TheSourceLine.Parent = (OutLineField)(TargetField);
    TheSourceLine.UpdateFieldFromData();
    And if you want to insert this line before or after the Target line of
    the Target OutLineField :
    TheTargetLine : ClassOutLine;
    TheTargetLine = (ClassOutLine)((OutLineField)(TargetField).LocateNode(X
    = TargetX,
    Y = TargetY,
    Column = Col));
    TheTargetLine.PrevSibling = TheSourceLine; // Insert the source line
    before the target line
    or
    TheTargetLine.NextSibling = TheSourceLine; // Insert the source line
    after the target line
    TheTargetLine.UpdateFieldFromData();
    I hope this help you !
    - Manuel -
    Manuel Deveaux
    Forte Developer
    Mutuelle Pr&eacute;viade
    FRANCE
    E-Mail : [email protected]
    -----------------------------------------

    There is no configuration for it. It should work.
    Can you try it in a different user account. If it works in a different account, then it is likely something in your current user account that is messed up. If it doesn't work in another user account, then it is likely something with Mail, itself. 
    You could try downloading and installing the 10.6.7 combo update. That may repair what is wrong.

  • Regarding - Drag and Drop operations between two outlinefields

    Hi,
    Has any one tried the drag and drop operations between two Outline widgets in a window.Any help appreciated.
    Thanks
    balsub

    There is no configuration for it. It should work.
    Can you try it in a different user account. If it works in a different account, then it is likely something in your current user account that is messed up. If it doesn't work in another user account, then it is likely something with Mail, itself. 
    You could try downloading and installing the 10.6.7 combo update. That may repair what is wrong.

  • How to perform a Drag and Drop operation on JButton in a JPanel?

    Hi guys,
    There is a requirement to perform Drag and Drop operation on JButton component added to a JPanel Componet.
    I could not get a proper solition to move the JButton component inside a JPanel component by drag and drop.
    I request every one to provide some related information on moving a JButton component using Mouse operation.
    Rajashekar.T

    Here is some code for moving a window around the screen. The concept would be the same for moving a button around a panel:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=599181

  • Drag And Drop operations do not call custom IRM Protector

    We are developing our own custom IRM Protector, 
    So far we have successfuly integrated our IRM Protector into Sharepoint, and download operations and upload operations do protect and unprotect documents. Also move operations between libraries, through Send To ribbon action, call HrProtect and HrUnprotect
    methods as needed. 
    However, in our test environments, when using drag and drop operations between Libraries or folders, the IRM Protector is not being called at all. We have tried to update our test environments to the latest Cumulative Update, without success. Is there any
    known bug around the drag and drop functionality? 
    If true, Drag and Drop suposes a great security threat, and we cannot deliver our protection product to our customers, as it would mean document protections could be bypassed by a simple sharepoint operation.
    Thanks,

    We are developing our own custom IRM Protector, 
    So far we have successfuly integrated our IRM Protector into Sharepoint, and download operations and upload operations do protect and unprotect documents. Also move operations between libraries, through Send To ribbon action, call HrProtect and HrUnprotect
    methods as needed. 
    However, in our test environments, when using drag and drop operations between Libraries or folders, the IRM Protector is not being called at all. We have tried to update our test environments to the latest Cumulative Update, without success. Is there any
    known bug around the drag and drop functionality? 
    If true, Drag and Drop suposes a great security threat, and we cannot deliver our protection product to our customers, as it would mean document protections could be bypassed by a simple sharepoint operation.
    Thanks,

  • In finder cannot easily change files from one folder to another. Drag and drop does not work. There should a cut and paste feachure.

    In finder I cannto easily change files from one folder to another.  There should de a cut and paste for this.  Not drag and drop. thanks P.

    paulfromqueretaro wrote:
    In finder I cannto easily change files from one folder to another.  There should de a cut and paste for this.  Not drag and drop. thanks P.
    OS X is all about keyboard shortcuts.
    To cut       cmd+x
    To copy     cmd+c
    To paste    cmd+v
    With the Mouse, hold command and drag to your destination.

  • Drag and Drop operation of SWT is not working in windows 7

    I have created VB script to elevate all administrator permissions to user and launched my application but not able to drop image to label in my application on Windows 7. It works fine if I remove User Account Setting (UAC). Please help how I can solve it.

    WTF? What are you talking about?
    Drag and drop of what from where to where does not work how?
    - What are you dragging?
    - From Where?
    - To Where?
    - What do you expect to happen?
    - What happens?
    - Why do you expect that to happen?
    - What technologies are you using?
    Basically, read [_How To Ask Questions The Smart Way_|http://www.catb.org/~esr/faqs/smart-questions.html].

  • Drag and drop operation resulted in files gone missing

    I would really appreciate some help as I have lost about 80 files. Here's what happened: I had a big folder of several hundred files and I was moving those files– photographs – into subfolders.I selected the photo in bridge and then used a drag and drop method to move it. It all went well except in two instances. One group of photos I dragged it to the wrong folder but when I searched I found them. Another group has gone missing. I have searched the whole computer for names of some of the photos in the missing group.it is as if they vanished into thin air. What could have possibly happened?
    Thanks in advance!

    I selected the photo in bridge and then used a drag and drop method to move it. It all went well except in two instances.
    I always use the drag and drop method and if it goes wrong I usually are to fast and don't wait for Bridge to have completed or I did not point to the correct folder.
    Without knowing what system you are on and what version of bridge you are using I agree with Curt that the files must be somewhere on your system (also check the Bin) and you better use a dedicated system search for it.
    And what is "group.it"? If I do a google search it stops without result and group.it also has not understandable  or related results?

  • Drag and Drop e-mails to a SharePoint Online Folder

    Summary
    E-mail to a list is not available in SharePoint Online (yet) and it is difficult to move e-mails from Outlook to a SharePoint list for collaboration, storage and search.  The following steps will put a file on the users desktop that will open a SharePoint list and then you can drag and drop e-mails into the proper folder. 
    Step 1
    Create a drag and drop folder location for SharePoint Online e-mails
    1.       Go to your SharePoint Online shared documents location
    2.       Create the folder structure that you want for your e-mail storage
    3.       Click on your top folder
    4.       Click on Actions
    5.       Open with Windows Explorer
    6.       In the address bar at the top of the Explorer Window copy the address
    Step 2
    Go to Start, Computer
    1.       Click on Map Network Drive
    2.       Paste the address copied above into the Folder box
    3.       Check Reconnect at logon
    4.       Take note of the drive letter given or choose a drive letter
    *note these instructions are for Windows 7 – you can search help for Map Network Drive for the OS you are using
    Step 3
    Open Notepad
    1.       Type in the following:
    “explorer z:”  (leave out the quotation marks and enter the drive letter in step 2
    2.       Click File
    3.       Click Save As
    4.       File name OpenEmail.bat
    ·         Note the file name does not matter but the .bat has to be there
    ·         Save to the Desktop
    When a user wants to open the SharePoint location that stores e-mail they double click on OpenEmail.bat and it will open in an Explorer view which will allow for e-mails to drag and drop from Outlook into the folder.
    David Allred

    For drag and drop of emails from Outlook to SharePoint we are using a third party
    SharePoint Outlook Integration tool called PageLight. PageLight also offers
    Save Outlook emails to SharePoint functionality

  • Drag and Drop Music folder to iTunes Media folder?

    My HDD lacks the space for running "Consolidating Files" (File->Library->Organize Library->Consolidate Files), since iTunes doesn't move the items but rather copies them to iTunes Media.  My goal is to have the Music folder live inside the iTunes Media folder.   Can I drag and drop the Music folder into iTunes Media?  Any adverse consequences for doing this?   I am trying to straighten my iTunes folder and file structure.  As it is now, in addition to what I mentioned, the *library.xml and other related files are living inside the iTunes Media folder but I believe those should reside under the iTunes folder. How do I get them back out there?  Does any of this reorganization matter?   Everything displays just fine in the iTunes browser.   Thank you for your help.

    ohneSchatten wrote:
    My HDD lacks the space for running "Consolidating Files" (File->Library->Organize Library->Consolidate Files), s
    Where are these files now if not inside the itunes media folder?
    since iTunes doesn't move the items but rather copies them to iTunes Media.
    Correct. Any music now in iTunes should be in /Music/iTunes/iTunes media/ folder.
    Are you looking to add more music to iTunes?
    Do this...
    Go to /Music/iTunes/iTunes media/ folder.
    Find the Automatically add to iTunes folder and make a shortcut on the desktop.
    Drag songs here. This will add to iTunes and move, not copy, the song to the iTunes folder.
    I am trying to straighten my iTunes folder and file structure.  As it is now, in addition to what I mentioned, the *library.xml and other related files are living inside the iTunes Media folder but I believe those should reside under the iTunes folder. How do I get them back out there?  Does any of this reorganization matter
    Go to iTunes prefs > Advanced.
    Makes sure the iTunes media folder location is set to /Music/iTunes/iTunes media/.
    Uncheck Keep iTunes folder organized then click OK.
    Then recheck Keep iTunes folder organized then click OK.

  • Drag and Drop issue from Explorer folder to Music Library

    Hello
    I just updated my iTunes to 8.0.0.20 but something unexpected happened. I can’t drag and drop anymore songs from an explorer folder into my music library when my view mode is set to Grid (Album, Artist, Genre or Composer).
    When I try I have a kind of interdiction circle under my pointer.
    I can only perform this operation in list mode view. Few hours ago it was still possible to perform it but not after I updated. I reinstalled my iTunes but the problem persists.
    I have read the forums I know I can add to my playlist as usual by using the menu. But is it possible to get drag and drop operation when I drags song directly from a folder on my explorer window?
    It would be very appreciated if someone has an answer. I really messed up my library trying to fix this

    I fixed the drag and drop issues I had! Turns out they were caused by the permission problems of Vista. To fix it I just made sure all the files in the iTunes folder and sub folders were full control by my account.
    Make sure you check the properties of the iTunes database specifically because before, the iTunes folder had the correct permissions but they hadn't actually been inherited correctly by the iTunes DB files. Hope this helps anyone else.

  • ADF Button components: How to disable drag and drop [SOLVED]

    Hi everyone
    I need to develop an application which allows not the user to drag and drop button components. I've converted every single af:commandbutton to h:commandbutton, to prevent this behaviour, but a huge lot of other problems arose from this "solution". I'm using JDeveloper 10.1.3.3.0.4157, and I'm a beginner, so please be patient with me.
    Thanks in advance.

    Maybe I've drifted off-topic with this, but I found the way to achieve this. The only limitation is that the change must be done on the client's computer. The drag and drop feature can be disabled by going to the about:config page in Firefox, and setting nglayout.enable_drag_images to false. It can also be done in a more "portable" way by creating a user.js script in the profile folder and setting it from there. Thank you all for stopping by and reading.

  • Drag and Drop to native desktop

    I'm working on drag and drop functionality to and from the user's computer. I have the "from" part working just fine, it's the "to" part that is stumping me. The idea for this applet is that it represents a file structure that is up on a remote server, so none of the files are local. If the user drags a file in, I can easily start an upload to push the file up to the server. However, when the user drags an item from the applet to their desktop or whatever folder, the only way to get this to work is to mimic a file, even though there is no file. What I would like to do is have a droptarget listener set up for the OS that will do everything I normally do within the applet (accept the drop, download the file, store it to the appropriate location). unfortunately, i haven't found any documentation on how this could be done. it looks like the OS wants a List of file objects that it simply copies to whatever destination you drag to. I don't see a way to capture where the file is being dropped, or how to maybe place a dummy file while the download is in progress and then replace the dummy file with the real file. Any advice or direction would be greatly appreciated.

    i'm not sure i get the JavaScript references...
    possibly i can re-phrase the problem in a much simpler fashion that could possibly solve my problems. In a drag-and-drop operation from a java application to the native OS, is there any way to know the context of where your transferable data is going? for instance, is there a way to know that the component i'm dragging is going to the Desktop versus "My Documents"?
    If there is a way, I could do some back-door coding so the user appears to be instantly get the file, while in the background the file is actually downloading and will replace the 'dummy' file when the download completes.
    Is that possible?

  • Drag and Drop files to upload snag

    I am developing a Director projector application that uploads
    a users local files to a server via an FTP Xtra. I would like to
    have an icon on the desktop that the user can drag-and-drop files
    onto and the application automatically uploads the files. I have
    created a folder on the desktop and an application that poll it for
    content to initiate the upload but the problem with this is that
    the user, by dragging files to the folder, will unknowingly move
    the files to "upload folder" and they will be removed from their
    original locations. This is obviously not what anyone desires. I
    would like to have the drag-and-drop trigger the upload from the
    file's current location.
    One solution that I have implemented is using the "Drag &
    Drop Xtra", from Meliora Software, and created a MIAW that looks
    like a desktop folder icon. The problem with this is that the icon
    is present only when the application is running and I can not keep
    it pinned down to the desktop. When it is clicked-on it will come
    to the front, like any other application. Is there a way to keep a
    MIAW pinned down?
    Another POSSIBLE approach would be to place a shortcut to the
    application on the desktop and when a file is dropped on it,
    capture the file path and pass that along to the Director
    application on startup. Is this possible? Is there an Xtra to do
    this or does Director have this capability built in?
    Ideally, we would like to have a folder on the desktop that
    only allows copy-and-paste functionality to itself but that would
    be an OS issue and out of the control of Director. Have any of you
    created such an app? Any ideas are welcomed.
    Thanks in advance.

    > Another POSSIBLE approach would be to place a shortcut
    to
    > the application on the desktop and when a file is
    dropped on it,
    > capture the file path and pass that along to the
    Director
    > application on startup. Is this possible? Is there an
    Xtra to do
    > this or does Director have this capability built in?
    this approach won't work because every time a file is dropped
    on the icon a new instance of the projector will run.
    To achieve that you need:
    1) A Director version prior to MX 2004, Director MX would be
    fine.
    2) Remove the projector's button from the task bar when it
    starts with our Window Xtra:
    wndRemoveFromTaskbar(true)
    3) Move the projector's window to the background with our
    Window Xtra:
    WndSetDepth(wndGetMain(),"back")
    4) Apply a 1-bit alpha mask to change the projector's shape
    to make it looking like an icon, again, with our Window Xtra:
    wndTransInit(member "1BitMask",false,false)
    5) Leave all the Drag&Drop Xtra code for drop as is.
    That's it, it seems MIAW isn't required.

  • Help on drag and drop function

    Hi guys,
    I have a problem creating a drag and drop function for a certain task. The task is as stated below:
    1. Create a VI that enables a user to drag and drop multiple image files into it.
    2. I was thinking of storing all the file names into an array of file names
    3. VI will then convert the image format into an array of 1024 by 768 binary numbers.
    Task number 3 I have already done but I'm struggling with this drag and drop function (Task 1 and 2) and I have read a couple of entries regarding drag and drop function but none fits my specifications.
    In the meantime I can only allow 1 file to be opened by a user at a time and it is quite frustrating if the user has to open like 10 files. He will need to navigate to the folder, select the file, click ok and repeat this for 10 times.
    Hence, I need your help to guide me to create a drag and drop function that allows me to open a file and select all the images 1 want at 1 time.
    Further information: I am using IMAQ to do the image processing.
    Thanks in advance.
    From
    Ridwan

    The Gtoolbox has sourcecode for this.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

Maybe you are looking for

  • HD needs repair but only get a looping Restart with a Leopard DVD and USBHD

    Ok here are my specs Model Name: MacBook Model Identifier: MacBook5,1 Processor Name: Intel Core 2 Duo Processor Speed: 2.4 GHz Number Of Processors: 1 Total Number Of Cores: 2 L2 Cache: 3 MB Memory: 2 GB Bus Speed: 1.07 GHz Boot ROM Version: MB51.00

  • Strange behaviour of .swf movies - AS2/AS3

    Hello from Italy,      this is my first post and I think I need some help from the experts...      I am putting together an interactive Flash movie which is made of several different small movies. For the sake of clarity, I'll call them A.swf, B.swf,

  • Can I mask out a stray hair strand in video clips???

    I have several clips with a person with one small but noticeable stray hair extending below the side of their glasses over their cheekbone.  Is there a way to have the skin tone intelligently mask out/replace that part of the hair over the facial are

  • How to adjust each layer so frames end at chosen position

    Greetings, How can I drag the key frames back within each of the layers below so that they all end on the final scene. Currently when I hit play, the clip runs till the last key frame and the other layers that don't run that length disappear. How can

  • The ODI reverse process use too long time

    I run the reverse process for a customized essbase model, it just keep running and never come out? should I reinstall ODI? I make another test, odiaess_93110_samples.zip, I import the ODI sample_essbase work repository. and I make a reverse process f