Showing posts with label Create graph using graph wizard in visual foxpro. Show all posts
Showing posts with label Create graph using graph wizard in visual foxpro. Show all posts

Saturday, 11 March 2023

Create graph using graph wizard in visual foxpro | Visual foxpro graph using wizard



CREATE CURSOR grafthis (QuarterType c(6), SalesAmt n(5,2))
INSERT INTO grafthis VALUES ("Q1", 100.45)
INSERT INTO grafthis VALUES ("Q2", 160.90)
INSERT INTO grafthis VALUES ("Q3", 120.09)
INSERT INTO grafthis VALUES ("Q4", 250.65)
DO HOME(1)+"Wizards\WZGraph.App"