[Date Prev][Date Next]
[Thread Prev][Thread Next]
[Date Index]
[Thread Index]
[New search]
To: "Mitchell, Sue" <Sue.Mitchell@xxxxxxxxxx>
Subject: Re: Automating the Find command
From: jeremy@xxxxxxxxx (Jeremy H. Griffith)
Date: Mon, 12 Nov 2001 16:40:49 GMT
Cc: "'Framers (framers@xxxxxxxxx)'" <framers@xxxxxxxxx>
In-Reply-To: <FB15E670DA55D51185350008C786514A015A3DCA@sottexch1.cognos.com>
Organization: Omni Systems, Inc.
References: <FB15E670DA55D51185350008C786514A015A3DCA@sottexch1.cognos.com>
Sender: owner-framers@xxxxxxxxx
On Mon, 12 Nov 2001 10:54:12 -0500, "Mitchell, Sue" <Sue.Mitchell@cognos.com> wrote: >findParams.val[1].propVal.u.sval = (StringT)'Bold'; Don't know about this particular FDK command, but for C, all strings are in **double** quotes; single are for individual chars. So try: findParams.val[1].propVal.u.sval = (StringT) "Bold"; at which point you can probably do away with the cast: findParams.val[1].propVal.u.sval = "Bold"; -- Jeremy H. Griffith, at Omni Systems Inc. (jeremy@omsys.com) http://www.omsys.com/ ** To unsubscribe, send a message to majordomo@omsys.com ** ** with "unsubscribe framers" (no quotes) in the body. **