I want to download a picture from MLS house listing. It Saves Image as an ASP file. I can’t change the file type (the Save as Type only lists “All files” as a choice).How can I save the picture and view it on my computer? I use a PC computer.
Posted on 06 June 2010.
I want to download a picture from MLS house listing. It Saves Image as an ASP file. I can’t change the file type (the Save as Type only lists “All files” as a choice).How can I save the picture and view it on my computer? I use a PC computer.
Posted in ASPComments (1)
Posted on 06 June 2010.
I want to download a picture from MLS house listing. It Saves Image as an ASP file. I can’t change the file type (the Save as Type only lists “All files” as a choice).How can I save the picture and view it on my computer? I use a PC computer.
Posted in ASPComments (1)
Posted on 23 May 2010.
I would like to connect to my computer at work. I have downloaded all the programs that I should need (that coworkers are using to connect from home and it works for them), however, every time I try to log on, it tells me that networking problems are preventing my connection or that the computer is too busy to accept new connections. This is clearly on my end since everybody else can connect. Any idea?
Posted in ComputerComments (1)
Posted on 17 May 2010.
OK, so I’m knew to php. But the only way to learn it is to try, right? So i’m trying to make a simple 5 page web site. I want to use one layout and I want to be able to switch content of the page by clicking a link and using php. If you know how to do this simple script please show me in detail. Thank you.
Yes, its only 1 Template.
ANd…
this answer (you can also do this with redirects in .htaccess and build onlyone actual page). this sounds like what I”m looking for. Using only one page that redirects info. how do you do this?
Posted in PHPComments (1)
Posted on 12 May 2010.
I found asp2php but it works on a server. I have the asp code and I want to paste it and get it processed via a program or a site.
I am using WinXP.
Posted in ASPComments (2)
Posted on 10 May 2010.
I want my computer to automatically run scans and/or updates at night while I’m sleeping. I already set up the scheduled tasks part of my computer.
Posted in ComputerComments (4)
Posted on 05 May 2010.
I have a computer and a laptop. I have itunes on both. I at first synced my ipod touch to my laptop, and I bought all of my songs on the itunes app, not even on the actual computer. I want to sync my ipod to my home computer without losing all my songs. How do I do this?
Posted in ComputerComments (4)
Posted on 02 May 2010.
I have a page that allows a user to upload documents to a specified directory. I need to change the name of that file based on a name field (example:JohnDoe.doc). How can I get this done?
These answers have me on teh right path. If I was dynamically naming the document, how would I input form results to name the file? Example:
fs.MoveFile “E:\Inetpub\wwwroot\uploads\<%=(frmSend.Fields.Item("attach1").Value)%>.doc”,”E:\Inetpub\wwwroot\uploads\named\<%=(frmSend.Fields.Item(”LName”).Value)%.doc”
Posted in ASPComments (2)
Posted on 26 April 2010.
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)
Posted on 23 April 2010.
I want to create a page where there are two frame and when we click a link in one page, the main frame detect the change in page and all this in PHP. How can I do this?
Posted in PHPComments (2)