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 DoNotEven

  1. DoNotEven

    Check for updates?

    Here is how I make a link in my program so people can check for program updates: This is a menu item: Check for Updates; //check for updates void __fastcall TForm1::HTMLEditorUpdates1Click(TObject *Sender) { ShellExecute(Form1->Handle, "open&quot...
  2. DoNotEven

    Can't Delete Folders

    Drop a timer on your form then: void __fastcall TForm1::FormClose(TObject *Sender, TCloseAction &Action) { Timer1->Enabled = true; } //--------------------------------------------------------------------------- Then: void __fastcall TForm1::Timer1Timer(TObject *Sender) { Timer1->Enabled =...
  3. DoNotEven

    Need SQL Explorer Help!!!

    Dragged the top of the results window down untill you see the Enter the queries box.
  4. DoNotEven

    Loading and Saving JPEG in plain Win32

    You can download jpeg.hpp here: http://www.kissysoftware.com/download/jpeg.zip
  5. DoNotEven

    Tray icon in service application problem

    http://www.kissysoftware.com/asp/trayicon.asp go here to see how to use tray icon.
  6. DoNotEven

    TrayIcon Problem

    http://www.kissysoftware.com/asp/trayicon.asp go here and download an example program with code that shows you how to use the tray icon.
  7. DoNotEven

    I am trying to copy Image->Picture to the clipboard.

    I get error “Access violation at 06402A80 in module “VIEWPICT.EXE” read of address FFFFFFFF.” When I execute the following: In the Unit1.cpp file: void __fastcall TMainForm::Copy1Click(TObject *Sender) { TChild* child = dynamic_cast<TChild*>(ActiveMDIChild); if(!child) { return...
  8. DoNotEven

    Skins for GUI applications

    It should be like this so you do not get an error if the DefaultSkin file has not be created: In a Menu Item place this: void __fastcall TForm1::DefaultSkinClick(TObject *Sender) { if(FileExists(DefaultSkin)) { WritePrivateProfileString(&quot;SKIN&quot;, &quot;1&quot;, &quot;&quot...
  9. DoNotEven

    E2303: type name expexted

    I do not think USEFORM(&quot;FngrMain.cpp&quot;, FormMain); will work in Builder6. try #include &quot;FngrMain.h&quot; #pragma link &quot;FormMain&quot;
  10. DoNotEven

    Closing MS-DOS window

    The DestroyWindow function destroys the specified window. The function sends WM_DESTROY and WM_NCDESTROY messages to the window to deactivate it and remove the keyboard focus from it. The function also destroys the window's menu, flushes the thread message queue, destroys timers, removes...
  11. DoNotEven

    External exception C0000025 in CBuild 4

    Under Options Linker Tab make sure Use dynamic RTL is unchecked.
  12. DoNotEven

    Waiting for a function call

    Use a timer.
  13. DoNotEven

    How toTerminate External Program

    The CreateProcess function creates a new process and its primary thread. The new process executes the specified executable file. BOOL CreateProcess( LPCTSTR lpApplicationName, // pointer to name of executable module LPTSTR lpCommandLine, // pointer to command line string...
  14. DoNotEven

    Skins for GUI applications

    Place an image component on the form and place a *.jpg picture in it, this will be the default skin. Place an OpenDialog on the form. In the header of the *.cpp file place: #include <vcl.h> #include <string.h> #include <alloc.h> #include <jpeg.hpp> #include <dir.h> Under TForm1 *Form1 place...
  15. DoNotEven

    Compilation Error...

    Your compiler cannot find these files or the files are read only. Find the files on your computer and make sure they are Archive. If you still get the error then put the files path in your compiler's Directories/Conditionals Include Path:

Part and Inventory Search

Back
Top