hidrau
asked on
I need to edit my adoconnection, how?
I know there is a way to edit my adoconnection, but I forgot. I need this help,
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
dear hidrau
sorry This not for you
sorry This not for you
ASKER
No, I need to open my adoconnection as I do when I click in connectionstring
ASKER
ok FarajLY
ASKER
Ok auke_t
Thanks
Thanks
ComObj
procedure TForm1.Button1Click(Sender
var
objWord : OleVariant;
objDoc,objSelection: Variant;
begin
objWord := CreateOleObject('Word.Appl
objWord.Visible := True ;
objDoc := objWord.Documents.Add() ;
objSelection := objWord.Selection ;
objSelection.Font.Name := 'Arial' ;
objSelection.Font.Size := '18' ;
objSelection.TypeText(' I know there is a way to edit my adoconnection, but I forgot. I need this help,') ;
objSelection.TypeText(char
objSelection.Font.Size := '10' ;
objSelection.TypeText( datetostr(Date()) );
end;