Wow tried putting this program in the HP Guide:
|
05-19-2019, 02:21 PM
Post: #2
|
|||
|
|||
RE: Wow tried putting this program in the HP Guide:
Line 2 is missing semicolons before the LOCAL keywords;
Code: local x1:=160, x2:=299, x3:=21; local y1:=0, y2:=240, y3:=240; local xn:=160, yn:=0; or more aesthetically pleasing Code: local x1:=160, x2:=299, x3:=21; Or just put all 8 variables in one LOCAL declaration. Code: local x1:=160, x2:=299, x3:=21, y1:=0, y2:=240, y3:=240, xn:=160, yn:=0; Eight is the max though. If you have more than eight, you have to split them into separate LOCAL statements. I couldn't find this program in the User Guide. What page is it on? |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Wow tried putting this program in the HP Guide: - tom234 - 05-19-2019, 01:51 PM
RE: Wow tried putting this program in the HP Guide: - Wes Loewer - 05-19-2019 02:21 PM
RE: Wow tried putting this program in the HP Guide: - DrD - 05-19-2019, 02:42 PM
RE: Wow tried putting this program in the HP Guide: - DrD - 05-19-2019, 02:57 PM
RE: Wow tried putting this program in the HP Guide: - tom234 - 05-19-2019, 04:44 PM
RE: Wow tried putting this program in the HP Guide: - cyrille de brébisson - 05-20-2019, 04:43 AM
|
User(s) browsing this thread: 2 Guest(s)