Time of Update: 2014-06-05
標籤:c style class blog code java 當用JScrollPane和JPanel顯示圖片時,需要將JPanel的PrefferedSize及時傳遞給JScrollPane,否則容易出現JScrollPane的捲軸無法與圖片大小匹配的問題,下面是從Matrix網上搜到的一段
Time of Update: 2014-06-01
標籤:internet routingAs a network guy, you possinly need to check Internet Routing table for your IP range from time to time,especailly when you have some routing change in your network.You can go to the link below and find one looking glass router to
Time of Update: 2014-06-02
標籤:c class code java a tar “<%#....%>”這是資料繫結,裡面可以調用C#的方法,比如在資料控制項裡執行綁定某個欄位<%# Eval("Name")%>這樣幫頂一個Name的欄位。“<%@...%>”
Time of Update: 2014-06-03
標籤:c a http 檔案 使用 html mod_rewrite是Apache的一個非常強大的功能,它可以實現偽靜態頁面。下面我詳細說說它的使用方法!對初學者很有用的哦!1.檢測Apache是否支援mod_rewrite通過php提供的phpinfo()函數查看環境配置,通過Ctrl+F尋找
Time of Update: 2014-06-01
標籤:des c code java a ext <script type="text/javascript">function getType(o){var _t;return ((_t = typeof(o)) == "object" ? o==null && "
Time of Update: 2014-06-05
標籤:delphi json sql list Json是一種輕量級資料轉送格式,廣泛應用互連網和各應用中,json主要採用鍵值對來表示資料項目,多個資料項目之間用逗號分隔,也可以用於數組。下面注重介紹一下在delphi中使用json,在delphi中使用json常用superobject單元檔案,該檔案可以在網上下載,最初接觸jso
Time of Update: 2014-05-25
標籤:style class blog c code java 1 <html> 2 <head> 3 <title>動態顯示當前系統時間</title> 4 </head> 5
Time of Update: 2014-05-26
標籤:style class c ext http a <!DOCTYPE"><html> <head> <title>導覽功能表-下拉</title> <meta
Time of Update: 2014-05-28
標籤:android style c class blog code jQuery Mobile不同網頁之間的跳轉問題jQuery
Time of Update: 2014-05-25
標籤:style class blog c code java .NET責任鏈模式、單例模式、模板方法模式混用 前言 哇,看到題目挺長的,這個組合型的東西,到底能幹啥呢?本篇文章來一起琢磨琢磨,這兩天為了團隊的軟體趕工,我負責的那一塊叫:外掛程式管理器。我們團隊的成員用的語言還是挺分
Time of Update: 2014-05-30
標籤:c style class blog code java 通常使用者上傳的圖片需要壓縮或者產生縮圖。用System.Web.Helpers.WebImage的Resize方法可以很方便的實現這一功能。範例程式碼如下: 1 /// <summary> 2 /// 儲存縮圖 3 /
Time of Update: 2014-05-25
標籤:style c java tar ext http 作為企業級開發最流行的工具,用Myeclipse開發java
Time of Update: 2014-05-18
標籤:class c tar http a get php取得目前時間函數文章提供了php的幾種擷取目前時間的函數,date,time等哦,同時告訴我如何解決時區問題哦。 php教程取得目前時間函數文章提供了php的幾種擷取目前時間的函數,date,time等哦,同時告訴我如何解決時區
Time of Update: 2014-05-24
標籤:c a 檔案 使用 art 代碼 我個人並不太喜歡smarty的文法,寫起來比較囉嗦易出現匹配出錯,但是舊項目中有許多工程都是採用它作模板。最近需要在此上稍微加一些PHP的內容,但我不想在模板控制層去一個一個assign,而想在模板檔案中直接嵌入PHP的代碼。搜尋了一下smarty中確實有
Time of Update: 2014-05-18
標籤:style blog class code c java 原文出處:http://www.jb51.net/article/24014.htm 在jQuery庫中,幾乎所有的外掛程式都被限制在它的命名空間裡。全域的對象都很好地儲存在jQuery命名空間裡,因此當把jQuery和其
Time of Update: 2014-05-18
標籤:style blog class code c java <!DOCTYPE html><html lang="en" xmlns="http://www.w3.org/1999/xhtml"><head> <meta
Time of Update: 2014-05-19
標籤:style blog class code c java 基於網頁的音樂播放器demo
Time of Update: 2014-05-15
關於運動速度的參數與真實速度有點差距,大家可以自行調整<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>地球繞著太陽轉,月球繞著地球轉</title></head><body> <canvas
Time of Update: 2014-05-25
好吧題目很簡單,但是有些細節還是挺有意思的。題目是:計算今年是否是閏年,判斷閏年條件,滿足年份模400為0,或者模4為0但是模100不為0答案是這樣的:import time#計算今年是否是閏年,判斷閏年條件,滿足年份模400為0,或者模4為0但是模100不為0thisyear = time.localtime()[0] #擷取年份if thisyear%400==0 or thisyear%4==0 and thisyear%100<>0:print 'this year is
Time of Update: 2014-05-25
一 繼承 基類定義如下:class people: #define attribute name = '' age = 0 #define private attribute __weight = 0 def