Jump to content

Recommended Posts

Posted

Hi, i've created a simple program, asking user to enter his/her email address, e.g dannyd_y@hotmail.com

Or user can enter multiple email addresses, dannyd_y@hotmail.com;dannyd_yq@yahoo.com.

Func mainlobby()
Global $msg, $receiver
local $sendemilbutton,$recipientsread,$recipientsenter

GUICreate($toolname,$width, $height, 500, 250, -1, $WS_EX_ACCEPTFILES) ; will create a dialog box that when displayed is centered
GUISetBkColor(0x6666FF)
$recipientsenter = GUICtrlCreateInput("", 10, 5, 250, 20)
$sendemilbutton = GUICtrlCreateButton("Send Email", 230, 128, 70, 25,-1,0x00000001)

GUISetState(@SW_SHOW)

do
$msg = GUIGetMsg()
Select
Case $msg = $sendemilbutton
if GUICtrlRead($recipientsenter) ="" Then
msgbox(16,"Email Not Input","Cannot Find Any Email")
Else
msgbox(0,"Email Input",GUICtrlRead($recipientsenter))
$receiver = GUICtrlRead($recipientsenter)
CreateMailItem()
EndIf
EndSelect
Until $msg = $GUI_EVENT_CLOSE
GUIDelete()
_Exit()

EndFunc

How do i validate if user is entering the right format. i've made some studies on this it seems like the right way of coding is using StringRegExp, but i coudlnt understand the regular expression pattern at all. Appreciate someone can help me. Many Thanks.

Posted

dannydy,

You might do something like this (not tested)

Func mainlobby()
    Global $msg, $receiver
    Local $sendemilbutton, $recipientsread, $recipientsenter, $aEmail

    GUICreate($toolname, $width, $height, 500, 250, -1, $WS_EX_ACCEPTFILES) ; will create a dialog box that when displayed is centered
    GUISetBkColor(0x6666FF)
    $recipientsenter = GUICtrlCreateInput("", 10, 5, 250, 20)
    $sendemilbutton = GUICtrlCreateButton("Send Email", 230, 128, 70, 25, -1, 0x00000001)

    GUISetState(@SW_SHOW)

    Do
        $msg = GUIGetMsg()
        Select
            Case $msg = $sendemilbutton
                If GUICtrlRead($recipientsenter) = "" Then
                    MsgBox(16, "Email Not Input", "Cannot Find Any Email")
                Else
                    MsgBox(0, "Email Input", GUICtrlRead($recipientsenter))
                    $receiver = GUICtrlRead($recipientsenter)

                    ; start added code

                    $aEmail = stringsplit($receiver,';')

                    for $1 = 1 to $aEmail[0]
                        if stringregexp($aEmail[$1],'^[\_]*([a-z0-9]+(\.|\_*)?)+@([a-z][a-z0-9\-]+(\.|\-*\.))+[a-z]{2,6}$',0) = 1 then
                            CreateMailItem()
                        Else
                            guictrlsetdata($recipientsenter,$aEmail[$1] & ' in error - not sent')
                        EndIf
                    next

                    ; end added code

                EndIf
        EndSelect
    Until $msg = $GUI_EVENT_CLOSE
    GUIDelete()
    _Exit()

EndFunc   ;==>mainlobby

The regexp was found using GOOGLE search. You don't really need to understand it to use it (although better if you do, obviously).

kylomas

Forum Rules         Procedure for posting code

"I like pigs.  Dogs look up to us.  Cats look down on us.  Pigs treat us as equals."

- Sir Winston Churchill

Posted

kylomas example reworked slightly to run without modification.

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
mainlobby()
Func mainlobby()
    Global $msg, $receiver
    Local $sendemilbutton, $recipientsread, $recipientsenter, $aEmail
    $toolname= "abc"
    $width= 320
    $height= 200
    GUICreate($toolname, $width, $height, 500, 250, default, $WS_EX_ACCEPTFILES) ; will create a dialog box that when displayed is centered
    GUISetBkColor(0x6666FF)
    $recipientsenter = GUICtrlCreateInput("", 10, 5, 250, 20)
    $sendemilbutton = GUICtrlCreateButton("Send Email", 230, 128, 70, 25, -1, 0x00000001)

    GUISetState(@SW_SHOW)

    Do
        $msg = GUIGetMsg()
        Select
            Case $msg = $sendemilbutton
                If GUICtrlRead($recipientsenter) = "" Then
                    MsgBox(16, "Email Not Input", "Cannot Find Any Email")
                Else
                    MsgBox(0, "Email Input", GUICtrlRead($recipientsenter))
                    $receiver = GUICtrlRead($recipientsenter)

                    ; start added code

                    $aEmail = stringsplit($receiver,';')

                    for $1 = 1 to $aEmail[0]
                        if stringregexp($aEmail[$1],'^[\_]*([a-z0-9]+(\.|\_*)?)+@([a-z][a-z0-9\-]+(\.|\-*\.))+[a-z]{2,6}$',0) = 1 then
                            ;CreateMailItem()
                        Else
                            guictrlsetdata($recipientsenter,$aEmail[$1] & ' in error - not sent')
                        EndIf
                    next

                    ; end added code

                EndIf
        EndSelect
    Until $msg = $GUI_EVENT_CLOSE
    GUIDelete()
    ;_Exit()
EndFunc   ;==>mainlobby
Posted

Many Thanks both of you(kylomas and Xandy). Its working fine, however if i entered one email address, the program threw me an error on that. its only worked on multiple email addresses. i'm working on it right now, make some modification will handle it. Really appreciate that save me a lot of time:)

Posted

i found the issue, my company address has this hyphen "-". So if i enter any email address with hypen(i.e danny-dy@hotmail.com), it will throw me an error. How to i modify the coding to handle hyphen. i did several trial and error, but i couldn't get it right.

This is the expression for handling underscore

stringregexp($aEmail[$1],'^[\_]*([a-z0-9]+(\.|\_*)?)+@([a-z][a-z0-9\-]+(\.|\-*\.))+[a-z]{2,6}$',0)

This is the expression for handling hyphen

stringregexp($aEmail[$1],'^[\-]*([a-z0-9]+(\.|\-*)?)+@([a-z][a-z0-9\-]+(\.|\-*\.))+[a-z]{2,6}$',0)

How do i make them into one statement, please?

Posted

Sorry I don't know stringregexp() formatting well enough (at all really) to try to write one without getting very frustrated.

I would do something like use stringinstr() to find a '@', make sure it was not the first character. Is there always a '.' after the '@'? I don't know.

Doing it this way would not be that many lines, but it would not be one line. You could smash it into a function though.

I could write it pretty easy, would you like me to do it?

Posted

Xandy, with luck i managed to do it.

Here's the code

stringregexp($aEmail[$1],'^[\_|[color=#ff0000][b]\-[/b][/color]]*([a-z0-9]+(\.|\_|[color=#ff0000][b]\-[/b][/color]*)?)+@([a-z][a-z0-9\-]+(\.|\-*\.))+[a-z]{2,6}$',0)

Basically i added - in the statement(Highlighted in red).

Many Thanks for taken a loop into it.

Posted (edited)

you can check the syntax of an Email.

The Regex would match most of it, excluding the special chars, U+007F above chars IP address domain name and comments.

That's the general syntax many email providers allow only a few chars other than alphanum.

Use a Case-Insensitivity switch(?i), for matching upper-case chars.

Edit: I tried to simplify the regex

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
mainlobby()

Func mainlobby()
Global $msg, $receiver
Local $sendemilbutton, $recipientsread, $recipientsenter, $aEmail
$width = 320
$height = 200
GUICreate('', 320, 200, 500, 250)
$recipientsenter = GUICtrlCreateInput("", 10, 5, 250, 20)
$sendemilbutton = GUICtrlCreateButton("Send Email", 230, 128, 70, 25, 1)
GUISetState()

Do
$msg = GUIGetMsg()
Select
Case $msg = $sendemilbutton
If GUICtrlRead($recipientsenter) = "" Then
MsgBox(16, "Email Not Input", "Cannot Find Any Email")
Else
; start added code
$aEmail = StringSplit(GUICtrlRead($recipientsenter), ';')
$localpart = "[[:alnum:]!#$%&'*+-/=?^_`{|}~.]+"
$domainname = "[[:alnum:].-]+\.[[:alnum:]]+"

For $1 = 1 To $aEmail[0]
If StringRegExp($aEmail[$1], '(?i)^(' & $localpart & ')@(' & $domainname & ')$', 0) Then
ConsoleWrite("Email_" & $1 & " is valid" & @CRLF)
Else
MsgBox(0, "Error", "Email " & $1 & " is not valid")
EndIf
Next

; end added code

EndIf
EndSelect
Until $msg = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc   ;==>mainlobby
The limitations are still the same

Regards :)

Edited by PhoenixXL

My code:

PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.

Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners.

MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. 

Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression.

Posted

I'm sure there is something on RegExLib.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Posted

Very helpful ;)

RegExLib is a website. Take this as a starter.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Posted

What makes an email address "valid" is very complex in practice. Already at the email client level, what is considered valid is variable based on actual client, setup and network context. Then relays have to adhere to the same validity set of rules which is hardly the case. Finally the recipient host also has to consider valid the local part the same way as you did.

This is one of the most complex routine task in IT and I don't believe it can be done unconditionnally from a blind end. Even if the practice is doubtful (due to overload of the servers) I regard asking SMTP the most reliable approach (or the less prone to failure). Of course that means you have access to a (the!) SMTP server on the machine the validation is running on.

I don't know of any online service working correctly.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted (edited)

If the user runs Outlook you could use my OutlookEX UDF to validate the mail address.

Edited by water

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Posted

Yeah or a hidden telnet (more ubiquitous) going thru until answer to RCPT TO: command.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted
:D

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

  • 12 years later...
Posted (edited)
On 4/23/2013 at 9:16 AM, PhoenixXL said:

you can check the syntax of an Email.

The Regex would match most of it, excluding the special chars, U+007F above chars IP address domain name and comments.

That's the general syntax many email providers allow only a few chars other than alphanum.

Use a Case-Insensitivity switch(?i), for matching upper-case chars.

 

Edit: I tried to simplify the regex

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
mainlobby()

Func mainlobby()
Global $msg, $receiver
Local $sendemilbutton, $recipientsread, $recipientsenter, $aEmail
$width = 320
$height = 200
GUICreate('', 320, 200, 500, 250)
$recipientsenter = GUICtrlCreateInput("", 10, 5, 250, 20)
$sendemilbutton = GUICtrlCreateButton("Send Email", 230, 128, 70, 25, 1)
GUISetState()

Do
$msg = GUIGetMsg()
Select
Case $msg = $sendemilbutton
If GUICtrlRead($recipientsenter) = "" Then
MsgBox(16, "Email Not Input", "Cannot Find Any Email")
Else
; start added code
$aEmail = StringSplit(GUICtrlRead($recipientsenter), ';')
$localpart = "[[:alnum:]!#$%&'*+-/=?^_`{|}~.]+"
$domainname = "[[:alnum:].-]+\.[[:alnum:]]+"

For $1 = 1 To $aEmail[0]
If StringRegExp($aEmail[$1], '(?i)^(' & $localpart & ')@(' & $domainname & ')$', 0) Then
ConsoleWrite("Email_" & $1 & " is valid" & @CRLF)
Else
MsgBox(0, "Error", "Email " & $1 & " is not valid")
EndIf
Next

; end added code

EndIf
EndSelect
Until $msg = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc   ;==>mainlobby

The limitations are still the same

 

Regards :)

 

I know old thread.

Just needed to us this snippet

so wanted to share my refactored version:

;~ https://www.autoitscript.com/forum/topic/150225-validate-if-user-entering-the-right-email-address-format/#findComment-1072558

#include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>
#include <StringConstants.au3>
#include <WindowsConstants.au3>

mainlobby()

Func mainlobby()
    GUICreate('', 320, 200, 500, 250)
    Local $recipientsenter = GUICtrlCreateInput("", 10, 5, 250, 20)
    Local $sendemilbutton = GUICtrlCreateButton("Send Email", 230, 128, 70, 25, 1)
    GUISetState()

    Local $msg
    Do
        $msg = GUIGetMsg()
        Select
            Case $msg = $sendemilbutton
                Local $sEMail = GUICtrlRead($recipientsenter)
                If $sEMail = "" Then
                    MsgBox(16, "Email Not Input", "Cannot Find Any Email")
                Else
                    MsgBox($MB_TOPMOST, "TEST #" & @ScriptLineNumber, "IsValidEmailAdress = " & _IsValidEmailAdress($sEMail))
                EndIf
        EndSelect
    Until $msg = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>mainlobby

Func _IsValidEmailAdress($sEMail)
    Local $aEmail = StringSplit($sEMail, ';')
    Local $localpart = "[[:alnum:]!#$%&'*+-/=?^_`{|}~.]+"
    Local $domainname = "[[:alnum:].-]+\.[[:alnum:]]+"

    Local $i_CountValid = 0
    For $IDX = 1 To $aEmail[0]
        If StringRegExp($aEmail[$IDX], '(?i)^(' & $localpart & ')@(' & $domainname & ')$', $STR_REGEXPMATCH) Then
            $i_CountValid += 1
        EndIf
    Next
    Return ($i_CountValid = $aEmail[0])
EndFunc   ;==>_IsValidEmailAdress

 

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:

Spoiler

Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. 

My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST APIErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *

 

My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane

Useful links: * Forum Rules * Forum etiquette *  Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * 

Wiki: Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * 

OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX

IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskSchedulerIE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related:How to get reference to PDF object embeded in IE * IE on Windows 11

I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions *  EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *

I also encourage you to check awesome @trancexx code:  * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuffOnHungApp handlerAvoid "AutoIt Error" message box in unknown errors  * HTML editor

winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/

"Homo sum; humani nil a me alienum puto" - Publius Terentius Afer
"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"
:naughty:  :ranting:, be  :) and       \\//_.

Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty."

Signature last update: 2023-04-24

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
×
×
  • Create New...