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

Pages: [1] 2 3
1
This helps a lot. I'm a lot closer. Thank you Archie.

I Have a lot of screens already done "the old way" and I don't want to change them, so my approach to this is the Main Menu is simply going to be a "goto main" and an "exit" button - and nothing other than that.

The exit button does nothing however. I looked at the code, theres nothing inside
    Private Sub ExitButton_Click(sender As Object, e As EventArgs) Handles Button1.Click

    End Sub

2
How do I add a form control so that MainPage / MainMenu.VB shows when I close any other form?

I tried to set ControlBox to False- but actually on windows 11 - the control box is there - drawn by windows itself! (thanks, microsof)

3
I think I found the problem..... ME!

"The design of the FormChangeButton is to always use them to navigate between the forms and make all the forms borderless so they cannot be closed.

There are multiple ways around this if you want your secondary forms to have a sizable border with a close button (X). One is to not use the FormChangeButton, but to use a standard windows button and in the click event, just show the second form without hiding the first form.

The other is to put a handler for the FormClosing event on the second form, and in that code, show the MainForm.
"



4
Ok there were 8 copies of AHMI running on the poor computer and this was taking 75%+ CPU... which on a weak machine was crippling.

One copy of AHMI is a much more reasonable 4% at idle and 20% during recipe save which is now taking 20s - tolerable.

The application wasn't actually "open" though, so it isn't closing cleanly... hence the poor performance.

So actually the issue is you close AHMI and it doesn't actually close.

I think I had the limitation removed on AHMI for having multiple open at the same time and I should put that back, but ultimately the not closing cleanly will still be an issue in the future. Is there a seperate thread about the application not closing?

5
Is there any way I can improve the Recipe Load and Save performance on a windows 11 pc? I installed advancedHMI on a number of machines with a rather sizeable recipe - but the windows 11 mini PC's I used - advancedHMI is brought down to its knees when I hit either recipe load or save... I'm talking 3 to 5 minutes each time. I have to imagine something is bad wrong... I also noticed the application itself is not too "snappy" in general on these machines, which are running nothing else besides AHMI and are brand spankin' new... I didn't think AHMI was all too resource intensive. The responsiveness I believe is tolerable but the Recipe Save and load is atrocious!

6
Tips & Tricks / Re: Printing to a Zebra Printer from AdvancedHMI
« on: March 12, 2025, 04:16:17 PM »
NATIVE METHODS > OPENPRINTER>
ByVal pd as Long »»»» ByVal pd as IntPtr

Then, can use OpenPrinterW instead of OpenPrinter2w

Had to be an int p'tr.

Changing from OpenPrinterW DLL call to OpenPrinter2W call seems to have worked... I do not understand what i'm doing here. but i printed something!

I tried this but I'm getting an error in RawPrinterHelper... any ideas?



Attached are some code bits from a project I did to print to a Zebra printer. I used Zebra Designer software to create a label, then exported it to a "prn" file. Within the label, I specified variable fields by closing them in brackets. The code would look for those fields and substitute it with the data.

The code does use native methods so it will only work on Windows. It sends information to the printer that has been installed using the Zebra printer driver.

7
Tips & Tricks / Re: Printing to a Zebra Printer from AdvancedHMI
« on: February 22, 2025, 08:07:25 PM »
Changing from OpenPrinterW DLL call to OpenPrinter2W call seems to have worked... I do not understand what i'm doing here. but i printed something!

I tried this but I'm getting an error in RawPrinterHelper... any ideas?



Attached are some code bits from a project I did to print to a Zebra printer. I used Zebra Designer software to create a label, then exported it to a "prn" file. Within the label, I specified variable fields by closing them in brackets. The code would look for those fields and substitute it with the data.

The code does use native methods so it will only work on Windows. It sends information to the printer that has been installed using the Zebra printer driver.

8
Tips & Tricks / Re: Printing to a Zebra Printer from AdvancedHMI
« on: February 22, 2025, 07:22:02 PM »
I tried this but I'm getting an error in RawPrinterHelper... any ideas?



Attached are some code bits from a project I did to print to a Zebra printer. I used Zebra Designer software to create a label, then exported it to a "prn" file. Within the label, I specified variable fields by closing them in brackets. The code would look for those fields and substitute it with the data.

The code does use native methods so it will only work on Windows. It sends information to the printer that has been installed using the Zebra printer driver.

9
Support Questions / INI File to PLCAddressItem in ComBridge
« on: December 18, 2024, 04:39:57 PM »
I'm trying to add INI File Handling in ComBridge - such that I can choose the PLCAddressValue / PLCAddressValueTarget items from the INI File. i'm getting
INI File - Invalid cast from 'System.String' to 'MfgControl.AdvancedHMI.Drivers.PLCAddressItem'

do you have any suggestions? it seems that the dataSubscriber the comBridge uses is making the PLCAddressItem into some sort of list, so the ini handling isn't working.


Thanks

10
Open Discussion / Re: Use advanced HMI to transfer tags to another PLC
« on: December 18, 2024, 02:59:50 PM »
Resolved - Saw Godra's CommBridge in another thread. will be using that. https://www.advancedhmi.com/forum/index.php?topic=2672.msg16069#msg16069

11
Open Discussion / Use advanced HMI to transfer tags to another PLC
« on: December 18, 2024, 02:49:36 PM »
I have a project idea with regards to our Plant IOT. I want to be able to - on the Home screen of AHMI - to use AHMI to send data from the connected PLC to another. Is this possible somehow? I imagine it has to be.


12
Open Discussion / Re: Possible to use INI to change basicButton colors?
« on: December 13, 2024, 12:08:17 PM »
Archie, Thank you for your help. I tried this and it still bombed out. After some uh... "Coding" I came up with this:

Regards!

Code: [Select]
    Public Shared Sub SetPropertiesByIniFile(ByVal targetObject As Object, ByVal iniFileName As String, ByVal iniFileSection As String)
        If targetObject Is Nothing Then
            Throw New System.ArgumentNullException("targetObject", "SetPropertiesByIniFile null parameter of targetObject")
        End If

        If Not String.IsNullOrEmpty(iniFileName) Then
            Dim p As New IniParser(iniFileName)
            Dim settings() As String = p.ListSettings(iniFileSection)
            '* Loop thtough all the settings in this section
            For index = 0 To settings.Length - 1
                Dim pi As System.Reflection.PropertyInfo
                pi = targetObject.GetType().GetProperty(settings(index), Reflection.BindingFlags.IgnoreCase Or Reflection.BindingFlags.Public Or Reflection.BindingFlags.Instance)
                '* Check if a matching property name exists in the targetObject
                If pi IsNot Nothing Then
                    Dim value As Object = Nothing
                    If pi.PropertyType.IsEnum Then
                        If pi.PropertyType.IsEnum Then
                            Try
                                '* V3.99y - Added Enum capability
                                '* Enum type have to be converted from string to the Enum option
                                value = [Enum].Parse(pi.PropertyType, p.GetSetting(iniFileSection, settings(index)), True)
                            Catch ex As Exception
                                System.Windows.Forms.MessageBox.Show("Ini File Error - " & settings(index) & " is an an Enum. Values of " & p.GetSetting(iniFileSection, settings(index)) & " is not a valid option.")
                            End Try
                        Else
                            Dim pt As Type = targetObject.GetType().GetProperty(pi.Name).PropertyType
                            '* 6-DEC-24 Added so color properties can be used in INI files
                            If pt Is GetType(System.Drawing.Color) Then
                                Dim cc As New ColorConverter
                                value = cc.ConvertFromString(p.GetSetting(iniFileSection, settings(index)))
                            Else
                                value = Convert.ChangeType(p.GetSetting(iniFileSection, settings(index)), pt, Globalization.CultureInfo.InvariantCulture)
                            End If
                        End If
                    Else
                        Dim px As Type = targetObject.GetType().GetProperty(pi.Name).PropertyType
                        If px Is GetType(System.Drawing.Color) Then
                            Dim cc As New ColorConverter
                            value = cc.ConvertFromString(p.GetSetting(iniFileSection, settings(index)))
                        Else
                            value = Convert.ChangeType(p.GetSetting(iniFileSection, settings(index)), targetObject.GetType().GetProperty(pi.Name).PropertyType, Globalization.CultureInfo.InvariantCulture)

                        End If
                    End If
                    pi.SetValue(targetObject, value, Nothing)
                Else
                    System.Windows.Forms.MessageBox.Show("Ini File Error - " & settings(index) & " is not a valid property.")
                End If
            Next
        End If
    End Sub

13
Additional Components / Re: Ping Button
« on: December 06, 2024, 01:58:17 PM »
Went ahead and massaged the code until I got this to work on the normal PLCConfig.ini file used in many examples

My goal is to give this as a tool for Maintenance People... who aren't very techy.

removed the IPAddress Collection. Now it just gets the IP address from the INI you select and pings it.

Code: [Select]
[EthernetIPDriver]
IPAddress=10.22.57.66

14
Additional Components / Re: Ping Button
« on: December 06, 2024, 01:54:32 PM »
Went ahead and massaged the code until I got this to work on the normal PLCConfig.ini file used in many examples

removed the IPAddress Collection. Now it just gets the IP address from the INI you select and pings it.

Code: [Select]
[EthernetIPDriver]
IPAddress=10.22.57.66

15
Open Discussion / Possible to use INI to change basicButton colors?
« on: December 06, 2024, 12:04:57 PM »
I tried importing INIFileHandling into basic button and i could change the text and the PLC address but I can't change any of the colors - it throws a typeError trying to cast String to Color. Is this possible to do and if so how would i do it?

Pages: [1] 2 3