Welcome, Guest. Please login or register.
Did you miss your activation email?
May 26, 2012, 12:52:23 AM

Login with username, password and session length
Search:     Advanced search
* Home Help Search Calendar Links Login Register
+  Machsupport Forum
|-+  Mach Discussion
| |-+  VB and the development of wizards
| | |-+  IsActive Function
Pages: 1   Go Down
Print
Author Topic: IsActive Function  (Read 437 times)
0 Members and 2 Guests are viewing this topic.
Dom
Active Member

Offline Offline

Posts: 22


View Profile WWW
« on: April 16, 2010, 08:30:35 AM »

I'm trying to write some vb script which applys some logic to a button press before giving a suitable output but I'm struggling to acknolwedge the button press. Ive been trawling the wiki and it seems like I need to use the IsActive function but I cant make it work for me. Would somone be kind enough to share some example code so I can see how it could be used 'in context' ?
Logged
Tweakie.CNC
Active Member

Offline Offline

Posts: 3,258


Super Kitty.


View Profile WWW
« Reply #1 on: April 16, 2010, 12:13:23 PM »

Hi Dom,

I presume you have read this but just need more examples.

IsActive
Function IsActive(Signal As Integer) As Boolean
This function returns a Boolean True if the current state of the specified input signal is its active state
Note that in terms of actual signal level, the term “active” depends on how the signal is defined. If the
signal is defined in Config->Ports&Pins->InputSignals as ActiveLow, then IsActive() will return True
when that signal is being driven to a logic low. If the signal is defined in Config->Ports&Pins-
>InputSignals as ActiveHigh, then IsActive() will return True when that signal is being driven to a logic
high.
Arguments:
Signal is an integer value corresponding to one of pre-defined input signal constants.
Return Value:
False indicates the signal is currently in its inactive state
True indicates the signal is currently in its active state

Example:
‘ Show the user the state of the INPUT #1 input
If IsActive(INPUT1) Then
Message “INPUT #1 input is active”
Else
Message “INPUT #1 input is inactive”
End If

Tweakie.
Logged

Success consists of going from failure to failure without loss of enthusiasm.  Winston Churchill.
Dom
Active Member

Offline Offline

Posts: 22


View Profile WWW
« Reply #2 on: April 16, 2010, 06:22:23 PM »

Thanks for the reply and example. I'm sure I tried something like that but got a syntax error. I'll have a closer look tomorrow, maybe I was close but just did something silly.
Logged
Pages: 1   Go Up
Print
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!