Put an onchange event on the two boxes that calls a javascript function that adds the two values together and puts them into the third.
e.g.
<html>
<head>
<script language="javascript">
function addValues()
{
myForm.box3.value = myForm.box1.value*1 + myForm.box2.value*1;
}
</script>...
It turns out this problem was caused by not using the Lotus Notes server in the connection string (despite the fact that it isn't in the Lotus examples!). This had the effect of trying to open the file rather than accessing the data via notes and thus a file sharing style error occurred.
I can use NotesSQL fine against a Notes DB on my machine but when I connect to a remote server I get :
[Lotus][ODBC Lotus Notes]This database is currently being used by someone else. In order to share a Notes database, all users must use a Notes Server instead of a File Server.
Any ideas...
Is there any way to return text strings during the processing of a stored procedure?
i.e. if my stored procedure has 3 parts, I want a message back after parts 1 and 2 to say that they've completed.
TIA,
Rob.
Does anyone know a way of interfacing Notes with Microsoft Message Queue? I want to be able to put messages containing calendar information from Notes directly onto a queue.
Thanks,
Rob.
In response to my own question, it seems that there are 3 real options. Digital Workshops, coincidentally a distributor of PSP offer a budget solution called E-Pen (serial only). Then there is Wacom who also offer a budget solution called the Graphire (USB) which is slightly more expensive but...
You need to use the dir command. For example:
dir("C:\Windows\system\sound.dll")
would return "sound.dll" if it was found or "" if it wasn't.
Hope this helps,
Rob.
Kent,
Browse for the ocx, select it and it will appear under the ActiveX Controls tab NOT the design-time controls tab. Select it from this tab and the control should appear in the Toolbox (it does here, anyway!).
Hope this helps,
Rob.
The best place to start your search (for anything PSP related) is the PSP Users Group site at http://pspusersgroup.com/
You can also just do a search on the internet. For example searching for +filters +"Paint Shop Pro" on Altavista returned over 8000 results, most of which were...
Okay, I discovered this in PSP 7, so I'm not sure how much use it will be under an earlier version - you'll have to try it.
It turns out that the Hue and Saturation colorize settings are specific to the target colour irrelevant of the source (in fact, they are merely an alternative to RGB)...
Subha,
This should help. Not sure what you want to do with the info you get back, so I've displayed it in a messagebox.
Dim i As Integer
For i = 0 To Form1.Controls.Count - 1
MsgBox TypeName(Form1.Controls(i))
Next
n.b. if you're looking for a particular type, you can use:
if TypeOf...
I first set the CursorLocation property:
rs.CursorLocation = adUseClient
and then when opening the recordset in DLL I use:
rs.Open strSQL, cnn, adOpenStatic, adLockReadOnly, adCmdText
i.e. with 3 extra options set to you.
Remember that when you copy the DLLs recordset to a local one, it...
It depends how your connection is set up. For example, if you are using ADO, you can simply do a Connection.Close whereas if you are using a Data control you use Data1.Connect = False
Rob.
MyPath = "c:\exchange\*smith*.pst"
MyName = Dir(MyPath)
Do While MyName <> "" ' Start the loop.
Debug.Print MyName ' Add to your list here
MyName = Dir ' Get next entry.
Loop
Hope this helps,
Rob.
First you need to increase the color depth of the image: Colors Menu -> Increase Color Depth -> then choose an option.
You should then be able to select colors. You can automatically add color to the picture by selecting Colors -> Colorize, or Colors -> Adjust -> Red/Green/Blue
Hope this...
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.