Hi All
       I have on the main form a Wizard1 control and in the first
step of that Wizard1 control I have a Filechooser1 control.
Here is the code

' Gambas class file
PUBLIC Spath AS String
PUBLIC SUB _new()

END

PUBLIC SUB Form_Open()

END
PUBLIC SUB Wizard1_Cancel()
  
  ME.Close
  
END
PUBLIC SUB Wizard1_Change()
  SELECT CASE Wizard1.Index
         CASE 1
           Spath = FileChooser1.SelectedPath
           DEBUG Spath
  END SELECT 
END
Here is what I do when I run the program.
1) choose a file using the Filechooser1 control.
2) click on the next button on the Wizard1 control.

When I do the above the console window shows the following.
VbtogambasFrm.Wizard1_Change.19: 

The variable Spath contains a Null.
What am I doing wrong?




------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to