![]() |
|
[HELP] Rounded Edges - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Coding (https://sinister.ly/Forum-Coding--71) +--- Thread: [HELP] Rounded Edges (/Thread-HELP-Rounded-Edges) |
[HELP] Rounded Edges - Solixious - 09-19-2012 Is it possible to have round edged GUI for both normal and pop up windows. If yes, how can we do it? Thank you. RE: [HELP] Rounded Edges - 1234hotmaster - 09-19-2012 There is a API For it that was made for Win 98 but... It will make your program look horrible on any other OS. I don't currently have the single code for the API but after some search here I made a example: Code: #include-once
#include "GUIRoundCorners.au3"
#include "WinGetClientInfo.au3"
$gui = GUICreate("hi", 300, 300, -1, -1)
GUISetState()
_GuiRoundCorners_Lite(WinGetHandle($gui),10)
While 1
Switch GUIGetMsg()
Case -3
Exit
EndSwitch
WEndDownload these and put them in the same dir: https://dl.dropbox.com/u/55919024/include.zip _GuiRoundCorners_Lite has 2 parms, first is win handle, second is diameter. RE: [HELP] Rounded Edges - Solixious - 09-20-2012 It looks awful in a normal GUI, but I'll use it with pop up GUI... Thanks a lot! |