DjangMan
Yes, of course ... but what i means is:
- There is a dbgrid
- the user select a row and with a double-click on it i want to open a webbrowser with the result of the searched images related to some words contained into the dbgrid-row
I need to insert in my D7 application an internet image search.
What i'm looking for is something that i can call with some parameters (words relating to images i need).
Something as google search image engene.
Does anybody knows if exists a component (free/not free)?
or how can solve ?
Thanks...
I want to use web services, for the first time, in my application Delphi7.
So i used this tutorial:
http://www.devarticles.com/c/a/Delphi-Kylix/Creating-a-Web-Service-Client-with-Delphi/
to try a public web service.
It seems to be very easy to approach SOAP client but...
my application erase...
Why not:
procedure TForm1.EditTemp(Sender: TObject);
var degset : set of 'C'..'F';
begin
if EditTemp.Text = '' then Exit;
degset := ['C','F'];
if EditTemp.Text[Length(EditTemp.Text)] in degset then
Begin
if Pos('°',EditTemp.Text) = 0 then
Begin
EditTemp.Text...
A better explanation on what i mean:
You can set EditTemp property AutoSelect to False;
In EditTemp.OnEnter event, set: EditTemp.SelStart:=Length(EditTemp.Text);
gianni
Sorry i forgot a library:
uses
comobj,word2000;
procedure TForm1.Button1Click(Sender: TObject);
var wdgotolast,wdgotopage,wdgotoabsolute : olevariant;
begin
Word := CreateOLEObject('Word.Application');
Word.Visible := true;
Word.Documents.Open(GetCurrentDir+'\word.doc')...
With Delphi 7 Pro
I need to add a picture (signature) at the bottom of word documents (office 2003/2007). Documents may have one or more pages each.
I'have tried with ole:
uses
comobj;
procedure TForm1.Button1Click(Sender: TObject);
var wdgotolast,wdgotopage,wdgotoabsolute : olevariant...
I need that a query returns the computername (or any other enviroment variable defined on a client)
Something as:
select "@@computername"
where computername is the name of pc where the query is invoked.
Is there a stored procedure or any other magic tip ?
Thanks
gianni
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.