- 浏览: 87843 次
- 性别:
- 来自: 北京
最新评论
文章列表
need to install Codeina firstly
http://fedoraproject.org/wiki/Multimedia/MP3
- 2009-04-25 16:50
- 浏览 597
- 评论(0)
Display columns from two tables in one DataGridView
There're two ways.
One way is to use SQL( join )
one DataTable, one DataAdapter.
set "DataGridView.dataSource = DataTable". It's OK
It's very easy,but disadvantage is that you can not use "dataAdapter.update"
The other way is ...
- 2009-04-25 16:18
- 浏览 699
- 评论(0)
If you install PostgreSQL8.3.0 in MS Vista,you will encounter the Error.
8.3.1 Fixed this problem
- 2009-04-25 16:18
- 浏览 750
- 评论(0)
背景:
原有的Fedora上已经缺省安装了scim-pinyin 等IM,为了练练手决定通过src来安装。
首先是通过[rpm -e ] uninstall all package about scim
问题描述
1. Download source of SCIM and SCIM-pinying from sourceforge
2. ./configurate --prefix=/usr -> make -> install (SCIM -> SCIM-pinying)
(notice: defaultly installl in /usr/local, if so, ...
- 2009-04-25 16:17
- 浏览 979
- 评论(0)
eclipes MS932
- 博客分类:
- Java
需要在 jre/lib/ 下面有charsets.jar
restart Eclipes OK
- 2009-04-25 16:16
- 浏览 998
- 评论(0)
[Problem Description]
Once click "close" button on vb.net form Textbox's Lostfoucs() event is fired.
[Resolve]
...Handles Textbox.Validating
...
cmdClose.CausesValidation=False
- 2009-04-25 16:15
- 浏览 744
- 评论(0)
In javascript
var Shell = new ActiveXObject("Shell.Application");
var RetI = Shell.BrowseForFolder(0, 'フォルダ選択ダイアログ', 1);
you can open local folder explore dialog to select a folder.
But if you encounter error with "書き込みできません"
please comfirm whether スクリプトを実行しても安全だとマークされていないAct ...
- 2009-04-25 16:14
- 浏览 2777
- 评论(0)
bogomips
http://www.clifton.nl/index.html?bogomips.html
用来测试CPU 速度的
lmbench
http://www.bitmover.com/lmbench/whatis_lmbench.html
Tools for performance analysis
说明中建议最好不要在X下面测试
- 2009-04-25 16:13
- 浏览 1640
- 评论(0)
和gcc 同理,在./configure 命令中添加 CFLAGS= -g 和 CXXFLAGS=-g
- 2009-04-25 16:11
- 浏览 805
- 评论(0)
从文件内容查找匹配指定字符串的行:
$ grep "被查找的字符串" 文件名
从文件内容查找与正则表达式匹配的行:
$ grep –e “正则表达式” 文件名
查找时不区分大小写:
$ grep –i "被查找的字符串" 文件名
查找匹配的行数:
$ grep -c "被查找的字符串" 文件名
从文件内容查找不匹配指定字符串的行:
$ grep –v "被查找的字符串" 文件名
从根目录开始查找所有扩展名为.log的文本文件,并找出包含”ERROR”的行
find / -type f -name &qu ...
- 2009-04-25 16:11
- 浏览 1206
- 评论(0)
Mozilla UserAgent
* 查看方法:
http://www.useragentstring.com/
http://forum.moztw.org/viewtopic.php?p=129284#129284
* 修改方法
url address: [about:config]
追加 general.useragent.override
值(for example) Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9b1) Gecko/2007121411 Firefox/3.0b1
How to delete ...
- 2009-04-25 16:09
- 浏览 1210
- 评论(0)
类似于SQL Server中的 sp_columns
d [tableName]
- 2009-04-25 15:57
- 浏览 743
- 评论(0)
System.Data.SqlClient.SqlConnection
SQL Server 7.0 以上专用
System.Data.OleDb.OleDbConnection
可连接 Access, SQL Server,Oracle
System.Data.Odbc.OdbcConnection
通过ODBC连接(效率低)
System.Data.OracleClient.OracleConnection
Oracle专用
一个有用的提供ConnectString的Site
http://www.connectionstrings.com/
- 2009-04-25 15:56
- 浏览 735
- 评论(0)
以前在VB6中
strName = rs.Fields()
但在VB.NET中是运行不过的
strName = rs.Fields().value
- 2009-04-25 15:56
- 浏览 967
- 评论(0)
引用自http://tag.csdn.net/Article/ace6ff95-2159-4ebd-9143-f4c17145121f.html
今天tel interview 的时候被问到的问题,虽然简单,但因为很久不用了,回答的不够全面
从内容分配方面:
* 进程之间:独占内存空间
* 线程之间:共享内存空间(每个线程共享进程的数据)
从运行方面:
* 进程:独立运行
* 线程:依存于进程的运行(一个进程带多个线程)
- 2009-04-25 15:55
- 浏览 792
- 评论(0)