ZShop (ALPHA 0.1) - The Community Image Editor
Here is the place to post images, videos and downloads of your current and upcoming applications that you are working on.
I made a plugin that inverts colors in the image:
Also, i think it would be a good idea to add a constant called "Name" so in your program's sidebar, the name will be shown, not the file name
------------------------------------------------------Also, i think it would be a good idea to add a constant called "Name" so in your program's sidebar, the name will be shown, not the file name
You do not have the required permissions to view the files attached to this post.
Is there a way (in the plugin) to manipulate the ZShop form, like hiding and showing?
You can use Process.GetCurrentProcess() to retrieve the main window handle, then you can use ShowWindow etc
mandai wrote:You can use Process.GetCurrentProcess() to retrieve the main window handle, then you can use ShowWindow etcIn other words
VB.NET
Code: Select all
C#
Constant Hide as integer = 0
Constant Show as integer = 5
<DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _
Private Shared Function ShowWindow(ByVal hwnd As IntPtr, ByVal nCmdShow As ShowWindowCommands) As Boolean
End Function
ShowWindow(Process.GetCurrentProcess().MainWindowHandle, Hide)
Code: Select all
using System.Runtime.InteropServices;
using System.Diagnostics;
[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
const int Show = 5;
const int Hide = 0;
ShowWindow(Process.GetCurrentProcess().MainWindowHandle, Hide);
I made this in C# first then converted to vb
I got the hiding part working but not the showing part *waiting for someone to fix it*
Resources
-http://pinvoke.net/default.aspx/user32.ShowWindow
-My C++ Beginner experiences
Zulf wrote:When I finish. :PWould you answer my PM pleasw? I made a blur plugin but if you dont want it, okay...
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;
Over 30 projects with source code!
Please give reputation to helpful members!
![Image]()
![Image]()
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;
Over 30 projects with source code!
Please give reputation to helpful members!

Copyright Information
Copyright © Codenstuff.com 2020 - 2023