[파워빌더] 변경내용 로그 저장
GetNextModified 와 GetItemStatus 를 사용하여 변경된 정보를 찾을 수 있다. Long lRcnt, lRow, lCcnt, lCol String ls_colname, ls_tag, ls_data, ls_value String ls_colname_n, ls_tag_n, ls_data_n, ls_value_n String change_log, now_date, ls_update_log now_date = String(Now(), "yyyy-mm-dd:hh:mm:ss") dw_sheet.AcceptText() lRcnt = dw_sheet.RowCount() lCcnt = Long(dw_sheet.Describe("DataWindow.Column.Count")) DO WHILE lRow
2021. 6. 4.
파워빌더 API함수 Arc( ) , Beep( ) , BringWindowToTop( )
Arc( ) 주어진 좌표를 이용하여 아크를 그린다. Global External Function: FUNCTION boolean Arc(ulong hwnd, long r1, long r2, long r3, long r4, long a1, long a2, long a3, long a4) LIBRARY "Gdi32.dll" Script: Boolean rtn ulong l_handle, l_device long lv[8] l_handle = handle(w_main) // 'w_main' is the name of the sample window. l_device = GetDC(l_handle) lv[ ] = {10,40,300,220,0,0,180,0} rtn = Arc(l_device, lv[1], lv..
2020. 9. 14.