Mac은 윈도우와 다르게 최대화 버튼이 없다.
대신 아래처럼 녹색 버튼이 있는데, 윈도우처럼 창이 최대화 되지는 않고, 최적화된 크기로 조절된다.
사용자 삽입 이미지





많이 사용하는 편인데, 단축키가 없어 불편하다.

"시스템 환경설정 - 키보드 - (키보드)응용 프로그램 단축키" 에서 추가할 수 있다.
사용자 삽입 이미지

































위와 같이 단축키를 설정할 메뉴 이름을 적어준다. 한글Mac은 메뉴명이 확대/축소이다.
그러면 아래와 같이 단축키가 지정됨을 볼 수 있다. 이 후 쾌적한 작업 수행~
사용자 삽입 이미지
2010/05/25 20:24 2010/05/25 20:24

Trackback URL : http://zxcasd.pe.kr/tt/trackback/186

  1. # roulette tricks 2010/08/20 11:41 Delete Reply

    아름다운 기사

Leave a comment
[로그인][오픈아이디란?]

윈도우 7 파일 권한

Posted 2010/04/12 14:07, Filed under: Program/for windows
출처 : http://www.parkoz.com/zboard/view.php?id=my_tips&no=13552 

기존 xp에서 사용하던 파일을 윈도우7에서 열려고 했더니, 권한이 없다는 메시지가 뜬다.
폴더-보안 에서 하위 폴더 권한을 모두 변경 하려 했지만, 권한 없음이 떴다.

첨부한 레지스트리 이용해서 폴더 권한을 얻도록 수정했다.
낱개로 권한을 바꿔서, 시간이 조금 걸린다.
2010/04/12 14:07 2010/04/12 14:07

Trackback URL : 이 글에는 트랙백을 보낼 수 없습니다

Leave a comment
[로그인][오픈아이디란?]

해바라기

Posted 2009/11/07 01:12, Filed under: 일상

사용자 삽입 이미지


2009/11/07 01:12 2009/11/07 01:12

Trackback URL : http://zxcasd.pe.kr/tt/trackback/182

Leave a comment
[로그인][오픈아이디란?]

GMF 2009

Posted 2009/11/07 00:56, Filed under: 일상
사용자 삽입 이미지

GMF 2009

2009/11/07 00:56 2009/11/07 00:56

Trackback URL : http://zxcasd.pe.kr/tt/trackback/181

Leave a comment
[로그인][오픈아이디란?]

MSSQL Convert Function - Date Time

Posted 2009/08/21 11:34, Filed under: Program/Database

출처 : http://msdn.microsoft.com/en-us/library/ms187928.aspx

SQL Server 2008 Books Online (July 2009)
CAST and CONVERT (Transact-SQL)

Converts an expression of one data type to another.

Topic link icon Transact-SQL Syntax Conventions

Syntax for CAST:
CAST ( expression AS data_type [ (length ) ])

Syntax for CONVERT:
CONVERT ( data_type [ ( length ) ] , expression [ , style ] )
expression

Is any valid expression.

data_type

Is the target data type. This includes xml, bigint, and sql_variant. Alias data types cannot be used. For more information about available data types, see Data Types (Transact-SQL).

length

Is an optional integer that specifies the length of the target data type. The default value is 30.

style

Is an integer expression that specifies how the CONVERT function is to translate expression. If style is NULL, NULL is returned. The range is determined by data_type. For more information, see the Remarks section.

Returns expression translated to data_type.

Date and Time Styles

When expression is a date or time data type, style can be one of the values shown in the following table. Other values are processed as 0. SQL Server supports the date format in Arabic style by using the Kuwaiti algorithm.

Without century (yy) (1) With century (yyyy) Standard Input/Output (3)

-

0 or 100 (1, 2)

Default

mon dd yyyy hh:miAM (or PM)

1

101

U.S.

mm/dd/yyyy

2

102

ANSI

yy.mm.dd

3

103

British/French

dd/mm/yyyy

4

104

German

dd.mm.yy

5

105

Italian

dd-mm-yy

6

106 (1)

-

dd mon yy

7

107 (1)

-

Mon dd, yy

8

108

-

hh:mi:ss

-

9 or 109 (1, 2)

Default + milliseconds

mon dd yyyy hh:mi:ss:mmmAM (or PM)

10

110

USA

mm-dd-yy

11

111

JAPAN

yy/mm/dd

12

112

ISO

yymmdd

yyyymmdd

-

13 or 113 (1, 2)

Europe default + milliseconds

dd mon yyyy hh:mi:ss:mmm(24h)

14

114

-

hh:mi:ss:mmm(24h)

-

20 or 120 (2)

ODBC canonical

yyyy-mm-dd hh:mi:ss(24h)

-

21 or 121 (2)

ODBC canonical (with milliseconds)

yyyy-mm-dd hh:mi:ss.mmm(24h)

-

126 (4)

ISO8601

yyyy-mm-ddThh:mi:ss.mmm (no spaces)

-

127(6, 7)

ISO8601 with time zone Z.

yyyy-mm-ddThh:mi:ss.mmmZ

(no spaces)

-

130 (1, 2)

Hijri (5)

dd mon yyyy hh:mi:ss:mmmAM

-

131 (2)

Hijri (5)

dd/mm/yy hh:mi:ss:mmmAM

1 These style values return nondeterministic results. Includes all (yy) (without century) styles and a subset of (yyyy) (with century) styles.

2 The default values (style 0 or 100, 9 or 109, 13 or 113, 20 or 120, and 21 or 121) always return the century (yyyy).

3 Input when you convert to datetime; output when you convert to character data.

4 Designed for XML use. For conversion from datetime or smalldatetime to character data, the output format is as described in the previous table.

5 Hijri is a calendar system with several variations. SQL Server uses the Kuwaiti algorithm.

ms187928.note(en-us,SQL.100).gifImportant:
By default, SQL Server interprets two-digit years based on a cutoff year of 2049. That is, the two-digit year 49 is interpreted as 2049 and the two-digit year 50 is interpreted as 1950. Many client applications, such as those based on Automation objects, use a cutoff year of 2030. SQL Server provides the two digit year cutoff configuration option that changes the cutoff year used by SQL Server and allows for the consistent treatment of dates. We recommend specifying four-digit years.

6 Only supported when casting from character data to datetime or smalldatetime. When character data that represents only date or only time components is cast to the datetime or smalldatetime data types, the unspecified time component is set to 00:00:00.000, and the unspecified date component is set to 1900-01-01.

7The optional time zone indicator, Z, is used to make it easier to map XML datetime values that have time zone information to SQL Server datetime values that have no time zone. Z is the indicator for time zone UTC-0. Other time zones are indicated with HH:MM offset in the + or - direction. For example: 2006-12-12T23:45:12-08:00.

When you convert to character data from smalldatetime, the styles that include seconds or milliseconds show zeros in these positions. You can truncate unwanted date parts when you convert from datetime or smalldatetime values by using an appropriate char or varchar data type length.

When you convert to datetimeoffset from character data with a style that includes a time, a time zone offset is appended to the result.


-----------------------------------------------------------------------------

select  convert(varchar, getdate(),0)
select  convert(varchar, getdate(),1)
select  convert(varchar, getdate(),2)
select  convert(varchar, getdate(),3)
select  convert(varchar, getdate(),4)
select  convert(varchar, getdate(),5)
select  convert(varchar, getdate(),6)
select  convert(varchar, getdate(),7)
select  convert(varchar, getdate(),8)
select  convert(varchar, getdate(),9)
select  convert(varchar, getdate(),10)
select  convert(varchar, getdate(),11)
select  convert(varchar, getdate(),12)
select  convert(varchar, getdate(),13)
select  convert(varchar, getdate(),14)

select  convert(varchar, getdate(),20)
select  convert(varchar, getdate(),21)
select  convert(varchar, getdate(),22)
select  convert(varchar, getdate(),23)
select  convert(varchar, getdate(),24)
select  convert(varchar, getdate(),25)

select  convert(varchar, getdate(),100)
select  convert(varchar, getdate(),101)
select  convert(varchar, getdate(),102)
select  convert(varchar, getdate(),103)
select  convert(varchar, getdate(),104)
select  convert(varchar, getdate(),105)
select  convert(varchar, getdate(),106)
select  convert(varchar, getdate(),107)
select  convert(varchar, getdate(),108)
select  convert(varchar, getdate(),109)
select  convert(varchar, getdate(),110)
select  convert(varchar, getdate(),111)
select  convert(varchar, getdate(),112)
select  convert(varchar, getdate(),113)
select  convert(varchar, getdate(),114)

select  convert(varchar, getdate(),120)
select  convert(varchar, getdate(),121)
select  convert(varchar, getdate(),130)
select  convert(varchar, getdate(),131)

2009/08/21 11:34 2009/08/21 11:34

Trackback URL : 이 글에는 트랙백을 보낼 수 없습니다


« Previous : 1 : 2 : 3 : 4 : 5 : ... 21 : Next »