Re: My pop ups for windows module

2019-12-31 Thread ToddAndMargo via perl6-users
Hi All, My latest three modules. two more in the works that use these: WinReg.pm6 WinMessageBox NativeConstants.pm6 WinReg.pm6 about killed me! -T # unit module WinReg; # WinReg.pm6 #`{ Utilities to operate on the Windows registry perl6 -I. -c WinReg.pm6 Test one liner:

Re: My pop ups for windows module

2019-12-29 Thread ToddAndMargo via perl6-users
On 2019-12-26 23:15, WFB wrote: Hi Todd, I refactored your code a bit to make it a bit more readable IMHO. Thinking on publish it on modules.raku.org if you are not interested to do so. Hi Bill, I did not think I would like enum, but wound up liking it anyway. my

Re: My pop ups for windows module

2019-12-27 Thread ToddAndMargo via perl6-users
On 2019-12-26 23:15, WFB wrote: Hi Todd, I refactored your code a bit to make it a bit more readable IMHO. Thinking on publish it on modules.raku.org if you are not interested to do so. Hi Tom, I am interested, but not quite yet. There are three dependent modules

Re: My pop ups for windows module

2019-12-26 Thread WFB
Hi Todd, I refactored your code a bit to make it a bit more readable IMHO. Thinking on publish it on modules.raku.org if you are not interested to do so. #`{ Reference: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-messagebox

Re: My pop ups for windows module

2019-12-07 Thread Tom Browder
On Sat, Dec 7, 2019 at 05:41 ToddAndMargo via perl6-users < perl6-users@perl.org> wrote: > Hi All, > > I wrote and extensive module for pop up in Windows. Todd, you need to publish your module to the Raku module ecosystem. Many people, including myself, want to see an easily-installable module

My pop ups for windows module

2019-12-07 Thread ToddAndMargo via perl6-users
Hi All, I wrote and extensive module for pop up in Windows. It does not contain a time out option. Maybe some day I will work on the timer function. Thank you all for helping me with various parts of this! There are basically two subs to import WinMsg and WinPopUp Here are some one