Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
72% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #37.0K
Ranked #2K
~8K People Reached
Favorite Forums

5 Posted Topics

Member Avatar for ImZick
Member Avatar for inneedofhelp123

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 …

Member Avatar for mike_2000_17
1
6K
Member Avatar for inneedofhelp123

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!

Member Avatar for Knowledge72
1
231
Member Avatar for inneedofhelp123

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!

Member Avatar for Knowledge72
1
290
Member Avatar for inneedofhelp123

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.

Member Avatar for Knowledge72
1
726

The End.