Tag Archive | "edit"

A Computer that will allow me to create & edit home movies and a digital movie camera ?


The computer has to be able to create and edit home movies (this is a separate entity from the digital movie camera). All together they should be lower than $2000. The digital movie camera is kinda optional for you to answer to. Thanks so much in advance.

Posted in ComputerComments (2)

Is it possible to edit PHP web pages in Dreamweaver MX under design view?


Is there any way I can edit PHP web pages on Dreamwever MX under the design view not code? If so how?

Posted in PHPComments (2)

how can I select and change the text when I printing a rich edit control onto a bitmap in delphi?


I use this function for Painting a rich edit control onto a bitmap for preview:
function PrintToCanvas(ACanvas : TCanvas; FromChar, ToChar : integer;
ARichEdit : TRichEdit; AWidth, AHeight : integer) : Longint;
var
Range : TFormatRange;
begin
FillChar(Range, SizeOf(TFormatRange), 0);
Range.hdc:= ACanvas.handle;
Range.hdcTarget := ACanvas.Handle;
Range.rc.left := 0;
Range.rc.top:= 0;
Range.rc.right := AWidth * 1440 div Screen.PixelsPerInch;
Range.rc.Bottom := AHeight * 1440 div Screen.PixelsPerInch;
Range.chrg.cpMax := ToChar;
Range.chrg.cpMin := FromChar;
Result := SendMessage(ARichedit.Handle, EM_FORMATRANGE, 1, Longint(@Range));
SendMessage(ARichEdit.handle, EM_FORMATRANGE, 0,0);
end;
procedure TForm1.Button2Click(Sender: TObject);
var Bmp : TBitmap;
begin
Bmp := TBitmap.Create;
bmp.Width := 300;
bmp.Height := 300;
PrintToCanvas(bmp.Canvas,2,5,RichEdit1,300,300);

Posted in DelphiComments (1)

How can i edit a php template in dreamweaver? It shows up with the little php script box and no images?


I can’t see the page, nor the colors, or anything just the script and a blank design view.

How do you edit php in dreamweaver? I donwloaded a script/template and can’t edit the colors nothing. :( help a noob please

Posted in PHPComments (2)

how can we edit a Qreport form in delphi on runtime?


I want a way that my users can edit the Qreport forms on runtime. That is very important and usefull feature.

Posted in DelphiComments (1)

In Delphi, how do I edit a cell in a dbGrid using code ?


This is a very basic thing I want to do. I just need to edit a cell using code.

Posted in DelphiComments (1)

What program can I use to edit a PHP website?


We’ve got a website that was designed for us but in PHP format I need to edit it but don’t know what software to use?

Posted in PHPComments (4)

What is a site that can upload php files and also can edit it like ripway?


Please give me a site. I sign up at ripway but ripway banned my account every times! So please give me a site that does not banned my account and can upload can edit php files.

Posted in PHPComments (1)

Delphi Experts : How do i on a button click event find the lenght of the string in the edit componant and also?


The btnLength will determine the number of
characters in the Edit component. If there are less than 5 the form colour is changed
to red, less than 10 the colour changes to green, less than 20 the colour changes to blue
and 20 or more the colour changes to yellow.

Posted in DelphiComments (1)


Categories