TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Visual DCL Programming => Topic started by: BazzaCAD on July 25, 2006, 05:13:47 PM

Title: VBA-Lisp Hybrid crash
Post by: BazzaCAD on July 25, 2006, 05:13:47 PM
I'm tyring to use Slider1_Scroll() with the SetLispVar, EvalLispExpression code.
But it crashes Acad, (no debugging window) then I move the slider.
Is there any way to do this, so I can get the slider value in real time?
Yes the code works with Slider1_Change()


Private Sub Slider1_Scroll()
  Dim nValue As Integer
  nValue = Slider1.value
  SetLispVar "SliderValue", nValue
  EvalLispExpression ("(VBASliderMoved)")
End Sub
Title: Re: VBA-Lisp Hybrid crash
Post by: jbuzbee on July 26, 2006, 12:00:18 PM
Can you post "VBASliderMoved" code??