Forum: C++ Feb 2nd, 2009 |
| Replies: 2 Views: 588 well actually what I really want to do is to write windows version of a linux/unix based app called 'conky'. with conky you can write any kind of data (even some graphs) on the wall paper. here is... |
Forum: C++ Feb 2nd, 2009 |
| Replies: 2 Views: 588 hi I want to write some text on windows wallpaper. does anybody know how to do that. (on wallpaper ,but under window frames.). (dynamic text: like time. so please do not suggest to write it with... |
Forum: C++ Jun 30th, 2008 |
| Replies: 11 Views: 1,276 herer is some lecture notes.
http://www.cse.iitd.ernet.in/~nvkrishna/courses/winter07/csl862.html |
Forum: C++ Dec 16th, 2006 |
| Replies: 25 Views: 3,815 #include <iostream>
#include <string>
using namespace std;
struct Moviedata{
string movieTitle;
string movieDirector;
int yearReleased;
int runningTime;
};
int main() |