Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
sunbelt-plb-samples/legacy_demo/chart.pls at main · KcsDev1982/sunbelt-plb-samples · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
KcsDev1982
/
sunbelt-plb-samples
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
5
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
sunbelt-plb-samples
/
legacy_demo
/
chart.pls
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
202 lines (187 loc) · 6.6 KB
main
Breadcrumbs
sunbelt-plb-samples
/
legacy_demo
/
chart.pls
Copy path
Top
File metadata and controls
Code
Blame
202 lines (187 loc) · 6.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
*...........................................................................
. Example Program: TCHART.PLS by BILL KEECH
.
. This program uses automation to build an Excel chart
.
. Copyright @ 1999, Sunbelt Computer Systems, Inc. All Rights Reserved.
.............................................................................
. Change the file name D:\AutTest\Test1 to an existing scratch excel
. file if you decide to open an existing spreadsheet below.
.
App AUTOMATION Class="Excel.Application"
Books AUTOMATION
Book AUTOMATION
Sheets AUTOMATION
Sheet AUTOMATION
Charts AUTOMATION
Chart AUTOMATION
Range AUTOMATION
.
OptVar VARIANT
VT_ERROR EQU 10
.
DISP_E_PARAMNOTFOUND INTEGER 4,"0x80020004"
.
AutoTrue INTEGER 4,"0xffffffff"
FILENAME DIM 50
TESTCHARTS EQU 0
.
. Lets make up a standard optional variant
.
CREATE OptVar,VarType=VT_ERROR:
VarValue=DISP_E_PARAMNOTFOUND
.
. First create excel and make it visible
.
CREATE App
SETPROP App,*Visible=AutoTrue
.
. Next lets get the workbooks collection
.
GETPROP App,*Workbooks=Books
.
. To open a book (This would be an existing speadsheet file)
.
. Books.Open Giving Book Using "D:\AutTest\Test1"
.
. To create a new book (spreadsheet)
.
Books.Add
Books.Item Giving Book Using 1
.
. Now find the first sheet from the sheets collection
.
GETPROP Book,*Sheets=Sheets
Sheets.Item Giving Sheet Using 1
.
. Lets clear out the sheet
.
Sheet.Range("A1","W40").Clear
.
. Now stuff some data into the sheet
.
SETPROP Sheet.Range("A3", "A3"),*Value="March"
SETPROP Sheet.Range( "B3", "B3"),*Value="12"
SETPROP Sheet.Range( "A4", "A4"),*Value="April"
SETPROP Sheet.Range( "B4", "B4"),*Value="8"
SETPROP Sheet.Range( "A5", "A5"),*Value="May"
SETPROP Sheet.Range( "B5", "B5"),*Value="2"
SETPROP Sheet.Range( "A6", "A6"),*Value="June"
SETPROP Sheet.Range( "B6", "B6"),*Value="11"
SETPROP Sheet.Range( "A7", "A7"),*Value="July"
SETPROP Sheet.Range( "B7", "B7"),*Value="16"
%IFNZ TESTCHARTS
.
. Get a chart object and add a chart, then get the actual chart object
.
Sheet.ChartObjects Giving Charts
Charts.Add Using *Left=100, *Top=10, *Width=350:
*Height=250
GETPROP Charts.Item(1),*Chart=Chart
.
. The chart wizard requires a range object to create the chart. We get this
. by using the special $IDispatch property. This will return the object
. reached after processing the object portion of the GetProp statement.
.
GETPROP Sheet.Range( "A3", "B7"),*$IDispatch=Range
.
. Now some chart wizard fun. Note that when just using positional arguments,
. optional arguments to be skipped must be replaced by a VARIANT of type
. VT_ERROR with a value of DISP_E_PARAMNOTFOUND
.
. Chart.ChartWizard Using Range, 11, OptVar, 1, 0, 1, 1:
. "Use by Month", "Month", "Useage in Thousands"
.
.
. We could have also coded this as:
.
Chart.ChartWizard Using *Source=Range:
*Gallery=11:
*PlotBy=1:
*CategoryLabels=0:
*SeriesLabels=1:
*HasLegend=1:
*Title="Use by Month":
*CategoryTitle="Month":
*ValueTitle="Useage in Thousands"
.
. Now let them see the chart before we start the next one.
.
PAUSE "5"
.
. Now cleanup by deleting the chart and cleaning up the data and
. releasing the objects
.
Charts.Delete
Range.Clear
DESTROY Range
DESTROY Chart
DESTROY Charts
%ELSE
PAUSE "5"
%ENDIF
.
. Now add the next set of data
.
Sheet.Range("A1","W40").Clear
SETPROP Sheet.Range( "B3", "B3"),*Value="Chocolate"
SETPROP Sheet.Range( "B4", "B4"),*Value="12"
SETPROP Sheet.Range( "C3", "C3"),*Value="Vanilla"
SETPROP Sheet.Range( "C4", "C4"),*Value="8"
SETPROP Sheet.Range( "D3", "D3"),*Value="Orange"
SETPROP Sheet.Range( "D4", "D4"),*Value="6"
%IFNZ TESTCHARTS
.
. Get a chart object and add a chart, then get the actual chart object
.
Sheet.ChartObjects Giving Charts
Charts.Add Using *Top=40, *Left=250, *Width=300:
*Height=200
GETPROP Charts.Item(1),*Chart=Chart
.
. Now get the data range object for Chart Wizard
.
GETPROP Sheet.Range( "B3", "D4"),*$IDispatch=Range
.
. Make the chart
.
Chart.ChartWizard Using *Source=Range, *Gallery=11, *PlotBy=2:
*CategoryLabels=0, *SeriesLabels=1:
*HasLegend=1, *Title="Use by Flavor":
*CategoryTitle="Flavor":
*ValueTitle="Useage in Barrells"
PAUSE "2"
.
. Now show the chart in print preview
.
Chart.PrintOut Using *From=1, *To=1, *Copies=1, *Preview=1:
*PrintToFile=0, *Collate=0
.
. Pause "2"
DESTROY Range
DESTROY Chart
DESTROY Charts
DESTROY Sheet
DESTROY Sheets
%ELSE
PAUSE "2"
%ENDIF
.
. Lets avoid the Save Changes? dialog
.
. SetProp Book,*Saved=AutoTrue
.
. To save the spreadsheet we've opened or created
.
App.GetSaveAsFileName Giving FILENAME
Book.SaveAs Using *FileName=FILENAME
.
. Cleanup continues
.
DESTROY Book
DESTROY Books
.
. Finally destroy excel
.
App.Quit
DESTROY App
You can’t perform that action at this time.