Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ravenspawn
  • Content: Threads
  • Order by date
  1. ravenspawn

    running an executable

    how do I run an executable that'll start on a button click?
  2. ravenspawn

    using readdir to count files in a directory

    struct S_Dir* dirp; struct dirent* direntp; dirp = opendir( "C:/WINDOWS/Desktop/OATS_MONITOR/OATS/usr/home/clf" ); if( dirp != NULL ) { for(;;) { direntp = readdir( dirp); if( direntp == NULL ) break; printf( "%s\n&quot...
  3. ravenspawn

    readdir

    Windows can actually use the dirent.h header file, my question is how can I use the readdir function in such without getting the unresolved external symbol message?
  4. ravenspawn

    unresolved external symbols

    what might be wrong with this code: #include <stdio.h> #include &quot;dirent.h&quot; #include <stdlib.h> int main() { struct S_Dir* dirp; struct dirent* direntp; dirp = opendir( &quot;C:/WINDOWS/Desktop/OATS_MONITOR/OATS/usr/home/clf&quot; ); if( dirp != NULL ) {...
  5. ravenspawn

    file counting

    How do I count files in a directory yet not using the LP_win32_data type?
  6. ravenspawn

    readdir function

    how do I use the readdir function in the header dirent.h?
  7. ravenspawn

    reverse reading

    how would I read a random-access file backwards?
  8. ravenspawn

    file count

    can't seem to be able to count files in a directory
  9. ravenspawn

    transferring Visual C++ to Unix

    Not sure how to compile Visual C++ onto a Unix server and FTP the information out to apache.

Part and Inventory Search

Back
Top