Re: wPrintF
- Posted by David Cuny <dcuny at LANSET.COM> Aug 25, 2000
- 449 views
bobspringett wrote: > wPrintf(DrawWin,"%d",n) Unlike printf, wPrintf wants the third argument to be a sequence. Try: wPrintf(DrawWin,"%d",{s}) This should be fixed (Matt, could you do this?) by changing the definition in Win32Lib from: global procedure wPrintf( integer id, sequence s1, sequence s2 ) wPuts( id, sprintf( s1, s2 ) end procedure to: global procedure wPrintf( integer id, sequence s, object o ) wPuts( id, sprintf( s, o ) end procedure Sorry about that! -- David Cuny