Programming in general is not an easy think. You can not just put a program with so many buttons and options and exept to programming by it self. You don't only need one borow book, but all the books on the market. You also need MSDN, and SDK, and many simple examples. You also need time and a good teacher And you must be young have the time and the wish to learn From the other hand maybe you don't really need to make any big program, but even in this case you still need some one to teach you some thinks. Programming is not like eg photoshop, that even if you don't know it you can open a file, make a blur save it, and say that somthing you do. >simple interface for my Robot Ask some one to teach you the basic and work with you for that interface, and then you see if you can handle to do somthing simple and continue it. Vini
CoolVini
Posts
-
I am so lost. Learning VC++.NET -
How to copy a locked file... ?I am wondering how can I copy/backup a locked file. Seems that almost all backup programs can do it so it's sound simple, but I can not find anything on this Can you help me and give me some guide lines ? what and where to search for ? Thank you in advanced :rose:. Vini
-
Symantec LiveUpdate working for anyone?Try use the filemon.exe to see what files the live upadate opens and see what's going wrone.. Vini
-
Symantec LiveUpdate working for anyone?Try to clean up your cache - and cache files that live update have create. Also use the latest version of live update, I think the older one not working any more with the news updates. Have you clean up your temporary files ? I have some small problems with live update but only for one day. After installing the latest versions of live update the problems have solved. Vini:rose:
-
STL Deque Container - questionPaul thank you for the informations. ;) Vini
-
STL Deque Container - questionPaul thank you for your replay. I have also use the vector but is not solving my problem. About [map] I didn't know it and now just read about. What else do you suggest insted of deque ? I use deque lists and vectors all the time to store informations data that I don't know from the begining the size. I need to be sort them also. Vini
-
STL Deque Container - questionI have made a deque list of my class/structs and it's working fine, all is fine exept one problem of me that I can not understnd or can not find....:confused: I need to get a reference to an object inside my deque and keep that reference for doing thinks but when I do sort in deque this reference change. For example. (MyListToShow is my Deque) (SendMe is my class to add) Now I put it on my list MyListToShow.push_back(SendMe); Now I find the pointer to my last element on deque and save it eg to pointer [KeepMyRef] Now I do sort the deque.... and now [KeepMyRef] is point to a diferent element. How can I get a pointer to the same class - to the memory it self of my data ? Thank you in advanced Vini:rose: