Posted at May 13, 2009 @ 6:15 pm by admin in Career, Education, Uncategorized
Find this interesting articale on CNN.com
http://www.cnn.com/2009/LIVING/worklife/05/13/cb.top10.cities.grads/index.html
10 ways to earn quick cash
http://www.cnn.com/2009/LIVING/worklife/05/18/cb.earn.extra.money/index.html
Posted at April 28, 2009 @ 6:16 pm by admin in C++, Education, Programming, Software, Uncategorized
found the answer on this forum:
http://www.xtremedotnettalk.com/showthread.php?t=71907
This is easy to figure out but you can also combine the 2 lines:
String * fname = “Whatever String”;
char* ufname = ( char * ) ( void * ) Marshal::StringToHGlobalAnsi(fname);
// do your stuff with ufname here
Marshal::FreeHGlobal((int)ufname);
Posted at April 28, 2009 @ 4:00 pm by admin in C++, Education, Programming, Software, Uncategorized
This is a very nice article, I found on for CString management. In fact it is an in depth , one place explanation for various unanswered String questions that you must have encountered in C++.
http://www.flounder.com/cstring.htm
Posted at April 28, 2009 @ 3:20 pm by admin in C++, Education, Programming, Software, Uncategorized
1) http://support.microsoft.com/default.aspx?scid=kb;EN-US;311259
2) http://www.codeguru.com/forum/archive/index.php/t-372096.html
2) http://www.codeguru.com/Cpp/Cpp/cpp_managed/moving/article.php/c8031/
Posted at April 5, 2009 @ 12:43 pm by admin in Education, Uncategorized
Dr Prabhaker Mateti is a distinguished professor from wright state university, and the link below on his home page was a great help to me while completing my thesis.
Posted at April 2, 2009 @ 6:15 pm by admin in Csharp, Education, Programming, Uncategorized
Found a nice link for people who want to use dll written in oldĀ C++ (.NET) (unmanaged)
http://www.brainbell.com/tutors/C_Sharp/Interoperating_with_Unmanaged_Code.htm
Posted at March 29, 2009 @ 6:49 pm by admin in Education, Internet, Uncategorized
My friend suggested me the page below. I have to find some time to read the notes…
Posted at March 21, 2009 @ 4:45 pm by admin in Csharp, Uncategorized