Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Darrell

Pages: 1 2 3 [4] 5 6 ... 14
46
Support Questions / Re: SelectorSwitch3Pos1 always in center position
« on: June 09, 2016, 07:26:54 PM »
now works ,
thanks Archie

47
Support Questions / SelectorSwitch3Pos1 always in center position
« on: June 08, 2016, 06:01:21 PM »
 ver 399f , SLCMicro driver , Micrologix 1400  , SelectorSwitch3Pos1 always goes to  center position , PLC value left and right are used , Micrologix 1400

Darrell

48
Support Questions / Re: v399e - Timer.acc not reading
« on: May 16, 2016, 10:46:47 AM »
EthernetIPforSLCMicroCom1

49
Support Questions / v399e - Timer.acc not reading
« on: May 15, 2016, 10:28:37 PM »
V339e ,  micrologix 1400 - EthernetIPforSLCMicroCom1  driver.

NumericSevenSegment     not reading timer ACC , integers 

BevelButtonDisplay   displaying   comm component property not set

Darrell

50
Support Questions / Re: PLC Drive Exception was unhandled
« on: April 24, 2016, 10:42:18 PM »
thanks , message display by bit that I copied from a v398 hmi was the cause , deleted it and now works ok

51
Support Questions / PLC Drive Exception was unhandled
« on: April 24, 2016, 10:14:12 PM »
Getting this error using 399d and visual studio 2013 , did copy some parts from a 398t , could that be the cause , any way to goto the exact error

Darrell


52
Open Discussion / Re: write data S7 1200 Siemens
« on: March 23, 2016, 05:58:19 PM »
what kind of money would be looking  at to have you develop a AHMI driver for Siemens

Darrell

53
Additional Components / Re: Just Another Gauge
« on: March 06, 2016, 10:06:31 PM »
it worked only once I added all 4 to the Purchased Controls ,

Thanks
Darrell


54
Support Questions / Re: Newbie at AHMI and Visual Studio
« on: March 06, 2016, 09:44:28 PM »
Ive done this with a bevel Button Display , I think with the help from someone on this forum, Click the button to force a value and then displayed the value in a label so I knew it changed ,

Private Sub BevelButtonDisplay28_Click_1(sender As Object, e As EventArgs) Handles BevelButtonDisplay28.Click
        'Writes the value from Button into the PLC address
        Try
            EthernetIPforSLCMicroCom1.Write("N27:7", 16383)
        Catch ex As System.Exception
            System.Windows.Forms.MessageBox.Show(ex.Message)
        End Try
    End Sub


value to write might be a nice addition to this button

Darrell

55
Feature Request / Re: Circuit Breaker Symbol
« on: March 06, 2016, 09:18:24 PM »
I would also

Darrell

56
Additional Components / Re: Just Another Gauge
« on: March 06, 2016, 09:05:52 PM »
Visual basic is far from my expertise , Do I need both of these added to Purchased controls , does one Inherit the other,   AquaGauge.vb  and  AquaGaugeHMIv399.vb

If I only have AquaGaugeHMIv399.vb added I get all the above errors , If I add both I get this error

Error   1   'InitializeComponent' is not declared. It may be inaccessible due to its protection level.   
J:\Template V399d\AdvancedHMIControls\PurchasedControls\AquaGauge.vb   64   9   AdvancedHMIControls

red is where the error points

#Region "Constructor"

    Public Sub New()
        InitializeComponent()
        MyBase.DoubleBuffered = True
        Me.DoubleBuffered = True
        MyBase.ForeColor = Color.Orange
        x = 5
        y = 5
        wdth = Me.Width - 10
        hght = Me.Height - 10
        Me.m_noOfDivisions = 10
        Me.m_noOfSubDivisions = 4
        Me.SetStyle(ControlStyles.SupportsTransparentBackColor, True)
        Me.SetStyle(ControlStyles.ResizeRedraw, True)
        Me.SetStyle(ControlStyles.AllPaintingInWmPaint, True)
        Me.SetStyle(ControlStyles.UserPaint, True)
        Me.SetStyle(ControlStyles.OptimizedDoubleBuffer, True)

Darrell

57
Additional Components / Re: Just Another Gauge
« on: March 05, 2016, 11:00:57 PM »
Tried to add this to v399d , Not sure how to go about fixing these errors


Error   1   Type 'AquaGauge' is not defined.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   29   14   AdvancedHMIControls
Error   2   'DesignMode' is not declared. It may be inaccessible due to its protection level.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   119   16   AdvancedHMIControls
Error   3   'IsHandleCreated' is not declared. It may be inaccessible due to its protection level.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   119   31   AdvancedHMIControls
Error   4   sub 'OnCreateControl' cannot be declared 'Overrides' because it does not override a sub in a base class.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   151   29   AdvancedHMIControls
Error   5   'DesignMode' is not a member of 'AdvancedHMIControls.AquaGaugeHMI'.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   154   12   AdvancedHMIControls
Error   6   'Parent' is not a member of 'AdvancedHMIControls.AquaGaugeHMI'.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   161   32   AdvancedHMIControls
Error   7   'Parent' is not a member of 'AdvancedHMIControls.AquaGaugeHMI'.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   163   20   AdvancedHMIControls
Error   8   'Parent' is not a member of 'AdvancedHMIControls.AquaGaugeHMI'.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   164   45   AdvancedHMIControls
Error   9   'Parent' is not a member of 'AdvancedHMIControls.AquaGaugeHMI'.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   174   78   AdvancedHMIControls
Error   10   'Text' is not a member of 'AdvancedHMIControls.AquaGaugeHMI'.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   199   32   AdvancedHMIControls
Error   11   'Text' is not a member of 'AdvancedHMIControls.AquaGaugeHMI'.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   204   13   AdvancedHMIControls
Error   12   'Text' is ambiguous, imported from the namespaces or types 'System, System.Drawing'.   G:\! ! ! Advance HMI - March 4 2016\AdvancedHMIControls\PurchasedControls\AquaGaugeHMIv399.vb   212   9   AdvancedHMIControls

58
Support Questions / Re: Willing to pay for a thermometer
« on: February 23, 2016, 08:52:11 PM »
I will buy it also

darrell

59
Open Discussion / Re: What would you like to see in the next major release?
« on: February 21, 2016, 11:34:15 AM »
Not sure if the really applies here ,

One thing I don't want to see, is for advance HMI to go the way of the new style of programing your see on phones and all over the internet now , Im not sure what is being called , flat style , 2d , clean , flat style icons , I really don't know . I worked on a job recently where the new HMI's where done that way and no one like it to say the least , all the displays where very bland looking , flat style icons and is wasn't easy to tell differences on the screen. When something is highlighted , you shouldn't have to look for 3 min's to find it on a screen. Something changes , you want to be able to easily see it . 

Now on the other hand HMI's  done with ADHMI ,where eye popping , and done with proper colors and graphics and easy to see , In industrial setting this is what you want , less likely to make mistakes.

I love this product , But If Advance HMI every goes to this new style , I for one will stop using it.

Darrell

 

60
Support Questions / Re: Check PLC is in Remote run mode
« on: December 30, 2015, 06:23:05 PM »
Ive done this in Micrologix and SLC500

Pages: 1 2 3 [4] 5 6 ... 14