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

Pages: 1 [2]
16
Support Questions / RE: Display Position By Integer Value
« on: January 13, 2024, 12:22:42 AM »
hello Archie, in a previous topic named "Display Position By Integer Value" you mentioned adding this property "PLCAddressLeft". I added this property to a basic indicator and it worked. Is there a property for vertical position? I tried "PLCAddressUp" and "PLCAddressDown" just to see if it would work and it did not.

17
Support Questions / Re: Print Current Screen/Form
« on: August 02, 2023, 10:48:33 PM »
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

    Dim frm = Form.ActiveForm

    Using bmp = New Bitmap(frm.Width, frm.Height)
        frm.DrawToBitmap(bmp, New Rectangle(0, 0, bmp.Width, bmp.Height))

        bmp.Save("c:\temp\screenshot.png")
   
 End Using
End Sub

18
Support Questions / Re: Print Current Screen/Form
« on: August 02, 2023, 10:44:54 PM »
Thank you for your help. With that info i was able to find what i needed. Im not real savvy with c# or vb but this is what i ended up with. It works fine for what i need

19
Support Questions / Print Current Screen/Form
« on: August 02, 2023, 02:42:29 AM »
Is there anyway to print current form of AdvancedHMI I am on? One of my forms has a bunch of production data on it. I would like to add a print button beside it. I see a few options under

Pages: 1 [2]