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

Pages: 1 ... 3 4 [5] 6 7 ... 12
61
thanks guys what i need in my project i already used ctrlbasicbutton the one that u made
so what i need is only to make the connection status for my 4 plc
but i can`t find where to chose its com component and the alarms too
and how to make it read the alarms and audit it for multiple com components
my project is simple but full with images and i would rather to finish it my self so i will be learning in the process
i liked the idea of the audit
so i can see the alarms the system and the users

for the alarms the way i use it is for example i read the value of register (d100)
each value has a meaning for example from 0 to 20
0 = door1 open
1 = door 2 open
and so on
like u use in ur project
but i cant find the area to choose the com component and the plc address and so on

thanks in advance




62
what i mean by instructions is

i am using 4 delta plcs in my project all using modbustcb
so how should i configure ur project
to work with myne
i mean i am gonna move my project inside yours so i can use your controls
( audit , alarm , history , users ,the new modified controls u add to it...)

and one more thing
the ( Who Am I Selection ')
what is it ?

NOTE " MY PROJECT IS WORKING FINE BUT I WANT TO USE YOUR CONTROLS BECAUSE THEY LOOK AND WORK MORE PROFESSIONAL AND I DON`T HAVE DATABASE IN MY PROJECT OR KNOW HOW TO DO IT YET )
with thanks

63
hello i really liked the way ur project is

can u put instructions of using it for us beginners

with thanks

64
Support Questions / Re: basic button problem "imagelist"
« on: June 17, 2018, 08:16:03 AM »
thanks alot it workd :)

65
thanks guys for your response
i already used panels and copy and paste before i asked about the best way

but i needed a better way more user friendly like in my question

:)




66
Support Questions / Re: basic button problem "imagelist"
« on: June 17, 2018, 06:23:40 AM »
there is one thing i need
is there a way to make the image stretch in it?

it has middle center , right center ...
but can we make it stretch?

67
Support Questions / Re: basic button problem "imagelist"
« on: June 16, 2018, 05:42:47 AM »
thanks man i tested it and it worked good


68
The reason is am gonna put over than 50 of them in my project and it is easier to make them as one control

69
Support Questions / Re: basic button problem "imagelist"
« on: June 14, 2018, 07:03:10 PM »
thanks man i hope u can send it as soon as possible

70
Support Questions / Re: basic button problem "imagelist"
« on: June 14, 2018, 05:35:51 PM »
or at least can i change the basic button images?

if the value is 0 show image 1
if the value is 1 show image 2
like the imagedisplaybyvalue
but without the imagelist tool  so the image can be with any size


i want it like the graphicindecator but with one address to click on it and change the image  according to the plc address value

71
hello

can i make it to work for one address?

so graphic select 1 and  graphic select 2

for one plc address


72
Support Questions / basic button problem "imagelist"
« on: June 14, 2018, 05:00:43 PM »
hello

when i use the basic button
i changed the picture using imaglist
so i choose the image list i need wich have to images in it

but when i click the button it does not change
so how to make happen ?
and is there a way to keep the button working but transparent?

am using (AdvancedHMIv399x )

any ideas?

with thanks


73
hello

what am trying to make
is new user control
that has a basic button and two image display by value

and then i use it in my interface

what i do is that i add new item
UserControl1.vb

then i add the button and the images
so it automatically it add comdriver
i remove it
but each time i try to use it in the main form i face multy problems

what i need
is to make it
with properties
so from the main form i can choose
1- the plc address for each one ( the button , the two image display by value )
2 - the text
3- the com driver
4- the images for each imagdisplaybyevalue control


i hope that someone can help me

with thanks



74
Additional Components / Re: NEW!!! User Management Plugin
« on: June 02, 2018, 02:49:15 PM »
hello
i cant make it work properly

what am doing is

using the handler to show or hide the tools according to the user Privilege

like this

Code: [Select]
Private Sub handleUserLoggedIn()
        If UserManagement.currentPrivilage = UserManagement.Privilage.Administrator Then
            btnAddNewUser.Visible = True
            btnDeleteSelectedUser.Visible = True
            btnDeleteSelectedUser.Visible = True
            cboUserList.Visible = True
        Else
            btnAddNewUser.Visible = False
            btnDeleteSelectedUser.Visible = False
            btnDeleteSelectedUser.Visible = False
            cboUserList.Visible = False
        End If

        Me.cboUserList.Items.Clear()
        Dim userList As New List(Of String)
        Dim _userManagement As New UserManagement
        _userManagement.getUserList(userList)

        If Not userList.Count = 0 Then
            For i = 0 To userList.Count - 1
                Me.cboUserList.Items.Add(userList.Item(i).ToString)
            Next
        End If
    End Sub

but it didnt work only the (btnAddNewUser) shows and hides according to the user Privilege

75
Additional Components / Re: NEW!!! User Management Plugin
« on: June 01, 2018, 06:18:12 PM »
how to make it when i press on the (x) button in the border to exit the whole project

it only worked with me when i press on (cancel ) button


Pages: 1 ... 3 4 [5] 6 7 ... 12