Is this a bug in Kixforms graphics?
I'm trying to plot single points, but there isn't a function to do this, .point($x,$y) only reads the colour of a pixel. So I tried using .line($x, $y, $x, $y) but nothing actually gets plotted.
 Code:
$system = CreateObject("kixtart.system")

If Not $System
  $nul= MessageBox("KiXtart.Net Not Initiated. This Script Will Now Close.","Error",16)
  Quit()
EndIf

$form = $system.form()
$form.top = 0
$form.left = 0
$form.width = 1024
$form.height = 768
$form.text = "TestLine.kix  WFB  " + @time + "  " +@date
$form.show

$form.drawwidth = 1

For $i = 0 to 100
   $form.line($i, $i, $i, $i)
next

While $form.visible
   $ = Execute($form.doevents())
Loop

Return
 

The above produces no visible line, unless you increase .drawwidth to 2 and then you get a line plotted of width 1. Weird!
Does the .line() object miss plotting the start or end pixel of a line?
Regards,
_________________________
Bill