03 2011 档案

摘要:FrameViewzView = new FrameView(); //swing最大化处理 zView.getFrame().setSize(Toolkit.getDefaultToolkit().getScreenSize()); zView.getFrame().setLocation(0, 0); show(zView); 阅读全文
posted @ 2011-03-30 08:51 ljlxyf 阅读(396) 评论(0) 推荐(0) 编辑
摘要:1、swing分割窗口控件JSplitPane,用来将窗口分割成两个部分。 2、分割后的窗口每个窗口只能放一个控件,想要方多个控件的话,可以在上面方一个JPane面板,这样就可以方多个控件。 3、JSplitPane myJSplitPane=new JSplitPane(int newOrientaion,boolean new ContinuousLayout); newOrientaion:可选值为:JSplitPane.HORIZONTAL_SPLIT JSplitPane,VERTUCAL_SPLIT 4、常用方法 ①、setDividerSize(int size)设置分割条的大. 阅读全文
posted @ 2011-03-23 11:29 ljlxyf 阅读(5395) 评论(0) 推荐(4) 编辑
摘要:select描述:查询顾客的公司名、地址信息查询句法:var 构建匿名类型1 = from c in ctx.Customers select new { 公司名 = c.CompanyName, 地址 = c.Address };对应SQL:SELECT [t0].[CompanyName], [t0].[Address]FROM [dbo].[Customers] AS [t0] 描述:查询职员的姓名和雇用年份查询句法:var 构建匿名类型2 = from emp in ctx.Employees select new { 姓名 = emp.LastName + emp.FirstName 阅读全文
posted @ 2011-03-23 11:02 ljlxyf 阅读(696) 评论(0) 推荐(0) 编辑
摘要:/** To change this template, choose Tools | Templates* and open the template in the editor.*/import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.net.HttpURLConnection;import java.net.URL;import java.util.Properties;/****网页抓 阅读全文
posted @ 2011-03-11 09:41 ljlxyf 阅读(1653) 评论(0) 推荐(0) 编辑
摘要:针对上一篇JQuery学习中使用JQuery和Prototype整合使JQuery的tab实现局部数据,使用Prototype的Ajax中方法,现在使用JQuery实现同样的功能,如下:jquery.js下载地址:http://dl.javaeye.com/topics/download/f961ee8e-24fb-32b5-830a-b18e471e42f9jQuery真是个非常强大的类库,今天学习了一下,爱上了,讲下jQuery中ajax使用方法.例子:test.html页面引用<script type="text/javascript" src="jq 阅读全文
posted @ 2011-03-07 17:28 ljlxyf 阅读(933) 评论(0) 推荐(0) 编辑
摘要:在windows环境下可以用下面两种方法使窗口显示windows风格窗口! UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); public static void main(String[] args) { try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelC 阅读全文
posted @ 2011-03-02 15:53 ljlxyf 阅读(1854) 评论(1) 推荐(1) 编辑