Jump to content

Recommended Posts

Posted

So yesterday i was able to get a really script script written( with a lot of help from all of you), but there is one element that I just cant find a way around. I have a new idea but I dont know if I can make it work.

Is it possible to base an "If/Then" statement where the variable is in my array?

something like

if $aArray1[$c][1] = "Rotable" then
<statement>
else
<statement>

No, I'm not a programer.Yes, I am a noob.You know what the difference is between you and me?I make this look good.

Posted

Add an Endif and you are set.

If $aArray1[$c][1] = "Rotable" Then
    <statement>
Else
    <statement>
EndIf

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

I guess I'm getting the hang on this.

thanks much. It worked as I thought.

No, I'm not a programer.Yes, I am a noob.You know what the difference is between you and me?I make this look good.

Posted

I found a good practice is to check if the array is actually array first. Sometimes things happen and your array is not created, the script will then crash.

If IsArray($aArray1) Then
 If $aArray1[$c][1] = "Rotable" Then
  <statement>
 Else
  <statement>
 EndIf
EndIf

010101000110100001101001011100110010000001101001011100110010000

001101101011110010010000001110011011010010110011100100001

My Android cat and mouse game
https://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek

We're gonna need another Timmy!

Posted

I actually have autoit construct the array based on a speadsheet of the data i need to input. So i know the array is there and the information is good prior to the script starting.

No, I'm not a programer.Yes, I am a noob.You know what the difference is between you and me?I make this look good.

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...