Gui, Add, ListView, x22 y19 w230 h250 , 이름 |가격 |갯수
Gui, Add, Edit, x22 y289 w150 h20 vName, 이름
Gui, Add, Edit, x22 y319 w150 h20 vPrice, 가격
Gui, Add, Edit, x22 y349 w150 h20 vNum, 개수
Gui, Add, Button, x182 y289 w70 h30 gAdd, 추가
Gui, Add, Button, x182 y329 w70 h30 gRmv, 제거
Gui, Add, Button, x312 y19 w90 h30 gSend, 출력
Gui, Add, Button, x312 y69 w90 h30 gSSend, 연속 출력
; Generated using SmartGUI Creator 4.0
Gui, Show, x127 y87 h390 w479, New GUI Window
Return
Add:
gui, submit, nohide
LV_Add("",Name,Price,Num)
return
Rmv:
return
Send:
return
SSend:
msgbox,
return
GuiClose:
ExitApp
간단한 연속 출력을 만들어보고싶은데 ..
listview의 변수 부분을 불러와 메세지 박스를 띄워보고싶습니다..
SSend 부분을 어떻게 써야 listview내용의 연속출력이 가능할까요??
#SingleInstance Force
Gui, Add, ListView, x22 y19 w230 h250 , 이름 |가격 |갯수
Gui, Add, Edit, x22 y289 w150 h20 vName, 이름
Gui, Add, Edit, x22 y319 w150 h20 vPrice, 가격
Gui, Add, Edit, x22 y349 w150 h20 vNum, 개수
Gui, Add, Button, x182 y289 w70 h30 gAdd, 추가
Gui, Add, Button, x182 y329 w70 h30 gRmv, 제거
Gui, Add, Button, x312 y19 w90 h30 gSend, 출력
Gui, Add, Button, x312 y69 w90 h30 gSSend, 연속 출력
; Generated using SmartGUI Creator 4.0
Gui, Show, x127 y87 h390 w479, New GUI Window
Return
GuiClose:
ExitApp
Add:
gui, submit, nohide
LV_Add("",Name,Price,Num)
return
Rmv:
return
Send:
return
SSend:
list =
loop % LV_GetCount()
{
LV_GetText(이름, A_index, 1)
LV_GetText(가격, A_index, 2)
LV_GetText(개수, A_index, 3)
list .= A_index " : " 이름 "`t" 가격 "`t" 개수 "`n"
}
MsgBox % list
return