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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by VJunix

  1. VJunix

    passing user defined type to a DLL function.

    I have two questions: 1)I need to convert this two struct declaration (in C lenguage) to a "User defined" ( Type Statement) in Visual Basic 6.0 typedef struct{ DWORD size; BOOL stat1; char lpszName[15]; DWORD stat2; }MYST1,*LPMYST1; typedef struct { INT num1; SYSTEMTIME...
  2. VJunix

    Listing files using the ls command

    Other way to list only files without the file path output %find $DIR -type f -print -type f -printf "%f\n" i use printf to format the output to list only filenames(%f) and the '\n' to print the LineFeed Character. Have Fun.

Part and Inventory Search

Back
Top