Click here to Skip to main content
15,888,254 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I want to run photoshop action through Visual basic UI. i mean if user click on button then photoshop action should run.

can anybody give any hint on that?

thank you
Posted
Comments
Mehdi Gholam 9-Jul-12 5:34am    
What are you trying to do?
[no name] 9-Jul-12 9:16am    
http://www.codeproject.com/Articles/14844/Automate-Photoshop

1 solution

Hi ,

Do want to perform any Photoshop action related with image editing ? If you want to open Photoshop using VB.NET , you can try this :

use Name space :
HTML
System.Dignostics


Write code on button click :
HTML
Dim startInfo As New ProcessStartInfo("C:\programFiles\Adobe\Photoshop.exe") 'Ex
Process.Start(startInfo)


OR

You can directly pass like this :

HTML
Process.Start("C:\programFiles\Adobe\Photoshop.exe")
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900