I agree with pmonett, ask to your notes administrator to give you that special ID. After that you could swith from one user to another and send mails from the "new user".
Hi,
i am getting this error on some PC s and not in others for the same database.
- PCs have same lotus version (5.0.11)
- Database is at Server
- The library with the loading error is a custom library where i have all the LotusScript funcionality
- The code is called from an Agent
The only...
This is an example:
Rotating a Picture through any angle
By: John Percival
URL: http://www.vbworld.com/tips/tip137.html
Use this function to rotate a bitmap through a certain angle. This function is unfortunately quite slow due to the amount of calculations that it must do. Put this in a code...
oops!
Private Sub Image1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Dim sFile As String
sFile = Application.GetOpenFilename("Image BMP (*.bmp), *.bmp")
If (sFile <> False) Then
If (sFile <> "") Then Image1.Picture = LoadPicture(sFile)
Else
MsgBox "Failed to...
Private Sub Image1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Dim sFile As String
sFile = Application.GetOpenFilename("Image BMP (*.bmp), *.bmp")
If (sFile <> "") or (cancel=false) Then
Image1.Picture = LoadPicture(sFile)
Else
MsgBox "Failed to open the...
Check This:
Private Sub Image1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Dim sFile As String
sFile = Application.GetOpenFilename("Image BMP (*.bmp), *.bmp")
If sFile <> "" Then
Image1.Picture = LoadPicture(sFile)
Else
MsgBox "Failed to open the image"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.