Forum: VB.NET Jul 23rd, 2008 |
| Replies: 0 Views: 319 Hello,
Does anybody know a way of adding captions or subtitles to a video playing in vb.net?
.xml would be my preferred choice of file to hold the captions.
I have done this in flash cs3... |
Forum: VB.NET Jul 17th, 2008 |
| Replies: 0 Views: 1,276 Hello!
I was hoping someone could give me a little advice.
I have successfully got my flash files and movie files playing together on a vb.net form. (flash files in shockwave object, movie... |
Forum: C++ Feb 12th, 2008 |
| Replies: 2 Views: 1,144 It works... changing it to a vector of pointers allows me to work around the fact that the copy constructor & assignment operators are declared private.
std::vector< std::stringstream * >... |
Forum: C++ Feb 12th, 2008 |
| Replies: 2 Views: 1,144 Hi,
I'm trying to do a vector of stringstreams so i can edit/manipulate them using vector functions as i have already done using strings.
everything was going fine using...
... |
Forum: C++ Feb 6th, 2008 |
| Replies: 6 Views: 1,277 I do like the idea of timing the different assignments. What about actually changing or overloading the += operator? any ideas or suggestions?
does anyone know which header file holds the +=... |
Forum: C++ Feb 5th, 2008 |
| Replies: 6 Views: 1,277 It is more efficient and i know that the standard operator assignment is being performed on a temporary value.
My question is, is there a way of proving it with code? Otherwise how do we know for... |
Forum: C++ Feb 5th, 2008 |
| Replies: 6 Views: 1,277 Hi all,
I've been searching for hours but i can't find any solutions so i hope someone can help...
Is there any way of proving that the += operator is more efficient than the + operator...
... |