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. 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:
  16. DoNotEven

    MESSAGE CRACKERS

    DevGuide: Component writer's guide Defining your own messages A number of the standard components define messages for internal use. The most common reasons for defining messages are broadcasting information not covered by standard Windows messages and notification of state changes. Defining a...
  17. DoNotEven

    counting RichEdit paragraphs

    TCustomRichEdit::Paragraph Specifies the formatting information for the current paragraphs. __property TParaAttributes* Paragraph = {read=FParagraph}; Description Read Paragraph to get the TParaAttributes object used by the rich edit control to specify paragraph formatting information. Use...
  18. DoNotEven

    Hiding application on task bar

    [Now Supported on Windows NT] Sends a message to the system to add, modify, or delete an icon from the taskbar status area. WINSHELLAPI BOOL WINAPI Shell_NotifyIcon( DWORD dwMessage, // message identifier PNOTIFYICONDATA pnid // pointer to structure ); Parameters dwMessage...
  19. DoNotEven

    CRViewer and Borland C++

    Something like this: viewer->LoadFromFile(&quot;ThePathToFile\\MyFile.txt&quot;);
  20. DoNotEven

    BC++ 5.01 ClassExpert

    Find the file myproject.apx on your computer and make sure it is not set to read only. Set it to Archive.

Part and Inventory Search

Back
Top