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 SkipVought 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. russellman128

    Making my program installable

    tri under PROFECT -> OPTIONS -> COMPILER TABE -> the botton RELEASE jest befor you last compile. This will compile in you OBJECTS. (any AtviceX will need to have there OCX or DLL sent with install). gary russell
  2. russellman128

    Deleting files

    tri this /* Gary Russell ghrussel@swbell.net ISSW http://www.angelfire.com/planet/issw/ Deletes all files in the current directory over 14 days old. */ #include <conio.h> #include <io.h> #include <dos.h> #include <stdio.h> #include <stdlib.h> #include <dir.h>...
  3. russellman128

    Borland 5.02 and C++ Builder

    Code Block is a good IDE for the 5.5 free compiler. http://www.angelfire.com/planet/issw/windows.htm and look for the link.
  4. russellman128

    Char Pointer in c++

    void __fastcall TForm1::Edit1Click(TObject *Sender) { char c[] = "hello"; char* c2= c; ShowMessage(c2); } In this example I droped the TEdit control on a form and used the event OnClick. And the char pointer worked fine. How can adress of "c" be the same as c[0] and c in the first image...
  5. russellman128

    Borland 5.02 and C++ Builder

    I have borland c++ 5.02, c++ builder 4. And I use 16 bit code and componits all the time. I also wright DOS programs in c++ 5.02 and Builder. So, I think you may be wrong about "C++ Builders that use the compiler) is 32-bit only."

Part and Inventory Search

Back
Top