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...
..._
(ByVal hdc As Long, ByVal x As Long, ByVal y As _
Long, ByVal crColor As Long) As Long
Public Const Pi = 3.14159265358979
Procedure
' ************************************************
' Rotate the picture in Source and place it
' in Dest. Rotate the area Left <= x <= right,
' top <= y <=...
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...
...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"...
just to clarify:
Common dialogs allows you to get the path and filename to open/save files and nothing more.
As PTFlea suggest, you have to write the code to save data to a file by yourself.
You see, Common dialog is not smart enought to know which type of file you want to save and what it would...
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.