Jump to content

Recommended Posts

Posted (edited)

good work

btw.
Reading your helpFile i notice:
"Importent links"

there is small typo as it look like you want to say: "Important links"

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Very Nice.

When I use GUICreate("",1,1,1,1,0x00010000,0x00000020)

I got this GUICreate("", 1, 1, 1, 1, $WS_EX_CONTROLPARENT, $WS_EX_TRANSPARENT)

and should be

GUICreate("", 1, 1, 1, 1, $WS_MINIMIZEBOX, $WS_EX_TRANSPARENT)

Also add support for combined magic example 

GUICreate("", 1, 1, 1, 1, $WS_MINIMIZEBOX, 0x00000020+0x00000080)

 

Saludos

Posted

@Danyfirex $WS_EX_CONTROLPARENT & $WS_MINIMIZEBOX have the same value (i.e 65536), In cases like that, MNC auto picks anyone of the constants (it will not effect the GUI in any way) with the same value.

 

Combined support? I can't understand please explain, TD :)

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted

Yes. but it should show the correct one.

if I have a magic like this 0x00000020+0x00000080  or 0x000000A0(same as 0x00000020+0x00000080) . it should show  $WS_EX_TRANSPARENT+$WS_EX_TOOLWINDOW or BitOR($WS_EX_TRANSPARENT,$WS_EX_TOOLWINDOW)

 

Saludos

Posted (edited)

I haven't checked, but some constants might have exactly the same value. So this is no exact science and only a guess on @TheDcoder's part.

Anyhow, nice idea with trying to make code readable. It's a shame we have to create tools such as this =)

Edited by guinness

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 7/26/2015 at 2:24 PM, TheDcoder said:

@Danyfirex $WS_EX_CONTROLPARENT & $WS_MINIMIZEBOX have the same value (i.e 65536), In cases like that, MNC auto picks anyone of the constants (it will not effect the GUI in any way) with the same value.

Hmmmyes, but the latter is a style ($WS_MINIMIZEBOX ) and the former an exstyle ($WS_EX_CONTROLPARENT)
So if the value is in a style position in the GuiCreate then the constant should be '$WS_STYLE' like   ;)

Posted

I can't really test as I don't have AutoIt installed at C:\Program Files. Therefore perhaps you might want to have an option in which a user can choose the AutoIt location. Another thing the link to the source code is being flagged as a bad site. Is it not possible to host it on the Forum?

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

Great  :)

BTW you should remove the .exe from the source .zip . Google didn't allow me to download this zip, saying "this file is infected by a virus"

Posted (edited)

@mikell I will remove the exe file from the sources, this will prevent it from being flaged

@guinness I will implement this feature in the next release :)

 

Edit: Removed exe in sources

Edited by TheDcoder

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted (edited)

Just a word of advice, some people use adblockers and thus sites like bit.ly are blocked due to the potential of linking to malicious content. Therefore not everyone is going to be able to access your Google Drive or some of the links you link to in the source code.

Edit: As you're big on best practices it seems, you might want to check your code with the following...

#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w- 4 -w 5 -w 6 -w 7

Also looking at your code I notice one bug, try this..

GUICreate("Testing,,,, the application", 500, 500)

You see the commas are in the string and not part of the function. There is code around the forum that I have created (see in my signature) in which you can strip strings or a clever way is escaping the comma by prefixing a non-printable character and then using a regex with a lookbehind (it's what I do in PreExpand). Perhaps the first approach is easier.

Edited by guinness

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

@guinness Adblockers block bit.ly? I used ABP but its not blocking for me o:), I am afraid that I need to be a little rude here but they need to disable their Adblocker to access the source :), I will check my script using that, Thanks! TD :)

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted

I have edit my post above. About your suggestion I did that, but it's not the point. Oh well, good luck.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  Quote

Adblockers block bit.ly

As well as recommended firewall settings, for two reasons.  One, URL shortening is widely exploited.  Two, it is .ly, as in Libya.  Blocking all traffic to and from Libya is HIGHLY recommended.  I would suppose proper forum etiquette would be to have the long url in a link tag displaying a common name.

  Reveal hidden contents

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...