Hello,
i am finished master student of computer science and certified IAM-Consultant but totally beginner in 1IM scripting and .NET.
How to do a "Hello World!" in a script in 1IM?
Thanks
Hello,
i am finished master student of computer science and certified IAM-Consultant but totally beginner in 1IM scripting and .NET.
How to do a "Hello World!" in a script in 1IM?
Thanks
Hello Michael,
Here is an example script in VB Net, which is the language that 1IM uses for scripts, remembering that 1IM scripts are usually used in processes, often used as functions, and also called in the IT Shop:
' Function Without Return
Public Sub Hello_world()
MessageBox("Hello World")
End Sub
' Function with Return
Public Function Hello_World() As String
Return "Hello World"
End Function
Hello Michael,
Here is an example script in VB Net, which is the language that 1IM uses for scripts, remembering that 1IM scripts are usually used in processes, often used as functions, and also called in the IT Shop:
' Function Without Return
Public Sub Hello_world()
MessageBox("Hello World")
End Sub
' Function with Return
Public Function Hello_World() As String
Return "Hello World"
End Function