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"...
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.