|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Lotus Script
Guys i need help in lotus script.. How do you hide a field in lotusscript at certain events.
For example i have docA.Process="1" Dim stringarr As String stringarr =docA.Process(0) Dim Subject As String Subject = "WhistleBlower Report Form1" Call uidoc.Refresh Call uidoc.Save Call docA.Save(False,False) Call fnSendMailWithDocLink(stringarr, "", "", Subject,"", docA) Call uidoc.Close The process 1 is like a step, i want to make certain fields appear at different levels. |
|
#2
|
||||
|
||||
|
Lotus Script is ~source compatible with Visual Basic so I'd expect that something like the following would work. The exact details depend on the API, which is somewhat different.
Code:
pseudocode
... Private Sub field_Event() ... field.Visible = False ... ... Good luck, Mark. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > Other Programming Languages > Lotus Script |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|