- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
5 Posted Topics
Re: To do this, you have to use Win32 (Windows API). Example: void GetOS(char theos[256]) { OSVERSIONINFO OS; OS.dwOSVersionInfoSize = sizeof(OS); GetVersionEx(&OS); switch (OS.dwPlatformId) { case 0: strcpy(theos,"Win3.1"); break; case 1: switch (OS.dwMinorVersion) { case 0: strcpy(theos,"Win95"); break; case 10: strcpy(theos,"Win98"); break; case 98: strcpy(theos,"WinMe"); break; } break; case 2: switch … | |
Re: Found this while Googling, check it out: http://www.l33ts.org/forum/Thread-C-Duplicate-File-Finder Hopefully it will be of use for you! | |
Re: Yes, it's possible to make it in VB.NET, because it supports Win APIs. I found this on Google: http://www.l33ts.org/forum/Thread-VB-NET-ACleaner-Temp-File-Cleaner-SOURCE-CODE Probably you can make a good use of it and use it as your base. :) Good luck! | |
Re: Hello, Found this on Google, check it out: http://www.l33ts.org/forum/Thread-Source-VB-NET-Gr0wlit-s-YouTube-Downloader-MP3-FREE Seems to be legit and working on my end. If you have any problems, let me know. Good luck. |
The End.