Search the web
Sign In
New User? Sign Up
lnotes-l-new · lnotes-l
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3047 - 3076 of 3580   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3047
We have an older server that we are going to take out of commission and want to move all the users and their databases to a new server. The old server is R6.5...
rjcashmere
Online Now Send Email
Jul 2, 2009
12:54 pm
3048
Use admin client to move everyone via adminp Keith Brooks Sent from Lotus Notes Traveler 8.5 ... From: "rjcashmere" <rjcashmere@...> To:...
Keith Brooks
kbmsg
Offline Send Email
Jul 2, 2009
1:07 pm
3049
We are planning on having the new server have the same name and IP as the old server.  Can we do that using AdminP?  Thanks. ... From: Keith Brooks...
Rob Johns
rjcashmere
Online Now Send Email
Jul 2, 2009
1:20 pm
3050
Depends on how quickly you want to do it. There is an admin process to move people to a new server - not sure if R8 is a complication though. It requires...
David Clark
beetroot_soup
Offline Send Email
Jul 2, 2009
2:13 pm
3051
The way we do this is: Give the new box a temporary IP Address Shut down the existing server and copy all of the files across from the Notes Data directory ...
ron.devereux@...
rpd153
Offline Send Email
Jul 2, 2009
2:17 pm
3052
I'm trying to create a string to be used in a SQL query where field values are used as part of the string. It seems that these must be enclosed in quotes to...
David Clark
beetroot_soup
Offline Send Email
Jul 2, 2009
2:50 pm
3053
One thing I do to make this whole process less confusing is assign the quote character to a variable, let's call it Q, so you get code like this: Q = |'| ...
Robert D. Marshall
rdmarshall
Offline Send Email
Jul 2, 2009
3:17 pm
3054
Well, I guess if I assign the value to a variable called "Q", I should use that variable in the code! <slap side of head> Good reason to include the Explicit...
Robert D. Marshall
rdmarshall
Offline Send Email
Jul 2, 2009
3:24 pm
3055
Thanks I really wanted that to work but it still results in double quotes (that is 2 sets of double quotes) either side of the variable values. I agree it ...
David Clark
beetroot_soup
Offline Send Email
Jul 2, 2009
3:39 pm
3056
Another option is to use a simple Enquote() function. Here's what I wrote: Public Function EnQuote( strIn As String ) As String ' return a given input string...
jdillon@...
Send Email
Jul 2, 2009
4:44 pm
3057
Thanks Is this just a debugger thing then? I've done it via the enquote function but the debugger shows two pairs either side. It seems that somehow these ...
David Clark
beetroot_soup
Offline Send Email
Jul 2, 2009
5:02 pm
3058
No, this is a function we include in a standard script library that we share across all our applications. _____________________________________________________...
jdillon@...
Send Email
Jul 2, 2009
5:18 pm
3059
What I meant was - is it just the way I'm looking at these string in the debugger that makes it look wrong? From: lnotes-l-new@yahoogroups.com...
David Clark
beetroot_soup
Offline Send Email
Jul 2, 2009
5:27 pm
3060
I guess it is a debugger 'thing'. If I print the string I've generated then it's fine. However the same string assigned to the ODBCREsultSet.query shows the...
David Clark
beetroot_soup
Offline Send Email
Jul 2, 2009
5:34 pm
3061
I think I'm sure that the query passed to Access contains those extra quotes. My program inserts new rows if the query is a simple "SELECT * from pens" (funny...
David Clark
beetroot_soup
Offline Send Email
Jul 2, 2009
5:51 pm
3062
It turns out there is a special way to do this by using parameters in the 'where' clause and then using a method to set those parameter values before executing...
David Clark
beetroot_soup
Offline Send Email
Jul 3, 2009
9:36 am
3063
I have written validations for the different fields on a form that is being used on the Intranet. The validations are written in JavaScript. The issue that I...
Jean.Stachler@...
jean_stachler
Offline Send Email
Jul 6, 2009
3:48 pm
3064
I don't think there is a built-in function. You might have to do some regex processing like str.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); Regards, Atish...
Atish Sanyal
sanyal
Offline Send Email
Jul 6, 2009
5:16 pm
3065
I will be out of the office starting 07/06/2009 and will not return until 07/13/2009. This is an automated message to tell you that I'm out of the office. My...
jdillon@...
Send Email
Jul 6, 2009
9:26 pm
3066
Hi Jean, 1. You could do something like this in the JSHeader: function validate(field) { if (alreadyValidating) { alreadyValidating = false; return; } if...
ron.devereux@...
rpd153
Offline Send Email
Jul 7, 2009
6:47 am
3067
Thanks all to who replied. Below is the code that I ended up using to take care of the spaces in the field. In the OnSubmit routine I have the code that...
Jean.Stachler@...
jean_stachler
Offline Send Email
Jul 7, 2009
11:42 am
3068
I know I've joined in this discussion too late but couldn't you have just used stringObject.replace(findstring,newstring) and then tested for a blank string? ...
pete@...
infopete
Offline Send Email
Jul 7, 2009
2:59 pm
3069
Our Notes Admin has installed the new Notes 8 version 8.0.2 on my department head's laptop. She is now having a problem accepting meeting notices. She was...
Jean.Stachler@...
jean_stachler
Offline Send Email
Jul 7, 2009
5:34 pm
3070
Try this technote: http://www-01.ibm.com/support/docview.wss?uid=swg21282611 From: Jean.Stachler@... To: lnotes-l-new@yahoogroups.com Date: 07/07/2009...
Robert Laing
r_d_laing
Offline Send Email
Jul 7, 2009
5:43 pm
3071
Thanks Robert for the quick response. I have just sent this on to our admin so he can go into her system and do the necessary steps. Thanks so much! Jean ...
Jean.Stachler@...
jean_stachler
Offline Send Email
Jul 7, 2009
5:56 pm
3072
Pete, That sounds like that would work. I'll have to give it a try. Thanks much for your response. jean pete@... Sent by: lnotes-l-new@yaho...
Jean.Stachler@...
jean_stachler
Offline Send Email
Jul 7, 2009
6:00 pm
3073
Ok, please know that this is probably a very stupid question, and I should be able to find the answer in one of my many Lotus books, but it just hasn't jumped...
Jean.Stachler@...
jean_stachler
Offline Send Email
Jul 8, 2009
3:45 pm
3074
We have a JSP/Servlet that is passing data from a website into a Notes form. Everything is working fine, except that the line returns are not being taken. For...
bjulian@...
bejulian21
Offline Send Email
Jul 9, 2009
1:56 pm
3075
Greetings all, There are not a lot of policies on this list, but I thought I would take a minute and describe what I consider a policy on job posting. I'm...
herald5
Offline Send Email
Jul 14, 2009
5:43 pm
3076
I've spoken to Lee a few times, and he's quite nice. He is a recruiter looking for an Admin in the DC area. Cheers, Brian Establish milestones and goals...
herald5
Offline Send Email
Jul 14, 2009
5:45 pm
Messages 3047 - 3076 of 3580   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help