当前位置: 首页 > news >正文

重庆网上房地产网站做网站制作

重庆网上房地产网站,做网站制作,阿里快速建站,营销型网站的作用是因需要根据不同星期自动调用不同屏保图片#xff0c;自己动手做了一个 代码如下#xff1a; //主工程文件 program scrsave;usesForms,Unit1 in Unit1.pas {Form1};{$R *.res}beginApplication.Initialize;Application.Title : 横店屏保一;Application.CreateForm(TForm1, Fo… 因需要根据不同星期自动调用不同屏保图片自己动手做了一个 代码如下 //主工程文件 program scrsave;usesForms,Unit1 in Unit1.pas {Form1};{$R *.res}beginApplication.Initialize;Application.Title : 横店屏保一;Application.CreateForm(TForm1, Form1);Application.Run; end.//单元文件 unit Unit1;interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs, ExtCtrls, StdCtrls, JPEG;typeTForm1 class(TForm)Timer1: TTimer;procedure FormDestroy(Sender: TObject);procedure FormCreate(Sender: TObject);procedure FormShow(Sender: TObject);procedure Timer1Timer(Sender: TObject);procedure LoadImage(img: TBitmap; cFile: String);procedure FormMouseDown(Sender: TObject; Button: TMouseButton;Shift: TShiftState; X, Y: Integer);procedure FormKeyDown(Sender: TObject; var Key: Word;Shift: TShiftState);privateprocedure FindFiles(sPath: string);procedure Detect(var Msg: TMsg; var Handled: Boolean);procedure BackClear;//清屏procedure HundredLeaf(cFile: string); //百叶窗procedure PushDrag(cFile: string);//推拉procedure HorizonCross(cFile: string);//水平交错procedure VericalCross(cFile: string);//垂直交错procedure PutStick(cFile: string); //积木procedure CenToAll(cFile: string);//中间到四周procedure AllToCen(cFile: string);procedure LUpToRDown(cFile: string);//左上到右下procedure RDownToLUp(cFile: string);//右下到左上procedure LDownToRUp(cFile: string);//左下到右上procedure RUpToLDown(cFile: string);//右上到左下procedure MidToBoth(cFile: string);//中间到两边procedure BothToMid(cFile: string);//两边到中间procedure FlowSand(cFile: string);//流沙{ Private declarations }public{ Public declarations }end;varForm1: TForm1;FilesList: TStringList;sFilePath: string;Stop: boolean;implementation //{$D ScreenSave 我的屏幕保护}{$R *.dfm}procedure TForm1.FormDestroy(Sender: TObject); beginFilesList.Free; end;procedure TForm1.FormCreate(Sender: TObject); varweek: Integer; beginself.Color : clBlack;Stop : False;//按星期选择相应的文件夹week : DayOfWeek(Date());case week of1,2: sFilePath : ExtractFilePath(Application.ExeName)Hdds\monday;3: sFilePath : ExtractFilePath(Application.ExeName)Hdds\tuesday;4: sFilePath : ExtractFilePath(Application.ExeName)Hdds\wendsday;5: sFilePath : ExtractFilePath(Application.ExeName)Hdds\thursday;6,7: sFilePath : ExtractFilePath(Application.ExeName)Hdds\friday;end;FindFiles(sFilePath);//Self.FormStyle : fsStayOnTop; end;procedure Tform1.FindFiles(sPath: string); function FType(cFile: String): boolean; vark :integer;ext: string; beginresult : false;if Length(cFile) 2 thenbegink : pos(.,cFile);ext : UpperCase(copy(cFile,k,length(cFile)-k1));if (ext .JPEG) or (ext .JPG) or (ext .BMP) thenresult : true;end; end; varSearchRec: TSearchRec; beginif not Assigned(FilesList) then FilesList: TStringList.Create;FilesList.Clear;if FindFirst(sPath\*.*, 0, SearchRec)0 thenbegintryrepeatif FType(SearchRec.Name) thenbeginFilesList.Add(sPath\SearchRec.Name);end;until FindNext(SearchRec)0;exceptFindClose(SearchRec);raise;end;FindClose(SearchRec);end; end;procedure TForm1.Detect(var Msg: TMsg; var Handled: Boolean); beginif (Msg.message wm_keydown) or (Msg.message wm_lbuttondown) or(Msg.message wm_rbuttondown)thenbeginstop : true;Timer1.Enabled : True;close;end; end;procedure TForm1.FormShow(Sender: TObject); beginWindowState : wsMaximized;Self.BringToFront;ShowCursor(False);Application.OnMessage : Detect; end;//百叶窗效果 procedure TForm1.HundredLeaf(cFile: string); varBitTemp1,BitTemp2,Bitmap:TBitmap;i,j,bmpheight,bmpwidth:integer;xgroup,xcount:integer; beginBitTemp1: TBitmap.Create;//过渡位图BitTemp2: TBitmap.Create;Bitmap : TBitmap.Create;BackClear;tryLoadImage(BitTemp1, cFile);BitTemp2.Width : self.Width;BitTemp2.Height : self.Height;BitTemp2.Canvas.StretchDraw(ClientRect, BitTemp1);Bitmap.Width : self.Width;Bitmap.Height : self.Height;bmpheight:Height;bmpwidth:Width;xgroup:10;xcount:bmpheight div xgroup;for i:0 to xcount dofor j:0 to xgroup dobeginsleep(10);Bitmap.Canvas.CopyRect(Rect(0,xcount*ji-1,bmpwidth,xcount*ji),BitTemp2.Canvas,Rect(0,xcount*ji-1,bmpwidth,xcount*ji)); self.Canvas.Draw(0,0,Bitmap);Application.ProcessMessages;if Stop then Exit;end;finallyBitmap.Free;BitTemp1.Free;BitTemp2.Free;end; end;// //推拉效果 // procedure TForm1.PushDrag(cFile: string); varBitTemp1,BitTemp2:TBitmap;//Bitmap:TBitmap;i,bmpheight,bmpwidth:integer; beginBackClear; //清屏BitTemp1: TBitmap.Create;//过渡位图BitTemp2: TBitmap.Create;//Bitmap : TBitmap.Create;tryLoadImage(BitTemp1, cFile);BitTemp2.Width : self.Width;BitTemp2.Height : self.Height;BitTemp2.Canvas.StretchDraw(ClientRect, BitTemp1);//Bitmap.Width : self.Width;// Bitmap.Height : self.Height;bmpheight:Height;bmpwidth:Width;for i:0 to bmpheight dobegin{Bitmap.Canvas.CopyRect(Rect(0,bmpheight-i,bmpwidth,bmpheight),BitTemp2.Canvas,Rect(0,0,bmpwidth,i));self.Canvas.Draw(0,0,Bitmap,); }BitBlt(Self.Canvas.Handle,0,bmpheight-i,bmpwidth,bmpheight,BitTemp2.Canvas.Handle,0,0,srcCopy);Application.ProcessMessages;if Stop then Exit;end;finally// Bitmap.Free;BitTemp1.Free;BitTemp2.Free;end; end;// //水平交错 // procedure TForm1.HorizonCross(cFile: string); varBitTemp1,BitTemp2,Bitmap:TBitmap;i,j,bmpheight,bmpwidth:integer; begin//BackClear(cFile); //清屏BitTemp1: TBitmap.Create;//过渡位图BitTemp2: TBitmap.Create;Bitmap : TBitmap.Create;tryLoadImage(BitTemp1, cFile);BitTemp2.Width : self.Width;BitTemp2.Height : self.Height;BitTemp2.Canvas.StretchDraw(ClientRect, BitTemp1);Bitmap.Width : self.Width;Bitmap.Height : self.Height;bmpheight:Height;bmpwidth:Width;i:0;while ibmpwidth dobeginj:i;while j 0 dobeginBitmap.Canvas.CopyRect(Rect(j-1,0,j,bmpheight),BitTemp2.Canvas,Rect(bmpwidth-ij-1,0,bmpwidth-ij,bmpheight));Bitmap.Canvas.CopyRect(Rect(bmpwidth-j-1,0,bmpwidth-j,bmpheight),BitTemp2.Canvas,Rect(i-j,0,i-j1,bmpheight));j:j-3;Application.ProcessMessages;if Stop then Exit;end;Application.ProcessMessages;if Stop then Exit;self.Canvas.Draw(0,0,Bitmap);inc(i,3);end;Bitmap.Canvas.CopyRect(rect(0,0,Width,Height),BitTemp2.Canvas,rect(0,0,Width,Height));self.Canvas.Draw(0,0,Bitmap);sleep(500);finallyBitmap.Free;BitTemp1.Free;BitTemp2.Free;end; end;// //垂直交错 // procedure TForm1.VericalCross(cFile: string); varBitTemp1,BitTemp2,Bitmap:TBitmap;i,j,bmpheight,bmpwidth:integer; beginBackClear; //清屏BitTemp1: TBitmap.Create;//过渡位图BitTemp2: TBitmap.Create;Bitmap : TBitmap.Create;tryLoadImage(BitTemp1, cFile);BitTemp2.Width : self.Width;BitTemp2.Height : self.Height;BitTemp2.Canvas.StretchDraw(ClientRect, BitTemp1);Bitmap.Width : self.Width;Bitmap.Height : self.Height;bmpheight:Height;bmpwidth:Width;i:0;while ibmpheight dobeginj:i;while j 0 dobeginBitmap.Canvas.CopyRect(Rect(0,j-1,bmpwidth,j),BitTemp2.Canvas,Rect(0,bmpheight-ij-1,bmpwidth,bmpheight-ij));Bitmap.Canvas.CopyRect(Rect(0,bmpheight-j-1,bmpwidth,bmpheight-j),BitTemp2.Canvas,Rect(0,i-j,bmpwidth,i-j1));j:j-3;Application.ProcessMessages;if Stop then Exit;end;Application.ProcessMessages;if Stop then Exit;self.Canvas.Draw(0,0,Bitmap);i:i3;end;Bitmap.Canvas.CopyRect(rect(0,0,Width,Height),BitTemp2.Canvas,rect(0,0,Width,Height));self.Canvas.Draw(0,0,Bitmap);sleep(500);finallyBitmap.Free;BitTemp1.Free;BitTemp2.Free;end; end;// //积木效果 // procedure TForm1.PutStick(cFile: string); varBitTemp1,BitTemp2,Bitmap:TBitmap;i,j,x,y:integer; beginBitTemp1: TBitmap.Create;//过渡位图BitTemp2: TBitmap.Create;Bitmap : TBitmap.Create;tryLoadImage(BitTemp1, cFile);BitTemp2.Width : self.Width;BitTemp2.Height : self.Height;BitTemp2.Canvas.StretchDraw(ClientRect, BitTemp1);Bitmap.Width : self.Width;Bitmap.Height : self.Height;self.Color : clBlack;i : 0;j : 0;for x:0 to 20 dobeginfor y:0 to 15 dobeginBitmap.Canvas.CopyRect(rect(i*50,j*50,(i1)*50,(j1)*50),BitTemp2.Canvas,rect(i*50,j*50,(i1)*50,(j1)*50));self.Canvas.Draw(0,0,Bitmap);i:i2;Application.ProcessMessages;if Stop then Exit;end;j:j2;i:0;end;j:1;i:1;for x:0 to 20 dobeginfor y:0 to 15 dobeginBitmap.Canvas.CopyRect(rect(i*50,j*50,(i1)*50,(j1)*50),BitTemp2.Canvas,rect(i*50,j*50,(i1)*50,(j1)*50));self.Canvas.Draw(0,0,Bitmap);i:i2;Application.ProcessMessages;if Stop then Exit;end;j:j2;i:1;end;i : 0;j : 0;for x:0 to 20 dobeginfor y:0 to 15 dobeginBitmap.Canvas.CopyRect(rect(i*50,(j1)*50,(i1)*50,(j2)*50),BitTemp2.Canvas,rect(i*50,(j1)*50,(i1)*50,(j2)*50));self.Canvas.Draw(0,0,Bitmap);i:i2;Application.ProcessMessages;if Stop then Exit;end;j:j2;i:0;end;j:1;i:1;for x:0 to 20 dobeginfor y:0 to 15 dobeginBitmap.Canvas.CopyRect(rect(i*50,(j-1)*50,(i1)*50,j*50),BitTemp2.Canvas,rect(i*50,(j-1)*50,(i1)*50,j*50));self.Canvas.Draw(0,0,Bitmap);i:i2;Application.ProcessMessages;if Stop then Exit;end;j:j2;i:1;end;finallyBitmap.Free;BitTemp1.Free;BitTemp2.Free;end; end;procedure TForm1.Timer1Timer(Sender: TObject); vari,j : Integer; beginTimer1.Enabled : False;Randomize;i : 0;while not stop dobeginj : 1Random(13);case j of1: HundredLeaf(FilesList.Strings[i]);2: PushDrag(FilesList.Strings[i]);//推拉3: HorizonCross(FilesList.Strings[i]);//水平交错4: VericalCross(FilesList.Strings[i]);//垂直交错5: PutStick(FilesList.Strings[i]); //积木6: CenToAll(FilesList.Strings[i]); //中心到四周7: AllToCen(FilesList.Strings[i]);8: LUpToRDown(FilesList.Strings[i]);//左上到右下9: RDownToLUp(FilesList.Strings[i]);//右下到左上10: LDownToRUp(FilesList.Strings[i]);//左下到右上11: RUpToLDown(FilesList.Strings[i]);//右上到左下12: MidToBoth(FilesList.Strings[i]);//中间到两边13: BothToMid(FilesList.Strings[i]);//两边到中间14: FlowSand(FilesList.Strings[i]);//流沙end;Sleep(2000);if stop thenbeginTimer1.Enabled : True;exit;end;inc(i);if i FilesList.Count then i : 0;end; //whileend;procedure TForm1.LoadImage(img: TBitmap; cFile: String); varext: String;jpgimg: TJpegImage;beginext : ExtractFileExt(cFile);if (UpperCase(ext) .JPG) or (UpperCase(ext) .JPEG) thenbeginjpgimg : TJpegImage.Create;tryjpgimg.LoadFromFile(cFile);img.Assign(jpgimg);finallyjpgimg.Free;end;endelse img.LoadFromFile(cFile); end;procedure TForm1.BackClear;//清黑屏 conststep 100; varBitTemp, Bitmap : TBitmap;i : integer; begin // self.color : clBlack; // repaint;BitTemp : TBitmap.Create;Bitmap:TBitmap.Create;LoadImage(BitTemp, ExtractFilePath(Application.ExeName) Hdds\Monday\Back.bmp);//载入图片Bitmap.Width : self.Width;Bitmap.Height : self.Height;//Bitmap.Canvas.Brush.Color : clBlack;Bitmap.Canvas.StretchDraw(ClientRect, BitTemp);for i : 1 to step doBitBlt(self.Canvas.Handle,0,step-i,Width,Height,Bitmap.Canvas.Handle,0,0,blackness);Bitmap.Free; //释放位图BitTemp.Free; end;procedure TForm1.CenToAll(cFile: string);//中间到四周 constStep1600; //循环的次数用以调整图象变动的快慢 varBitmap, BitTemp:TBitmap;X0,Y0:integer;i,MidX,MidY:integer;RatioX,RatioY:real; beginBitTemp : TBitmap.Create;Bitmap:TBitmap.Create;tryLoadImage(BitTemp, cFile);//载入图片Bitmap.Width : self.Width;Bitmap.Height : self.Height;Bitmap.Canvas.StretchDraw(self.ClientRect, BitTemp);x0:width div 2;y0:height div 2;ratiox:Bitmap.width/step; //step每加1图片变化的宽度ratioy:Bitmap.height/step;for i:0 to step dobeginmidx:round(ratiox*i*0.5);midy:round(ratioy*i*0.5);bitblt(self.canvas.handle,x0-midx,y0-midy,round(ratiox*i),round(ratioy*i),bitmap.canvas.handle,x0-midx,y0-midy,srccopy);//循环拷贝一定区域的图象显示区域不断变化实现特效显示Application.ProcessMessages;if Stop then Exit;end;finallybitmap.free; //释放位图BitTemp.Free;end; end;procedure TForm1.AllToCen(cFile: string);//四周到中间 constStep1600; //循环的次数用以调整图象变动的快慢 varBitmap, BitTemp:TBitmap;i :integer;RatioX,RatioY:real; beginBitTemp : TBitmap.Create;Bitmap:TBitmap.Create;tryLoadImage(BitTemp, cFile);//载入图片Bitmap.Width : self.Width;Bitmap.Height : self.Height;Bitmap.Canvas.StretchDraw(self.ClientRect, BitTemp);ratiox:width/step;ratioy:height/step;for i: 0 to step dobegin //由于bitblt每次只能拷贝一个矩形故要实现//从四周到中间的渐变显示特效需要每次拷贝周边的//四个矩形组成一个矩形框bitblt(self.canvas.handle,0,0,round(ratiox*i*0.5),height,bitmap.canvas.handle,0,0,srccopy);//拷贝左边的矩形bitblt(self.canvas.handle,0,0,width,round(ratioy*i*0.5),bitmap.canvas.handle,0,0,srccopy);//拷贝上方的矩形bitblt(self.canvas.handle,width-round(ratiox*i*0.5),0,width,height,bitmap.canvas.handle,width-round(ratiox*i*0.5),0,srccopy);//拷贝右边的矩形bitblt(self.canvas.handle,0,height-round(ratioy*i*0.5),width,height,bitmap.canvas.handle,0,height-round(ratioy*i*0.5),srccopy);//拷贝下面的矩形Application.ProcessMessages;if Stop then Exit;end;finallybitmap.free; //释放位图BitTemp.Free;end; end;procedure TForm1.LUpToRDown(cFile: string);//左上到右下 constStep1600; //循环的次数用以调整图象变动的快慢 varBitmap, BitTemp:TBitmap;i:integer;RatioX,RatioY:real; beginBitTemp : TBitmap.Create;Bitmap:TBitmap.Create;tryLoadImage(BitTemp, cFile);//载入图片Bitmap.Width : self.Width;Bitmap.Height : self.Height;Bitmap.Canvas.StretchDraw(self.ClientRect, BitTemp);ratiox:width/step;ratioy:height/step;for i: 0 to step dobeginbitblt(self.canvas.handle,0,0,round(ratiox*i),round(ratioy*i),bitmap.canvas.handle,0,0,srccopy);//拷贝左上角的一个矩形要求右下角的坐标//按round(ratiox*i),round(ratioy*i)变化//注意由于宽和高不等所以它们的变化幅度//也应该有所不同。Application.ProcessMessages;if Stop then Exit;end;finallybitmap.free; //释放位图BitTemp.Free;end; end;procedure TForm1.RDownToLUp(cFile: string);//右下到左上 constStep1600; //循环的次数用以调整图象变动的快慢 varBitmap, BitTemp:TBitmap;i:integer;RatioX,RatioY:real; beginBitTemp : TBitmap.Create;Bitmap:TBitmap.Create;tryLoadImage(BitTemp, cFile);//载入图片Bitmap.Width : self.Width;Bitmap.Height : self.Height;Bitmap.Canvas.StretchDraw(self.ClientRect, BitTemp);ratiox:width/step;ratioy:height/step;for i: 0 to step dobeginbitblt(self.canvas.handle,width-round(ratiox*i),height-round(ratioy*i),width,height,bitmap.canvas.handle,width-round(ratiox*i),height-round(ratioy*i),srccopy);Application.ProcessMessages;if Stop then Exit;end;finallybitmap.free; //释放位图BitTemp.Free;end; end;procedure TForm1.LDownToRUp(cFile: string);//左下到右上 constStep1600; //循环的次数用以调整图象变动的快慢 varBitmap, BitTemp:TBitmap;i:integer;RatioX,RatioY:real; beginBitTemp : TBitmap.Create;Bitmap:TBitmap.Create;tryLoadImage(BitTemp, cFile);//载入图片Bitmap.Width : self.Width;Bitmap.Height : self.Height;Bitmap.Canvas.StretchDraw(self.ClientRect, BitTemp);ratiox:width/step;ratioy:height/step;for i: 0 to step dobeginbitblt(self.canvas.handle,0,height-round(ratioy*i),round(ratiox*i),height,bitmap.canvas.handle,0,height-round(ratioy*i),srccopy);Application.ProcessMessages;if Stop then Exit;end;finallybitmap.free; //释放位图BitTemp.Free;end; end;procedure TForm1.RUpToLDown(cFile: string);//右上到左下 constStep1600; //循环的次数用以调整图象变动的快慢 varBitmap, BitTemp:TBitmap;i:integer;RatioX,RatioY:real; beginBitTemp : TBitmap.Create;Bitmap:TBitmap.Create;tryLoadImage(BitTemp, cFile);//载入图片Bitmap.Width : self.Width;Bitmap.Height : self.Height;Bitmap.Canvas.StretchDraw(self.ClientRect, BitTemp);ratiox:width/step;ratioy:height/step;for i: 0 to step dobeginbitblt(self.canvas.handle,width-round(ratiox*i),0,width,round(ratioy*i),bitmap.canvas.handle,width-round(ratiox*i),0,srccopy);Application.ProcessMessages;if Stop then Exit;end;finallybitmap.free; //释放位图BitTemp.Free;end; end;procedure TForm1.MidToBoth(cFile: string);//中间到两边 constStep1600; //循环的次数用以调整图象变动的快慢 varBitmap, BitTemp:TBitmap;i:integer;RatioX:real; beginBitTemp : TBitmap.Create;Bitmap:TBitmap.Create;tryLoadImage(BitTemp, cFile);//载入图片Bitmap.Width : self.Width;Bitmap.Height : self.Height;Bitmap.Canvas.StretchDraw(self.ClientRect, BitTemp);RatioX:width/step;for i: 0 to step dobegin//注意此时左上角的x坐标朝左变化而右下角的x坐标朝右变化bitblt(self.canvas.handle,round(width/2)-round(ratiox*i*0.5),0,round(ratiox*i),height,bitmap.canvas.handle,round(width/2)-round(ratiox*i*0.5),0,srccopy);Application.ProcessMessages;if Stop then Exit;end;finallybitmap.free; //释放位图BitTemp.Free;end; end;procedure TForm1.BothToMid(cFile: string);//两边到中间 constStep1600; //循环的次数用以调整图象变动的快慢 varBitmap, BitTemp:TBitmap;i:integer;RatioX:real; beginBitTemp : TBitmap.Create;Bitmap:TBitmap.Create;tryLoadImage(BitTemp, cFile);//载入图片Bitmap.Width : self.Width;Bitmap.Height : self.Height;Bitmap.Canvas.StretchDraw(self.ClientRect, BitTemp);ratiox:width/step;for i: 0 to step dobegin//实际是从四周到中心变化的简化。bitblt(self.canvas.handle,0,0,round(ratiox*i*0.5),height,bitmap.canvas.handle,0,0,srccopy);bitblt(self.canvas.handle,width-round(ratiox*i*0.5),0,width,height,bitmap.canvas.handle,width-round(ratiox*i*0.5),0,srccopy);Application.ProcessMessages;if Stop then Exit;end;finallybitmap.free; //释放位图BitTemp.Free;end; end;procedure TForm1.FlowSand(cFile: string);//流沙 varBitmap, BitTemp1, BitTemp2:TBitmap;i,j:integer; beginBitTemp1 : TBitmap.Create;BitTemp2 : TBitMap.Create;Bitmap:TBitmap.Create;tryLoadImage(BitTemp1, cFile);//载入图片BitTemp2.Width : self.Width;BitTemp2.Height : self.Height;BitTemp2.Canvas.StretchDraw(self.ClientRect, BitTemp1);BitMap.width : Self.width;BitMap.height : Self.height;i:BitMap.Height;for j: 1 to i dobeginBitMap.Canvas.CopyRect(Rect(0,j-1,BitMap.Width,j),BitTemp2.Canvas,Rect(0,i-1,BitMap.Width,i));Self.Canvas.Draw(0,j-1,BitMap);Application.ProcessMessages;if Stop then Exit;end;for i:BitMap.Height downto 1 dobeginBitMap.Canvas.CopyRect(Rect(0,i-1,BitMap.Width,i),BitTemp2.Canvas,Rect(0,i-1,BitMap.Width,i));Self.Canvas.Draw(0,i-1,BitMap);Application.ProcessMessages;if Stop then Exit;end;finallyBitmap.free; //释放位图BitTemp1.free;BitTemp2.Free;end; end;procedure TForm1.FormMouseDown(Sender: TObject; Button: TMouseButton;Shift: TShiftState; X, Y: Integer); beginclose; end;procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word;Shift: TShiftState); beginclose; end;end.//窗体文件 object Form1: TForm1Left 237Top 206Align alCustomBorderStyle bsNoneCaption Form1ClientHeight 487ClientWidth 613Color clBtnFaceFont.Charset DEFAULT_CHARSETFont.Color clWindowTextFont.Height -11Font.Name TahomaFont.Style []OldCreateOrder FalsePosition poScreenCenterOnCreate FormCreateOnDestroy FormDestroyOnKeyDown FormKeyDownOnMouseDown FormMouseDownOnShow FormShowPixelsPerInch 96TextHeight 13object Timer1: TTimerInterval 2000OnTimer Timer1TimerLeft 15Top 26end end转载于:https://www.cnblogs.com/boltwolf/archive/2011/06/07/2074443.html
http://www.zqtcl.cn/news/118583/

相关文章:

  • 网站的优化从几个方面网站建设需注意哪些事项
  • 网站建设的技术有哪些内容东莞网站建设最优
  • 网站建设税费很多网站没有后台
  • 百度云主机上装网站flash怎么做网页
  • 外贸网站能用阿里云吗哔哩哔哩网页版打不开
  • 南宁月嫂网站建设财经直播的网站开发一个多少钱
  • 宁波网站的建设百度网盟推广 网站
  • 大连城乡建设局网站青岛网站建设外贸
  • 石家庄网站建设招聘珠海快速网站建设
  • 网站建设代理ai制作网页
  • 微网站平台怎样做网站wordpress侧栏跟随
  • 手机网站建设好吗湖南省专业建设公司网站的机构
  • 网站代码 字体好用的cms网站
  • 美食网站首页设计用手机怎么看自己做的网站
  • 平台类网站开发怎样做永久网站二维码
  • 网站开发客户挖掘php网站开发心得3500字
  • 检察院做网站的目的青岛网站推广优化
  • dede替换网站模板定制网站建设的流程
  • 天津专业网站制作网站开发模板
  • 做二手车网站需要什么怎样建立门户网站
  • 宁波做网站首荐荣盛网络网站建设太仓
  • 购物网站公司要花费多少钱wordpress 菜单 字体加粗
  • 网站模板如何编辑软件crm免费客户管理系统
  • 微信制作网站设计重庆关键词优化软件
  • 网站的设计与应用论文平台推广计划书模板范文
  • 网站备案用户名忘了怎么办网站做301排名会掉
  • 厦门制作网站企业网站子域名怎么做
  • 青岛微网站开发品牌建设青之见
  • 淄博哪有培训做网站的湖南营销型网站建设企业
  • 动物网站建设深圳最好的营销网站建设公司