Hello,
I have been searching in help but I found that was hard to search.
What I looking for was the std counterpart of CRT vsprintf. :)
I did find something like std::vsprintf in help, but still not sure about
how to use it

original code with CRT,
vsprintf (strTab->str[strTab->numLines], format, args);

Any help is greatly appreciated
Thanks
Jack

Re: vsprintf in std by Ali

Ali
Mon Jun 25 02:05:06 CDT 2007

On Jun 24, 11:55 pm, "Jack" <j...@knight.com> wrote:
> Hello,
> I have been searching in help but I found that was hard to search.
> What I looking for was the std counterpart of CRT vsprintf. :)
> I did find something like std::vsprintf in help, but still not sure about
> how to use it
>
> original code with CRT,
> vsprintf (strTab->str[strTab->numLines], format, args);
>
> Any help is greatly appreciated
> Thanks
> Jack

May be this http://msdn2.microsoft.com/en-us/library/28d5ce15(VS.80).aspx
can give a little idea.

ali


Re: vsprintf in std by Jack

Jack
Mon Jun 25 02:36:03 CDT 2007


"Ali" <abdulrazaq@gmail.com>
???????:1182755106.288111.274070@x35g2000prf.googlegroups.com...
> On Jun 24, 11:55 pm, "Jack" <j...@knight.com> wrote:
>> Hello,
>> I have been searching in help but I found that was hard to search.
>> What I looking for was the std counterpart of CRT vsprintf. :)
>> I did find something like std::vsprintf in help, but still not sure about
>> how to use it
>>
>> original code with CRT,
>> vsprintf (strTab->str[strTab->numLines], format, args);
>>
>> Any help is greatly appreciated
>> Thanks
>> Jack
>
> May be this
> http://msdn2.microsoft.com/en-us/library/28d5ce15(VS.80).aspx
> can give a little idea.

The best I can get is this information
http://msdn2.microsoft.com/en-us/library/a7tkse1h(VS.80).aspx
Have been running in circle. just want to know how to code the line above :)
So please help
Thanks ali for your kind attention....



>
> ali
>



Re: vsprintf in std by Jack

Jack
Mon Jun 25 02:47:26 CDT 2007


"Jack" <jl@knight.com> ¼¶¼g©ó¶l¥ó·s»D:ehyz4tvtHHA.4424@TK2MSFTNGP04.phx.gbl...
>
> "Ali" <abdulrazaq@gmail.com>
> ???????:1182755106.288111.274070@x35g2000prf.googlegroups.com...
>> On Jun 24, 11:55 pm, "Jack" <j...@knight.com> wrote:
>>> Hello,
>>> I have been searching in help but I found that was hard to search.
>>> What I looking for was the std counterpart of CRT vsprintf. :)
>>> I did find something like std::vsprintf in help, but still not sure
>>> about
>>> how to use it
>>>
>>> original code with CRT,
>>> vsprintf (strTab->str[strTab->numLines], format, args);
>>>
>>> Any help is greatly appreciated
>>> Thanks
>>> Jack
>>
>> May be this http://msdn2.microsoft.com/en-us/library/28d5ce15(VS.80).aspx
>> can give a little idea.
>
> The best I can get is this information
> http://msdn2.microsoft.com/en-us/library/a7tkse1h(VS.80).aspx
> Have been running in circle. just want to know how to code the line above
> :) So please help
> Thanks ali for your kind attention....
Just one side note. I put std::vsprintf in the search box, which results in
nothing...
:(
Thanks
Jack
>
>
>
>>
>> ali
>>
>
>



Re: vsprintf in std by Ali

Ali
Mon Jun 25 02:48:21 CDT 2007

On Jun 25, 12:36 am, "Jack" <j...@knight.com> wrote:
> "Ali" <abdulra...@gmail.com>
> ???????:1182755106.288111.274...@x35g2000prf.googlegroups.com...
>
>
>
> > On Jun 24, 11:55 pm, "Jack" <j...@knight.com> wrote:
> >> Hello,
> >> I have been searching in help but I found that was hard to search.
> >> What I looking for was the std counterpart of CRT vsprintf. :)
> >> I did find something like std::vsprintf in help, but still not sure about
> >> how to use it
>
> >> original code with CRT,
> >> vsprintf (strTab->str[strTab->numLines], format, args);
>
> >> Any help is greatly appreciated
> >> Thanks
> >> Jack
>
> > May be this
> >http://msdn2.microsoft.com/en-us/library/28d5ce15(VS.80).aspx
> > can give a little idea.
>
> The best I can get is this informationhttp://msdn2.microsoft.com/en-us/library/a7tkse1h(VS.80).aspx
> Have been running in circle. just want to know how to code the line above :)
> So please help
> Thanks ali for your kind attention....
>
>
>
> > ali


But code what? the link you have mentioned in your last post is about
"Standard C++ Library Header Files ". Where as, your OP was about
finding the different versions for vsprintf.

Maybe i got you wrong;-)
ali


Re: vsprintf in std by Jack

Jack
Mon Jun 25 03:06:43 CDT 2007


"Ali" <abdulrazaq@gmail.com>
???????:1182757701.618093.39890@e16g2000pri.googlegroups.com...
> On Jun 25, 12:36 am, "Jack" <j...@knight.com> wrote:
>> "Ali" <abdulra...@gmail.com>
>> ???????:1182755106.288111.274...@x35g2000prf.googlegroups.com...
>>
>>
>>
>> > On Jun 24, 11:55 pm, "Jack" <j...@knight.com> wrote:
>> >> Hello,
>> >> I have been searching in help but I found that was hard to search.
>> >> What I looking for was the std counterpart of CRT vsprintf. :)
>> >> I did find something like std::vsprintf in help, but still not sure
>> >> about
>> >> how to use it
>>
>> >> original code with CRT,
>> >> vsprintf (strTab->str[strTab->numLines], format, args);
>>
>> >> Any help is greatly appreciated
>> >> Thanks
>> >> Jack
>>
>> > May be this
>> >http://msdn2.microsoft.com/en-us/library/28d5ce15(VS.80).aspx
>> > can give a little idea.
>>
>> The best I can get is this
>> informationhttp://msdn2.microsoft.com/en-us/library/a7tkse1h(VS.80).aspx
>> Have been running in circle. just want to know how to code the line above
>> :)
>> So please help
>> Thanks ali for your kind attention....
>>
>>
>>
>> > ali
>
>
> But code what? the link you have mentioned in your last post is about
> "Standard C++ Library Header Files ". Where as, your OP was about
> finding the different versions for vsprintf.
Hello Ali,
I wanted to code