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 TouchToneTommy 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: *

  • Users: mikca
  • Order by date
  1. mikca

    Backing up text files

    Here it is from WinApi The MoveFile function renames an existing file or a directory (including all its children). BOOL MoveFile( LPCTSTR lpExistingFileName, // address of name of the existing file LPCTSTR lpNewFileName // address of new name for the file ); Parameters...
  2. mikca

    IBReplication or not?

    I found on the IbPhoneix web site a detailed discussion on Ib replication and some freeware to set it up I am not at my machine so I can't post it to you try google with interbase replication mick
  3. mikca

    Handler of a mdi child window

    Hi Tolemac You can scan all open child forms like var Loop : integer; begin for Loop := 0 to ChildCount - 1 do begin if Children[Loop] is TMessageForm then begin PostMessage(Children[Loop].Handle, ..) or TMessageForm(Children[Loop]).AProperty := NewValue; end; end; end;
  4. mikca

    Looping Edit Windows in a Form

    You can do these things Set the forms active control disable the edit controls that user should not change set the onenter event for the edit controls that user should not change that causes form.activecontrol to be FirtNameEdit Mick
  5. mikca

    Removing the "Justifying" in a tmemo.

    Make sure that the font is fixed suxh as courier Mick
  6. mikca

    One app with two back ends?

    All Interbase Client machines have a Dll - but I'm not at my machine so I can't remember it. You can check for the presence of this dll on the machine before you load your IB module. There is a call to start BDE but from what you wrote if BDE is not loaded then your program wont start anyway...

Part and Inventory Search

Back
Top