0
데이터 윈도우에서 찾아보기 버튼을 클릭하면 텍스트 파일과 엑셀 파일 모두에서 데이터를로드하려고합니다. Excel, xls 파일이 아닌 텍스트 파일에서 데이터를로드 할 수 있습니다.파워브 라의 TXT 및 XLS 파일에서 데이터로드
은 여기 내 코드
long ll_return
IF dwo.Name = "b_browse_meters" THEN // Browse Button Clicked
ll_return = GetFileOpenName ("Select Meter File", is_fullname, is_filename, " XLS", &
" Excel Files (*.xls), *.xls")
if ll_return < 1 then
//MessageBox("Error", "Error selecting meter file...!!!", StopSign!)
gnv_msg.f_mensaje("EX28", "", "", OK!)
return
end if
dw_datos_ingreso.object.meters_batch_dir[1] = is_fullname
END IF // Browse Button Clicked
입력 필드에 XLS 파일을로드하는 기능입니다. PB7 사용 중 –