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...
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
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;
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
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.