사이드바 영역으로 건너뛰기

게시물에서 찾기분류 전체보기

134개의 게시물을 찾았습니다.

  1. 2006/11/09
    펌)야구 통계
    단단이아빠
  2. 2006/10/01
    오랫만의 가족 나들이
    단단이아빠
  3. 2006/09/27
    단단이 생일
    단단이아빠
  4. 2006/08/22
    컴퓨터 케이스 필드테스트
    단단이아빠
  5. 2006/08/03
    아이는 부쩍 크고...
    단단이아빠
  6. 2006/07/28
    DNS Authoritative answer & Non-authoritative answer
    단단이아빠
  7. 2006/07/24
    /var/qmail/bin/qmail-smtpd: error while loading shared libraries: libc.so.6: failed to map segment from shared object: Cannot allocate memory
    단단이아빠
  8. 2006/07/24
    메일서버 테스트
    단단이아빠
  9. 2006/07/23
    tcpserver: fatal: unable to bind: address already used
    단단이아빠
  10. 2006/07/23
    qmail-quota
    단단이아빠

[펌]스트링 그리드에 포커스 넣기...

출처 : http://numz.net/numz/club/club.php?clid=delworld&cate=1164480739078

With StringGrid1 do begin
RowCount:=RowCount+1;//Row추가
Row:=RowCount-1 //Row Focus
end;
이렇게 하면 될것 같은데요..더 좋은 방법 있으면 알려주세요.
그럼.

> 안녕하세요...
>
>현재 제 스트링 그리드는 한줄씩 아래로 추가됩니다.
>한줄씩 추가될 때마다 지금 생기는 자료는 스크롤 바 아래로 추가되어
>보이지 않습니다.
>
>자료가 한 줄 추가될 때 추가될 자료의 줄에 포커스가 가서,
>그 자료가 있는 줄을 볼 수 있게 하려면 어떻게 해야 할까요...
>
>고수님들의 조언 부탁합니다.
>
>그럼 즐코들 하세요......

진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

TMS TAdvStringGrid

TAdvStringGrid : Frequently asked questions

Q1: When I try to install the package, it asks for AdvGrid.pas
package 를 인스톨할 때 AdvGrid.pas를 물어봅니다.

A1: Make sure the correct version of ADVGRID.DCU and other DCU files are in your library path, that your library path contains the directory where ADVGRID.DCU is installed and that no other versions of ADVGRID.DCU are in your library path. Note that the binary version of TAdvStringGrid cannot be used with Delphi or C++Builder trial versions.

당신이  library path 에 정확한 버전의 ADVGRID.DCU 와 다른 DCU 파일들이 있는지 확인해봅니다.


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

Q2: When I run my application I get an error "property does not exist"

A2: An older version of ADVGRID.DCU might be in your library path. When upgrading from an older version, make sure to first open all forms in your application that use the grid, ignore property errors on opening, save form files and then rebuild your application.


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

Q3: When try to install TAdvStringGrid, I get an error that TAdvStringGrid is compiled with a different version of PictureContainer

A3: Most likely another TMS component has been installed that is also using the PictureContainer. Due to strict binary compatibility checks of Delphi & C++Builder, it is causing problems to install multiple binary distributed components that share a unit. For using the binary versions, the only workaround is to install the packages alternatingly for evaluation. Registered versions that come with full source do not have this problem.


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

Q4: I use OnGetEditorType to specify a checkbox but it only displays when editing

A4: Use a permanently visible checkbox that can be added with the AddCheckBox method


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

Q5: I use row selection, but the first column has a different color

A5: Set goDrawFocusSelected = true in the Options property


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

Q6: Why do rotated fonts do not print correct ?

A6: Toggle the value of the public property PrinterDriverFix: Boolean


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

Q7: I want to use rotated font but the font does not show rotated

A7: Make sure to use a truetype font. Only truetype font can be rotated.


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

Q8: Why do my printouts do not have colors or fonts set as displayed ?

A8: Assign the OnGetCellColor event to the OnGetCellPrintColor event as well.


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

Q9: Copy and paste does not seem to work ?

A9: Make sure that Navigation.AllowClipboardShortCuts is true and the grid is either editable or Navigation.AllowClipboardAlways is true


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

Q10: I want to select multiple rows with Ctrl - mouseclick and Shift - mouse click

A10: In the Options property set goRowSelect = true and set MouseActions.DisjunctRowSelect = true. The desired selection capabilities are enabled now.


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

Q11: How can the copyright notice be removed from the grid ?

A11: The registered version of TAdvStringGrid does not show this copyright notice


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

Q12: I am not sure if the latest version of TAdvStringGrid is installed. How can I check this ?

A12: At design time, right click on the grid and select About. At runtime, show the version with : ShowMessage(Grid.GetVersionString);


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

Q13: When I try to install the trial version of TAdvStringGrid in the Delphi 6 or Delphi 7 trial version, it asks for ADVGRID.PAS ?

A13: The Delphi 6 or Delphi 7 trial edition does not allow to install binary component distributions. The registered source version of TAdvStringGrid will work with the Delphi 6 or Delphi 7 trial edition


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

Q14: With the registered version of TAdvStringGrid, do we need to pay additional royalties for application distribution ?

A14: With license for commercial use of the registered version, no additional royalties need to be paid


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

Q15: How can I set text in a cell ?  How do I programmatically change a column width or row height ?

A15: Setting text in a cell is done with the grid.Cells[col,row]: string propert. Setting the column width is done with grid.ColWidths[col]: Integer and setting a row height with grid.RowHeights[row]: Integer.  Note that TAdvStringGrid inherits ALL methods and properties of TStringGrid. As such, refer to the Borland documentation for TStringGrid for help on the basic grid functions


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

Q16: How can I get the state of a checkbox added with grid.AddCheckBox ?

A16:

var
 state: Boolean;

grid.GetCheckBoxState(col,row,state);
if state then ShowMessage('CheckBox is checked') else ShowMessage('CheckBox is not checked');


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

Q17: I get an exception 'invalid column' during export to Excel

A17: The maximum number of columns supported in Excel itself is 255. As such, it is not possible to export more columns than the Excel limit.


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

Q18: I have added a button on the grid with AddButton but the OnButtonClick event is not triggered ?

A18: If you add a button to a non editable cell (or grid without editing enabled) the button is treated as disabled by default. To override this behaviour, set grid.ControlLook.NoDisabledButtonLook = true


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

Q19: I try to set VAlignment to vtaCenter or vtaBottom but this is not working

A19: By default, wordwrap is enabled in the grid and it is a limitation of the Microsoft text drawing API's that wordwrapped text is always top aligned. To use the VAlignment capability, set WordWrap = false


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

Q20: Can I load a gallery file programmatically at runtime ?

A20: Yes, call grid.LoadVisualProps(GalleryFileName);


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

Q21: I am having problems with grid.SortByColumn, it is slow or behaves incorrect

A21: SortByColumn is a deprecated method, use grid.QSort instead with settings as defined under grid.SortSettings


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

Q22: Users of older operating systems have an error message on application startup related to a missing gdiplus.dll

A22: Either redistribute the Microsoft GDIPLUS.DLL (explained in README.TXT) or remove the gdiplus.dll dependency by commenting the line {$DEFINE TMSGDIPLUS} in TMSDEFS.INC


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

Q23: When exporting to Excel file with the method grid.SaveToXLS()  I get the error : "Excel OLE server not found"

A23: The method grid.SaveToXLS() uses OLE automation to export to Excel file and thus requires Excel to be installed on the machine. To avoid this requirement, you can use the component TAdvGridExcelIO to export to Excel.

진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

단단이와 용이

처음에는 동생을 사랑하고 업어주고 안아주라고 시키면 싫다고 빼더니 요즘은 그래도 정이 가나 보다. 밤에 잘 때는 책읽어 준다면서 아이 앞에 책을 펼쳐놓고 열심히 이야기해주고.. 용이도 누나가 좋은지 책읽어 줄 때면 눈 마주치며 웃어주고...

 

 

 

진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

오늘 읽은 멋진 말

http://www.drwk.net/pimangboard/read.php?code=serial&uid=80930&page=3&search_type=&search_value=&sidx=26336

 

베풀기만 하는 자는 왕이 될 수 없다. 돼서는 안 된다. 남을 위해 목숨을 버릴 줄 아는 자가 왕이 될 수 있을 리 없다. 그들은 전사라 불리지, 왕이라 불리지는 않는다. 왕은 왕을 위해 바쳐진 목숨을 먹고 자라는 짐승이었다. 왕은 왕 아닌 자들의 피와 고름을 짜내어 젖처럼 마시고, 살코기를 뜯어 먹어 배를 채우고, 뼈다귀로 이를 쑤실 줄 알아야 했다. 왕은 최후까지 살아남는 자여야 했다. 스스로가 머리이자 심장임을 자각하여 스스로를 가장 부강하게 만들고, 그 강대함으로 착취당한 다른 기관을 조종하고 보호할 줄 알아야했다. -이런 횡포를 부리면서도 왕 아닌 자들로 하여금 지극히 옳고 당연하며 자랑스러운 일이라 여기게끔 할 줄 알아야 했다

진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

ms-sql 에서 unix time 형식으로 된 날짜 컬럼 다루기

이전에 mysql에서 작업하던 버릇인지 계속해서 날짜를 unixtime으로 다룬다.

 

유닉스 타임으로 된 날짜 컬럼은

convert(varchar(10), DATEADD(hh, 9, DATEADD(ss, 유닉스타임으로 된 날짜컬럼, '1970-1-1')), 120)

 

와 같이 사용하면 '2007-01-01' 의 형태로 반환되어 사용할 수 있다. group by 나 where 절에

 

요즘은 이렇게 적어놓지 않음 잊어먹는다.. 나이가 들어가는겐가...

 

 

진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

코드웨이 강의 리스트

내가 공부하러 다니는 사이트의 강의리스트...

뭔 놈의 직업이 맨날 공부해야 되냐고...

 

강의리스트

( 마지막 갱신일 2007.2.19 )

Delphi

입문강좌

■ 델파이둘러보기 http://www.codeway.co.kr/lecture/Delphi/1.%20입문강좌/1.%20델파이%20둘러보기/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/1.%20입문강좌/1.%20델파이%20둘러보기/Part-02/Part-02.html ■ 콤포넌트 둘러보기 http://www.codeway.co.kr/lecture/Delphi/1.%20입문강좌/2.%20콤포넌트-둘러보기/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/1.%20입문강좌/2.%20콤포넌트-둘러보기/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/1.%20입문강좌/2.%20콤포넌트-둘러보기/Part-03/Part-03.html ■ Essential Pascal (입문자용 파스칼 문법) http://www.delphischool.co.kr/Lecture/DS00101/Ch02/Ch02.html http://www.delphischool.co.kr/Lecture/DS00101/Ch03/Ch03.html http://www.delphischool.co.kr/Lecture/DS00101/Ch04/Ch04.html http://www.delphischool.co.kr/Lecture/DS00101/Ch05/Ch05.html http://www.delphischool.co.kr/Lecture/DS00101/Ch06/Ch06.html ■ 빨간팬 프로그램 만들기 http://www.codeway.co.kr/lecture/Delphi/1.%20입문강좌/3.%20빨간펜/Part-01/Part-01.html ■ 그림판 만들기 http://www.codeway.co.kr/lecture/Delphi/1.%20입문강좌/4.%20그림판-만들기/Part-01/Part-01.html FindComponent와 Sender의 활용 http://www.codeway.co.kr/board/bbs/board.php?bo_table=Delphi_Lecture&wr_id=69 ■ Array에 대한 몇 가지 팁 ( Array를 파라미터로 전달 / Array 검색간 안전한 접근 ) http://www.codeway.co.kr/board/bbs/board.php?bo_table=Delphi_Lecture&wr_id=73 ■ BDS에서 사용자 컴포넌트 등록하기 http://www.codeway.co.kr/board/bbs/board.php?bo_table=Delphi_Lecture&wr_id=92 ■ Caculated Field 사용법 http://www.codeway.co.kr/board/bbs/board.php?bo_table=Delphi_Lecture&wr_id=104 ■ [팁]필드 표시 포멧 정하기 http://www.codeway.co.kr/board/bbs/board.php?bo_table=Delphi_Lecture&wr_id=145

중급강좌

■ 한글폰트 사용 http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/1.%20한글폰트-사용/Part-01/Part-01.html ■ Window Message 사용 http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/2.%20Window-Message-사용/Part-01/Part-01.html ■ 이미지뷰어 만들기 http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/3.%20이미지뷰어-만들기/P2/ClassStory-02.html ■ 콤포넌트 만들기 http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/4.%20콤포넌트-만들기/Part-01/Part-01.html ■ Active-X http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/5.%20Active-X/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/5.%20Active-X/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/5.%20Active-X/Part-03/Part-03.html ■ Frame http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/6.%20Frame/Part-01/Part-01.html ■ DLL의 활용 http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/7.%20DLL의-활용/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/7.%20DLL의-활용/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/2.%20중급강좌/7.%20DLL의-활용/Part-03/Part-03.html ■ Thread (쓰레드) 강좌 Part-01 http://www.codeway.co.kr/board/bbs/board.php?bo_table=Delphi_Lecture&wr_id=14

데이터베이스

■ 데이터베이스 설계의 기본 원리 http://www.codeway.co.kr/board/bbs/board.php?bo_table=DB_Lecture&wr_id=27 ■ DB 프로그래밍의 기초 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/1.%20DB-프로그래밍의-기초/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/1.%20DB-프로그래밍의-기초/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/1.%20DB-프로그래밍의-기초/Part-03/Part-03.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/1.%20DB-프로그래밍의-기초/Part-04/Part-04.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/1.%20DB-프로그래밍의-기초/Part-05/Part-05.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/1.%20DB-프로그래밍의-기초/Part-06/Part-06.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/1.%20DB-프로그래밍의-기초/Part-07/Part-07.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/1.%20DB-프로그래밍의-기초/Part-08/Part-08.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/1.%20DB-프로그래밍의-기초/Part-09/Part-09.html ■ DB 초급용 프로젝트 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-03/Part-03.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-04/Part-04.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-05/Part-05.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-06/Part-06.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-07/Part-07.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-08/Part-08.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-09/Part-09.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-10/Part-10.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/2.%20DB-초급용-프로젝트/Part-11/Part-11.html ■ DB 실무 프로젝트 1일 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/3.%20DB-실무-프로젝트-1일/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/3.%20DB-실무-프로젝트-1일/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/3.%20DB-실무-프로젝트-1일/Part-03/Part-03.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/3.%20DB-실무-프로젝트-1일/Part-04/Part-04.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/3.%20DB-실무-프로젝트-1일/Part-05/Part-05.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/3.%20DB-실무-프로젝트-1일/Part-06/Part-06.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/3.%20DB-실무-프로젝트-1일/Part-07/Part-07.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/3.%20DB-실무-프로젝트-1일/Part-08/Part-08.html ■ DB 실무 프로젝트 2일 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/4.%20DB-실무-프로젝트-2일/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/4.%20DB-실무-프로젝트-2일/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/4.%20DB-실무-프로젝트-2일/Part-03/Part-03.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/4.%20DB-실무-프로젝트-2일/Part-04/Part-04.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/4.%20DB-실무-프로젝트-2일/Part-05/Part-05.html ■ DB 실무 프로젝트 3일 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/5.%20DB-실무-프로젝트-3일/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/5.%20DB-실무-프로젝트-3일/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/5.%20DB-실무-프로젝트-3일/Part-03/Part-03.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/5.%20DB-실무-프로젝트-3일/Part-04/Part-04.html ■ DB 실무 프로젝트 4일 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/6.%20DB-실무-프로젝트-4일/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/6.%20DB-실무-프로젝트-4일/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/6.%20DB-실무-프로젝트-4일/Part-03/Part-03.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/6.%20DB-실무-프로젝트-4일/Part-04/Part-04.html ■ DB 실무 프로젝트 5일 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/7.%20DB-실무-프로젝트-5일/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/7.%20DB-실무-프로젝트-5일/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/7.%20DB-실무-프로젝트-5일/Part-03/Part-03.html ■ DB 실무 프로젝트 보충 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/8.%20DB-실무-프로젝트-보충/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/8.%20DB-실무-프로젝트-보충/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/8.%20DB-실무-프로젝트-보충/Part-03/Part-03.html ■ Command Library 사용법 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/9.%20Command-Library-사용법/Part-01/Part-01.html ■ DataSnap http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/10.%20DataSnap/Part1/Part1.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/10.%20DataSnap/Part2/Part2.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/10.%20DataSnap/Part3/Part3.html http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/10.%20DataSnap/Part-04/Part-04.html ■ 델파이로 Interbase UPF 만들기 http://www.codeway.co.kr/lecture/Delphi/3.%20데이터베이스/11.%20Interbase-UDF/Part-01/Part-01.html

인터넷 프로그래밍

■ 웹 프로그래밍 http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/1.%20웹-프로그래밍/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/1.%20웹-프로그래밍/Part-02/Part-02.html ■ 메신저 만들기 http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/2.%20메신저-만들기/Chat-1/Chat-1.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/2.%20메신저-만들기/Chat-2/Chat-2.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/2.%20메신저-만들기/Chat-3/Chat-3.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/2.%20메신저-만들기/Part1/Part1.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/2.%20메신저-만들기/Part2/Part2.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/2.%20메신저-만들기/Part3/Part3.html ■ 네트워크 게임 프로젝트 1일 http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/3,%20네트워크-게임-프로젝트-1/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/3,%20네트워크-게임-프로젝트-1/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/3,%20네트워크-게임-프로젝트-1/Part-03/Part-03.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/3,%20네트워크-게임-프로젝트-1/Part-04/Part-04.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/3,%20네트워크-게임-프로젝트-1/Part-05/Part-05.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/3,%20네트워크-게임-프로젝트-1/Part-06/Part-06.html http://www.codeway.co.kr/lecture/Delphi/4.%20인터넷%20프로그래밍/3,%20네트워크-게임-프로젝트-1/Part-07/Part-07.html

게임

■ 퍼즐게임 만들기 http://www.codeway.co.kr/lecture/Delphi/5.%20게임/1.%20퍼즐게임-만들기/Part-01/Part-01.html ■ Jawbreaker 만들기 http://www.codeway.co.kr/lecture/Delphi/5.%20게임/2.%20Jawbreaker/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/5.%20게임/2.%20Jawbreaker/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/5.%20게임/2.%20Jawbreaker/Part-03/Part-03.html http://www.codeway.co.kr/lecture/Delphi/5.%20게임/2.%20Jawbreaker/Part-04/Part-04.html

OOP

■ Abstract Factory 패턴 http://www.codeway.co.kr/lecture/Delphi/6.%20OOP/1.%20Abstract-Factory/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/6.%20OOP/1.%20Abstract-Factory/Part-02/Part-02.html ■ Command 패턴 http://www.codeway.co.kr/lecture/Delphi/6.%20OOP/2.%20Command-Pattern/Part-01/Part-01.html http://www.codeway.co.kr/lecture/Delphi/6.%20OOP/2.%20Command-Pattern/Part-02/Part-02.html http://www.codeway.co.kr/lecture/Delphi/6.%20OOP/2.%20Command-Pattern/Part-03/Part-03.html

C++BUILDER

■ 시작하기 http://www.codeway.co.kr/lecture/C-Builder/1.%20시작하기/Part-01/Part-01.html http://www.codeway.co.kr/lecture/C-Builder/1.%20시작하기/Part-02/Part-02.html http://www.codeway.co.kr/lecture/C-Builder/1.%20시작하기/Part-03/Part-03.html http://www.codeway.co.kr/lecture/C-Builder/1.%20시작하기/Part-04/Part-04.html http://www.codeway.co.kr/lecture/C-Builder/1.%20시작하기/Part-05/Part-05.html http://www.codeway.co.kr/lecture/C-Builder/1.%20시작하기/Part-06/Part-06.html http://www.codeway.co.kr/lecture/C-Builder/1.%20시작하기/Part-07/Part-07.html ■ DB 프로그래밍의 기초 http://www.codeway.co.kr/lecture/C-Builder/2.%20DB-프로그래밍의-기초/Part-01/Part-01.html http://www.codeway.co.kr/lecture/C-Builder/2.%20DB-프로그래밍의-기초/Part-02/Part-02.html http://www.codeway.co.kr/lecture/C-Builder/2.%20DB-프로그래밍의-기초/Part-03/Part-03.html http://www.codeway.co.kr/lecture/C-Builder/2.%20DB-프로그래밍의-기초/Part-04/Part-04.html http://www.codeway.co.kr/lecture/C-Builder/2.%20DB-프로그래밍의-기초/Part-05/Part-05.html ■ 콤포넌트 제작 http://www.codeway.co.kr/lecture/C-Builder/3.%20콤포넌트-제작/Part-01/Part-01.html ■ 채팅 http://www.codeway.co.kr/lecture/C-Builder/4.%20채팅/Part-01/Part-01.html http://www.codeway.co.kr/lecture/C-Builder/4.%20채팅/Part-02/Part-02.html

CSharp

■ 테트리스 만들기 http://www.codeway.co.kr/lecture/C-Shap/CS-테스리스%20만들기/Part-01/Part-01.html http://www.codeway.co.kr/lecture/C-Shap/CS-테스리스%20만들기/Part-02/Part-02.html http://www.codeway.co.kr/lecture/C-Shap/CS-테스리스%20만들기/Part-03/Part-03.html

PHP

■ 게시판 만들기 http://www.codeway.co.kr/board/bbs/board.php?bo_table=PHP_Lecture&wr_id=1

Ruby

■ 루비의 기본적인 문법 살펴보기 http://www.codeway.co.kr/board/bbs/board.php?bo_table=Ruby_Lecture&wr_id=2 ■ 프로그래밍 연습 1. 대소문자 변환 http://www.codeway.co.kr/lecture/Ruby/Lesson-02/Part-01.zip 2. 숫자를 문자로 변환하면서 천단위 마다 콤마 찍기 http://www.codeway.co.kr/lecture/Ruby/Lesson-02/Part-02.zip 3. 문자를 숫자로 변환 하기 http://www.codeway.co.kr/lecture/Ruby/Lesson-02/Part-03.zip 4. 문자열 내부에서 특정 문자열 위치 찾기 http://www.codeway.co.kr/lecture/Ruby/Lesson-02/Part-04.zip 5. 문자열 치환 하기 http://www.codeway.co.kr/lecture/Ruby/Lesson-02/Part-05.zip
진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

누나의 위치...흐흐

2월5일 10시에 용이가 태어났습니다.

 

남들은 둘째애는 쉽게 낳는다고 하는데 우리는 그렇지만은 않고 오전 4시에 병원에 달려가 6시간동안 진통하고 마님께서는 이번에도 까무러치기까지 하시고.. 단단이 낳은 때처럼 제왕절개 수술하자고 애원하진 않았지만 힘들었습니다.

 

오후에 병원에 찾아온 단단이는 아무래도 이상하고 어색한가 봅니다.  흐흐.. 앞으로 더 힘들어지겠지요. 그동안 독차지하던 엄마와 아빠의 사랑을 동생하고 나눠가져야 하니까요....

 

집에 그만 가라고 했더니 대성통곡을 하면서 엄마하고 있겠다고 하네요...

 

동생 예쁘냐고 하니 예쁘다고 대답은 하는데.. 아이낳기 전에 동생태어나면 업어주겠다는 약속이 생각나서 이야기했더니 동생업으면 허리가 아프니가 못업어준다고 하네요.. 안아는 보고 싶은지 안고 싶다고 하고.. 흐흐...

 

 



 

 

 


진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

양치기 소년이 된다.

마님께서 수요일날 오후에 다급하게 전화를 해서는 집에 빨리 오라고 진통이 시작된거 같다고 하네요.. 사장님과 사람들에게 출산할 거 같아서 지금 집에 들어가고 월욜쯤에 출근할 수 있을거라고 말해놓고는 죽어라고 집으로 갔습니다.
마님하고 진통시간 재어보면서 10분 간격으로 올 때 병원에 갈것인지, 5분 간격으로 진통이 올 때 병원에 갈것인지 의논하면서 밤을 새우고는 "이제 아침에 병원에 가면 되겠다. 밤에 가면 아무래도 불안한데.." 하면서 있었습니다.
 
근데.....
어랍쇼.. 진통이 멈췄다네요... 그래서 좀 기다려보자 하고 있는데 점심이 되니까 진통은 완전히 멈추고 오히려 몸이 더 편안해 진다고 하네요.. 흠.. 회사에 다시 전화해서는 금요일에 출근한다고 하고서 마님하고 둘이서 이러다가 우리 양치기 소년되는거 아닌가 하고 웃었습니다.
 
단단이 낳을 때는 진통시작하고서 있다가 병원가서 애 낳았는데 이번에는 가진통도 하나 보네요.. 그덕에 하루 잘 쉬고  해야 할 일은 많은데 회사 하루 비우고.. 흐흐...
 
어쨋거나 둘째 건강하게 낳았으면 좋겠습니다. 오늘도 또 마님이 전화오면 달려가야죠... 양치기 소년이 되는 한이 있어도.
진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

새로운 노트북 세팅

회사에서 노트북을 지급받았다.(반쯤은 꼭 줘야 한다는 강요를 했으니 지급이 아니라 강탈 이라고 해야하나....)

 

토요일과 일요일인 오늘 작업해야 하는게 산더미처럼 쌍여 있는데(작업의 결과에 따라 회사내에서 나의 위치도 결정되고.. 그래봐야 뭐....) 토요일 하루종일 노트북 세팅을 하면서 보냈다. 게다가 이 새벽에는 불현듯 2003으로 깔아보자는 생각이 들어 다시 밀고 있다.. 미친거아냐..

 

 

갈수록 머리는 굳어가고 일은 점점 재미없어진다.  아고....

진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

2006년 네트워크를 통째로 받다.

퇴근하고 집에 갔더니 마님이 큼직한 소포를 내민다. 2006년 4월부터 12월까지의 네트워크.

이사하고 주소를 회원정보에서만 변경시키면 되는 줄 알고 있었는데 직접 전화해서 해결해야 하나보다.

우연히 들어가본 네트워크에서 매월 발행되는 정보를 보고는 전화를 해봤더니 이사하기전 주소로 되어 있단다.. 흠.. 인터넷을 기반으로 한 건데. 이런 점은 좀 고쳐져야 할거 같다.

어쨌거나 네트워크를 볼 때마다 지금 내가 밥벌어먹고 사는 일하고 괴리되는 느낌을 받는다. (이런게 소왼가..흐흐ㅡ)

요즘 사장님이 틈날때마다 UCC를 외쳐대는 통에(결론적으로 이용자를 이용해 정보를 얻어서 그걸 통해서 돈을 벌자는 거) 어떻게 구현하는가로 머리가 터질 거 같은데 문제점과 대안을 생각하자는 글은 그동안의 생각없음을 꾸짖는 거 같기도 하고.... 저작권을 잘 이용해서 돈벌어야 하는 입장에서 저작권에 대한 태도를 올바르게 갖는게 뭔가 하는 생각도 들고....

 

덕분에 요즘 일에 치여서 (혹은 어떻게 안짤리고 월급 많이 받아야 하는) 찌든 생활속에서 나름 생각! 이라는 것을 해본가 같다.

진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크