[Date Prev][Date Next] [Thread Prev][Thread Next]
[Date Index] [Thread Index] [New search]

Re: Automating the Find command



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