Jump to content

Ini read @


caramen
 Share

Go to solution Solved by caramen,

Recommended Posts

Hello guy

I wanna read an simple "@" from my init file but does not working and when he read an "@" he skiping also one letter after

Script:

$IDe              = IniRead ($SettingsFile, 'Intervention', 'De', "ERROR")

Settings.ini

De=Assistance@*********.com

 

the value that i got when i lunch the script is

Assistance*******.com

What does i have to include :o ?

Edited by caramen

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

  • Moderators

Can you please post your entire script? This runs fine for me, and shows the @ symbol:

Contents of ini:

[Intervention]
De=Assistance@Google.com

Script:

$sIni = @DesktopDir & "\My.ini"
$sLine = IniRead($sIni, "Intervention", "De", "")
MsgBox(0, "", $sLine)

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

Works fine here.

Which version of AutoIt do you run?

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

hmmmm version ...

v3.3.10.2

 

The script is not doing anything else but there is personnal info inside i have to reedit one second plz

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

I tested with 3.3.10.2 and 3.3.11.3.

Works fine here.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

it can be my computer ?

does i need framwork on something ?

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

;~ --------------------------------------------------------------------------------------
;~ Script Variables & configs
Opt("MouseCoordMode", 0)
Opt("PixelCoordMode", 0)
HotKeySet("{PAUSE}", "Pause")
Global $Paused
HotKeySet("{escape}", "Exite")
HotKeySet("{F2}", "Intervention")
HotKeySet("{F3}", "Consommable")
Dim $var
Dim $p

;~ --------------------------------------------------------------------------------------
;~ Scipt Version & editor
MsgBox ( 0, "Thank you", "V 1.1 Edited by ******. ******")


;~ --------------------------------------------------------------------------------------
$SettingsFile = @SCRIPTDIR & 'Settings.ini'

$IDe              = IniRead ($SettingsFile, 'Intervention', 'De', "ERROR")
$IDestinataire     = IniRead ($SettingsFile, 'Intervention', 'Destinataire', "ERROR")
$ICopie         = IniRead ($SettingsFile, 'Intervention', 'Copie', "ERROR")
$IMessage         = IniRead ($SettingsFile, 'Intervention', 'Message', "ERROR")
$IMessage2        = IniRead ($SettingsFile, 'Intervention', 'Message2', "ERROR")

$CDe              = IniRead ($SettingsFile, 'Consommable', 'De', "ERROR")
$CDestinataire    = IniRead ($SettingsFile, 'Consommable', 'Destinataire', "ERROR")
$CCopie         = IniRead ($SettingsFile, 'Consommable', 'Copie', "ERROR")
$CMessage        = IniRead ($SettingsFile, 'Consommable', 'Message', "ERROR")
$CMessage2        = IniRead ($SettingsFile, 'Consommable', 'Message2', "ERROR")


;~ --------------------------------------------------------------------------------------
;~ Script structure:

Demarrage ()

While (1)
 Xerox ()
WEnd

Intervention ()
Consommable ()

Pause ()
Exite ()


;~ --------------------------------------------------------------------------------------
;~ Script functions

Func Demarrage ()
    Sleep(10000)
EndFunc

Func Xerox ()

   While (1)

    Sleep (5000)

   WEnd

EndFunc

Func Intervention ()
    Send     ("{LSHIFT Down}")
    Sleep     (10)
    Send     ("{TAB}")
    Send     ("{LSHIFT up}")
    Send     ($IDe)
    Send     ("{TAB}")
    Send     ($IDestinataire)
    Send     ("{TAB}")
    Send     ($ICopie)
    Send     ("{TAB}")
    Send     ("{TAB}")
    Send     ("{TAB}")
    Send     ($IMessage)
    Send     ("{ENTER}")
    Send     ($IMessage2)

EndFunc

Func Consommable ()
    Send     ("{LSHIFT Down}")
    Sleep     (10)
    Send     ("{TAB}")
    Send     ("{LSHIFT up}")
    Send     ($CDe)
    Send     ("{TAB}")
    Send     ($CDestinataire)
    Send     ("{TAB}")
    Send     ($CCopie)
    Send     ("{TAB}")
    Send     ("{TAB}")
    Send     ("{TAB}")
    Send     ($CMessage)
    Send     ("{ENTER}")
    Send     ($CMessage2)
EndFunc

Func Exite ()
    Exit
EndFunc

Func Pause()
    $Paused = NOT $Paused
While  $Paused
        Sleep (500)
WEnd
EndFunc; => Pause()
 

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

  • Moderators

No you don't need a framework. Please post a reproducer that fails for you, so we can see what you're doing.

Edit: Too slow.

Edited by JLogan3o13

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

after tryed F3

that send EROOR only wtf -.-

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

No you don't need a framework. Please post a reproducer that fails for you, so we can see what you're doing.

Edit: Too slow.

What is reproducer is it a new function ?

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

How do you notice that you get invalid values from IniRead? Do you do a ConsoleWrite or MsgBox?

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

A reproducer (script) is a stripped down script that only contains the necessary statements to reproduce the error.

In your case something like:

$SettingsFile = @SCRIPTDIR & '\Settings.ini'
$IDe              = IniRead ($SettingsFile, 'Intervention', 'De', "ERROR")
MsgBox(0, "", $IDe)

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

How do you notice that you get invalid values from IniRead? Do you do a ConsoleWrite or MsgBox?

Watch the scipt i posted on #7

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

So you see after the Send statement that the wrong value arrives in the target GUI?

Try

Send($IDe, 1)

so AutoIt doesn't interpret the string you send.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

So you see after the Send statement that the wrong value arrives in the target GUI?

Try

Send($IDe, 1)

so AutoIt doesn't interpret the string you send.

;~ --------------------------------------------------------------------------------------
;~ Script Variables & configs
Opt("MouseCoordMode", 0)
Opt("PixelCoordMode", 0)
HotKeySet("{PAUSE}", "Pause")
Global $Paused
HotKeySet("{escape}", "Exite")
HotKeySet("{F2}", "Intervention")
HotKeySet("{F3}", "Consommable")
Dim $var
Dim $p

;~ --------------------------------------------------------------------------------------
;~ Scipt Version & editor
MsgBox ( 0, "Thank you", "V 1.1 Edited by ******. ******")


;~ --------------------------------------------------------------------------------------
$SettingsFile = @SCRIPTDIR & '\Settings.ini'

$IDe            = IniRead ($SettingsFile, 'Intervention', 'De', "ERROR")
$IDestinataire  = IniRead ($SettingsFile, 'Intervention', 'Destinataire', "ERROR")
$ICopie         = IniRead ($SettingsFile, 'Intervention', 'Copie', "ERROR")
$IMessage       = IniRead ($SettingsFile, 'Intervention', 'Message', "ERROR")
$IMessage2      = IniRead ($SettingsFile, 'Intervention', 'Message2', "ERROR")

$CDe            = IniRead ($SettingsFile, 'Consommable', 'De', "ERROR")
$CDestinataire  = IniRead ($SettingsFile, 'Consommable', 'Destinataire', "ERROR")
$CCopie         = IniRead ($SettingsFile, 'Consommable', 'Copie', "ERROR")
$CMessage       = IniRead ($SettingsFile, 'Consommable', 'Message', "ERROR")
$CMessage2      = IniRead ($SettingsFile, 'Consommable', 'Message2', "ERROR")


;~ --------------------------------------------------------------------------------------
;~ Script structure:

Demarrage ()

While (1)
 Xerox ()
WEnd

Intervention ()
Consommable ()

Pause ()
Exite ()


;~ --------------------------------------------------------------------------------------
;~ Script functions

Func Demarrage ()
    Sleep(10000)
EndFunc

Func Xerox ()

   While (1)

    Sleep (5000)

   WEnd

EndFunc

Func Intervention ()
    Send    ("{LSHIFT Down}")
    Sleep   (10)
    Send    ("{TAB}")
    Send    ("{LSHIFT up}")
    Send    ($IDe, 1)
    Send    ("{TAB}")
    Send    ($IDestinataire, 1)
    Send    ("{TAB}")
    Send    ($ICopie, 1)
    Send    ("{TAB}")
    Send    ("{TAB}")
    Send    ("{TAB}")
    Send    ($IMessage, 1)
    Send    ("{ENTER}")
    Send    ($IMessage2, 1)

EndFunc

Func Consommable ()
    Send    ("{LSHIFT Down}")
    Sleep   (10)
    Send    ("{TAB}")
    Send    ("{LSHIFT up}")
    Send    ($CDe, 1)
    Send    ("{TAB}")
    Send    ($CDestinataire, 1)
    Send    ("{TAB}")
    Send    ($CCopie, 1)
    Send    ("{TAB}")
    Send    ("{TAB}")
    Send    ("{TAB}")
    Send    ($CMessage, 1)
    Send    ("{ENTER}")
    Send    ($CMessage2, 1)
EndFunc

Func Exite ()
    Exit
EndFunc

Func Pause()
    $Paused = NOT $Paused
While  $Paused
        Sleep (500)
WEnd
EndFunc; => Pause()

I got the same issue :

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

Can you please run the reproducer I posted in #12?

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

The reproducer is working fine

So my script got something wrong but what hmmmmmmmmmmmmmmmmmmmm

Edited by caramen

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

Insert

MsgBox(0, "", $IDe)

before

Send     ($IDe)

so you will know that you try to send the correct data.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

What kind of application do you send the data to?

A Java application, a web form in a browser, a simple Windows GUI ...?

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

If i do

MsgBox(0, "", $IDe)
Then
Send     ($IDe)
 

i got the correct msg box and a false send value

(in the same script)

Edited by caramen

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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