VEL "experimental" question.

new topic     » topic index » view thread      » older message » newer message

I finally managed to get a day off, so I had a bit of time to play around
with the new version of VEL. If anyone else has, I'd be really grateful if
you might be able to help me with a little problem I'm having. I made a
quick little thing to test the file loading, to see the filter in action.
Unfourtunatly though, I've only had limited success, and I was hoping
someone might be able to say whether it's something I, or the experimental
nature of this VEL did. pleased Basically, with this little thing, when I start
up the procedure to load a file, I get an error message saying "controll
can't be found".  Then it returns to the window, and only when I exit the
program does the load box appear, and then after something is picked, it
says "invalid dialouge", followed by exw crashing. Here's the script if
anyone can figure out what's going wrong.... pleased  If anyone here can, than a
huge thanks in advance for the help!

without warning
include vel005.e

integer Form1,Button1,OpenDialog1,crudvar1
sequence s


Form1=CreateControl(FORM, 0)
s = {{CAPTION, "quick mod of demo9"},
    {FILENAME, "VEL.ico"},
    {TOP, 100},
    {COLOR, CWHITE},
    {LEFT, 100},
    {TOP, 100},
    {HEIGHT, 500},
    {WIDTH, 600}}
SetAttribute(Form1, s)


Button1 = CreateControl(BUTTON,Form1)
s = {{CAPTION, "Load Test"},
    {TOP, 350},
    {LEFT, 250},
    {HEIGHT,25},
    {WIDTH,75},
    {TABORDER, 2},
    {TABSTOP, TRUE},
    {DEFAULTBTN, TRUE},
    {HINT, "The on to the adding of chr's in the map creator"},
    {SHOWHINT, TRUE}}
SetAttribute(Button1,s)



procedure Button1OnClick(integer id, integer p, integer q)
OpenDialog1 = CreateControl(OPENDIALOG, Form1)
SetAttribute(OpenDialog1, {{FILTER, "Euphoria |*.e;*.ew;*.ex;*.exw"}})
OpenDialog1 = ShowDialog(OPENDIALOG, Form1)
crudvar1 = ShowDialog(OpenDialog1, Form1)

end procedure



SetEvent(Button1,    CLICK_EVENT,    routine_id("Button1OnClick"))




ShowForm(Form1, MODAL)

new topic     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu