Graphics Tool set to use in our Windows Application

I know I am most likely in the wrong forum, but I am unsure where to post.
I am looking for information about using Fireworks or Photoshop type tools in our companies application. Licensing them or using open source graphics tools such as Paint Brush, AirBrush, Stamp, smudge, burn, dodge, etc. Just a small subset of graphics tools from what is available.
Does any one konw where I should be to get this info? Calling Adobe has been fruitless for multiple tries.
Our app is developed in .Net and C#.
Thank you for any direction you can provide.
John C.

Why not get in touch with the folks at Paint.Net who've developed an open-source graphics program in .Net using C# ?
http://www.getpaint.net/index.html
Ken

Similar Messages

  • Data Management tools to go along with our PeopleSoft applications.

    Hi All. 
    We're looking into Data Management tools to go along with our PeopleSoft applications. 
    So far we have done a little looking into solutions from Informatica for Data-Archiving, Data-Subsetting, and Data-Masking. 
    All three appear to have pre-built PSoft solutions, and go after what we are trying to achive. 
    I was wondering if anybody could weigh in on the Products, or others that they have used, custom for PeopleSoft Apps (Fin & HR). 
    Thank you, Ed

    A lot of the time PeopleTools contains a lot of features that we do not know or have forgotten and tend to use external (paid) solutions.
    If you do not have a copy yet, please have a look at the following book written by Paula Dean and Jim Marion.
    PeopleSoft PeopleTools Data Management and Upgrade Handbook (Oracle Press)

  • User exits : How to build and use through our form application ?!

    Hi ,
    Im trying to build a user exit based on a C++ program , to be used within our application.
    I installed from the Oracle 8 Client CD the Oracle Pro*C/C++ ver 8.0.5 , i have Developer 2000 rel 6.0 patch 7 installed also .
    Can anyone please provide me with the steps to build a user exit from A-Z , i read many Documents regarding that but all seems to me complicated , since also im not a C programmer , what i did for the time bieng i searched for file that ends *.pc on my hard disk and i found some of these files , i opend the Pro* C/C++ and it generates for me a *.C file , i reached this stage , then what should i do then to complete the task , for me i went directly to Forms and added a Button that calls the USER_EXIT built-in function , but simply it gave me an error message : User exit doesn't exist .
    So Please if you could list for me the steps one by one i would be so graetful to you .
    Thanx all in advance for all your efforts .
    Islam

    Why not make a stored procedure or PL/SQL-procedure? What you have to do is, to build a new version of runform, where you including your user-exits.
    But if you insist: Use the help system. They have a description of how to do it on windows. It's more or less the same on unix.

  • Create pdf using 16 bit windows application

    Hi
    Just installed a new PC with Vista Ultimate and the Web Premium CS3 suite.
    In my printers control panel I have listed Adobe pdf as an available
    printer.
    This works fine except for one program that uses the 16 bit wow exec. When I tell it to print to the default windows printer it works OK but when I
    change the default to adobepdf- it appears nothing happens. There are no
    error messages.
    If I install "primopdf" the free version and set that as my default printer
    the 16 bit program creates a pdf file normally.
    Is this an acrobat problem or one relating to my accounts package? if the
    latter then why does primo pdf work ok
    Any ideas anyone?
    thanks
    Ian

    well make sure you have Service Pack 1 installed and make acrobat is at 8.1.2. Then remove the pdf printer and do a repair of acrobat. Make sure that third party pdf printer is uninstalled before any of this cause that is going to cause you problmes.

  • Just transferred data to iMac from working Mac Pro that is using Parallels and Windows 7 and the Biblesoft 5  and it will not open on the iMac the only change is the my new iPhone number is  OS.  Any ideas?

    Just transferred data to iMac from working Mac Pro that is using Parallels and Windows 7 and the Biblesoft 5  and it will not open on the iMac the only change is the new Maverick OS from the macpro Lion OS.  Any ideas?
    <Personal Information Edited by Host>

    Setup Assistant and Migration Assistant do not restore MS Windows, it only does the OS X partition. All of your Windows stuff must be backed up and restore using a MS Windows application. If no one on this forum is able to answer your question then I'd repost it on a Parallels forum to see how other Windows users approach this.

  • Integrate Window Application with SAP B1

    Hi
    Can we use EAI Technology to integrate our window application with SAP B1.
    if yes then from where i get the material regarding this
    Thanks
    Rupinder

    Hi Rupinder,
    You can integrate your windows application with B1 at the data level via COM based DI API. Some of the SDK samples are built as Windows Form applications that use DI API to integrate with data in B1.
    HTH
    Aravind

  • Best Practice to use a single root Application Module?

    I was reading in another thread that it may be a good idea to have all application modules nested within a single root application module (AM) so that there is only 1 session maintained for the root AM, versus an individual session for each AM. Is this a best practice? If yes, should the root AM be a skeleton AM (minimal customer service methods), or, should you select the most heavily used AM and nest the other AM's underneath of it?
    In my case, I currenlty have 2 AM's (and will have 3 AM's in the future) each representing a different set of use cases withn the application (i.e., one supports users searches / shopping cart-like functionality, and the second supports an enrollment process.) It could be the case that a user only accesses pages on the web site to do searches (first AM), or only to do enrollment (2nd AM), or, they may access pages of the site that access both AM's. Right now I have 2 separate AM's that are not nested. Should I nest the AM's and define a root AM?
    thanks

    Hi javaX
    The main physical effect of having 2 separate AMs is that they have their own transactions with the database, and presumably sit in the application module pool as their own instances consuming connections from the connection pool. Alternatively a single root AM with 2 nested AMs share a single transaction through the root AM; only the root AM controls the transaction in this scenario.
    As such it's a question of do you need separate transactions or will one suffice?
    How you group your EOs/VOs etc within the AMs is up to you, but usually falls into logical groups such as you have done. If a single transaction is fine, instead of creating multiple AMs, you could instead just create logical package structures instead. Neither method is right or wrong, they're just different ways of structuring your application.
    When you create a nested AM structure, within your ViewController project in the Data Control Palette you'll actually see 3 data controls mapped to each AM. In addition expanding the root AM data control, you'll see the nested AMs again. Create a dummy project with a nested AM structure and you'll see what I mean.
    If you base your page definitions on anything from the root AM and it's children in the Data Control Palette, this will work on the root AM's transaction.
    If you base your page definitions on something from one of the other AM data controls that isn't inside the main root AM in the Data Control Palette, instead of using the root AM's transaction, the separate child AM will be treated as root AM and will have its own transaction.
    The thing to care of when developing web pages is to consistently use the AM and it's nested AMs, or the child AMs directly with their separate transactions, otherwise it might cause a bit of a nightmare debugging situation later on when the same application is locking and blocking on the same records from 2 separate AM transactions.
    Hope this helps.
    CM.

  • Templates used in the Apex application - How can we (re)used them ?

    Hello,
    when using the application builder itself, there are some page templates which can be very useful for our specific applications made by APEX. For example, the page "Report edition" (to detail a region based on report) is a very nice functional template, for these reasons :
    1. implementing a tab navigation inside a region (region definition / report attributes / print attributes)
    2. implementing a master/detail view, with multiple details and the possibility to show or hide these regions thanks to the header and the buttons on it (Show all / col attributes ....)
    Is there an easy way to integrate these good practices in our pages (existing wizards ? others techniques ?)
    Thanks,
    VF.

    Frit,
    See if the following post by David Peake helps:
    http://dpeake.blogspot.com/2009/01/preserving-user-saved-interactive.html
    Regards,
    Naveed.

  • Recording Captivate 4 with WPF windows applications

    Is anyone having issues recording captivate sessions using a WPF windows application. Specifically, I lose my ability to view data in any drop down control, although the data is there as I can retrieve it using the keypad. I have also had issues with the application locking after clicking on the drop down arrow. I have been assured by the development group that they have stuck to standard WPF controls, not any exotic third party controls. Any assistance would be greatly appreciated.
     

    Hi there
    Hmmm, this makes me wonder if WPF is what's used for presenting the Advanced Actions in Captivate. I say that because I personally had issues with capturing this area in Captivate.
    One suggestion is to establish a remote desktop control from the PC with Captivate. You actually run the problematic application on a separate PC. You control it remotely from the PC where you have Captivate installed. Because it's simply a windowed application on the PC where Captivate is installed, you can usually overcome any incompatibilities between the application and Captivate.
    Hopefully this helps... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • I'm using a pc, (windows 8.1,) and I cannot get a thick and thin line with CS6. None of the brush tool settings have any effect, even in the preview. Is there a setting I need because I'm using a pc?

    I'm using a pc, (windows 8.1,) and I cannot get a thick and thin line with CS6. I want to draw, but I cannot get any linework like I should. I also use Sketchbook Pro, and ToonBoom, and I get wonderful linework. But not with Photoshop.
    None of the brush tool settings have any effect, even in the preview. Is there a setting I need because I'm using a pc and not a mac?

    Thanks for your response,
    I'm using a Fujitsu T901 laptop, with a stylus pen. Painting works great in Photoshop, but for drawing there is no sensitivity at all.  Frans Vischer
    author and illustrator of Fuddles, A Very Fuddles Christmas and Jimmy Dabble
    www.fransvischer.com
    pamperedfatcat.wordpress.com

  • ACROBAT XI Pro -EDIT TOOL SET  - POP-UP WINDOW IS TOO LARGE

    Good Day -
    I've been experiencing very nagging problem since installing recent Acrobat Xi Pro uodate (on windows 7 system):
    Specifically - I cannot edit/change the TOOL SET to include needed TOOLS (i.e., that were all previously in my Tool set) as the EDIT TOOL SET WINDOW (i.e., pop-up
    window) is TOO LARGE and does not allow scrolling/ or moving down to SAVE  any tool sets and or tool set changes. Very frustrating as all attempts (and recommendations from reviews/support) for decreasing the size of EDIT TOOL SET WINDOW (popup) in order to save (i.e. include ANY) tools have been unsuccessful.  So for past week I've been unable to include/use any TOOLS for working in (i.e., editing/commenting etc) pdf's.  Has anyone else experienced this problem?  Would greatly appreciate any / all steps & recommendations for fixing.
    Thank-you!

    First, make sure you are on the latest update 11.0.09. Help->check for updates should get you there.
    If check for updates says that you have the latest, see if the setting: Edit->Settings->General->Basic Tools->Scale for screen resolution and try various options (you'll have to restart Acrobat with each selection)

  • How do I do this to use OVerdrive media on deviceThe Apple device must be formatted for use with Microsoft Windows.  The iTunes setting 'Manually manage music-' must be enabled for the device before you can complete the transfer.

    I cannot make these directions work
    I downloaded media on Overdrive MEdia on my PC
    I have the overdrive media ap on my I pod touch 4g
    this media is suppossed to be compatible w/I pd touch
    Notes on Transferring OverDrive MP3 Audiobooks…
    Most MP3 capable devices should play OverDrive MP3 Audiobooks.
    If you intend to transfer OverDrive MP3 Audiobooks to an Apple® device, note the following…
    iTunes® v9.0.2 (or newer) is required.
    The Apple device must be formatted for use with Microsoft® Windows®.
    The iTunes setting 'Manually manage music…' must be enabled for the device before you can complete the transfer. Adjust this setting in iTunes as follows…
    Connect the iPod® to your computer.
    If it does not launch automatically, open iTunes v9.0.2 (or newer).
    In iTunes, locate the device in the left vertical navigation panel (under heading 'DEVICES'), and click the device.
    The 'Summary' screen is displayed. 
    Place a checkmark next to 'Manually manage music…'.
    Click the 'Apply' button.
    The iTunes 'Summary' screen refreshes, and the changes are saved.
    If desired, close iTunes.
    Note that if an Apple device is connected to your computer, you can choose to simultaneously transfer a title to the iTunes Library and the Apple device. If you wish to only transfer a title to the iTunes Library, you must first disconnect the Apple device

    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities
    Also you said " I want to add them to my iCloud, and also back to my computer.   " Note that unless  subscribe to iTunes match, only iTunes purchases are stored in iCloud.
    Also,
    You can redownload most iTunes purchases by:
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Can i use an external hard drive in windows to add additional storage after my initial partition is set up. i want to add a 500 GB hard drive to use with my windows. I set windows up in boot camp with a 50 GB partition?

    can i use an external hard drive in windows to add additional storage after my initial partition is set up. i want to add a 500 GB external hard drive to use with my windows. I set windows up in boot camp with a 50 GB partition? I now want to add another 500 GB?

    Yes. Windows supports external USB drives.

  • Hi! I'm a Windows XP convert... switched to an imac about 4 months ago and am LOVIN' it  As a graphics designer I did use a feature on my Windows machine which I really miss on my mac... beaing able to see a preview of one of the images in a folder on top

    Hi! I'm a Windows XP convert... switched to an imac about 4 months ago and am LOVIN' it As a graphics designer I did use a feature on my Windows machine which I really miss on my mac... beaing able to see a preview of one of the images in a folder on top of the folder icon. In other words, in Windows, you can see the first image that is inside the folder as an icon on the folder itself. Is there a way to do this on the mac? Maybe some software program that will do it? Thanks for you help!

    It would be brilliant if Apple could make picture folders behave like events in iPhoto. You could see a photo on the folder, and also mouse over it to change pictures.
    But no, there's not an application I'm aware of that does this. You can manually make a picture the folder icon, but it's a tedious process.
    Unfortunately this is another example of how dated and worn out the Mac's interface is. The concept of using a file folder as the icon for a directory of images is so 80's. You could use coverflow, but that only helps once you're in the directory itself. Or use iPhoto or Aperture, although they just do photos. Or try Lyn as an alternative: it has a sort of iTunes-like interface, and makes it easy to organize photos without having to put them in iPhoto. And it can display photos that are already in Libraries.
    But you'd probably need a Finder alternative. I use Leap, which displays any type of document. It also does tagging, which is another huge omission in the Finder. More like Windows Explorer (although still no photo on folder icons).
    Another very stylish Finder alternative, especially useful for pictures, is FileBrowse. I don't know why it hasn't gotten more attention. It DOES put photo previews on the folders it shows. And allows one-click expansion to show the photo enlarged. It's super fast, and even allow you to group/sort by camera or flash! It really has to be seen to be appreciated. It works in Lion, although it doesn't seem to be have been updated lately. http://www.filebrowse.com/index.html
    Rob

  • Setting up a small business network using mac and windows pcs

    Setting up a small business network using mac and windows??

    Ok that sounds great. What is your actual question as it relates to AirPort networking? Is it: Can I set up a wired/wireless network with an AirPort base station that support multiple Mac & PC clients? If so the answer is yes.
    If, instead, it is how to I configure an AirPort network to support a small business you will have to provide more details on both your networking & computing equipment in order for any of us to help you.

Maybe you are looking for

  • Unable to Generate Printed Documentation in PDF Format

    This past week I started having a consistent error when attempting to generate a Printed Documentation layout. This error reads "Internal error encountered,  Failed to generate Printed Documentation."  Prior Printed Documentation builds on this same

  • Why is the file size so small?

    Why is a certain file of about 40 MB that I created, possibly with InDesign CS2, reduced to about 6 MB when I open and rename it using "save as" in InDesign CS4? The 40 MB and 6 MB versions both look identical on the screen and when printed. This jus

  • Wifi will not stay connected after Lion upgrade - help?

    I upgraded to Lion last week on my iMac and now my computer will not stay connected to wifi...  it is fine if I restart my computer, but then it looses its connection, settings when it goes in to screen saver mode - very frustrating, please help!

  • Photoshop actions beveled mats

    I'm looking for a nice action for white mueseum quality beveled mats. Nothing colored They could have a black trim but of the quality you would see in a mueseum as opposed to arts & crafts.I'm using a Mac pro Intel, 5GB RAM Leopard 10.5.4 Photoshop C

  • Clock runs 6 minutes behind after 4.3 download

    I have a lot of the same issues that everyone has with their G3 since 4.3; poor battery life, iffy WiFi connection, and flaky connection with the Bluetooth in my Prius - There is another issue with my G3 that since the 4.3 download that I have not se