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 Mike Lewis 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: *

  1. kayDelphi

    Keyword [With] in delphi

    Issue solved thanks kay
  2. kayDelphi

    Keyword [With] in delphi

    Hi Im try to convert delphi code to VB.NET but i dont understand the meaning of [With] keyword in Delphi. Normals is 2D array, so my question is what does the line in red below do inside the loop with Normals[I, J] do thanks kay
  3. kayDelphi

    check if directory is exists

    Thanks, i found the solution to check it LPTSTR path = "C:\\test"; SHFILEINFO shFileInfo; if (SHGetFileInfo((LPCSTR)path, 0, &shFileInfo, sizeof(SHFILEINFO), SHGFI_TYPENAME) != 0) { MessageBoxA(NULL, "Exists", "DIRECTORY", MB_OK); } else { MessageBoxA(NULL, "NOT FOUND"...
  4. kayDelphi

    check if directory is exists

    Hi all, Please i needs some help to check if directory is exists in native C++/win32. I have seen many samples on the web but im not sure which one is the right one. I read about CreateDirectory, GetFileAttributes and SHGetFileInfo and other methods. I will appreciate any suggestions with...
  5. kayDelphi

    compile delphi source from commandline

    Hi, Im new to delphi programming environment,and im try to implements some feature with my.net program that can compile delphi source at runtime using commandline prompt.I want to know if possible to compile delphi source code from command line prompt without the delphi IDE. I have codegear...
  6. kayDelphi

    Delphi book

    Thanks DjangMan and Melmitts for the informations. kay
  7. kayDelphi

    Delphi book

    Hi to all members, Im new to delphi programming and this forum, i want some advice on how to learn delphi from scratch and books that i can use. I can't find any delphi textbook in bookstore and most of the delphi books on Amazon are all old from early 90's. Im sure you guys have books for...

Part and Inventory Search

Back
Top