| View previous topic :: View next topic |
| Author |
Message |
Thomas233 Newbie
Joined: 12 Mar 2002 Posts: 11 Location: Villach ; Austria
|
Posted: Fri Mar 22, 2002 7:15 pm Post subject: @event Loop?? |
|
|
Hi !
I really have a big problem with the "@event loop(Evloop)" and don`t know what to do. Every time i run a script from VDS(produced with Application Wizard) it doesn`t react any more or the following errormessage happens - "Label not found".
The Problem is always at the "Evloop Process".I had this problem under Windows98 and now i have it under Windows2000 . I really don`t know what to do!Can anyone help me, please??  _________________ Greetings Thomas
---------------------
@ http://www.bve-tools.at.tf
BVE Tools programmed with VDS |
|
| Back to top |
|
 |
PGWARE Web Host

Joined: 29 Dec 2001 Posts: 1565
|
Posted: Fri Mar 22, 2002 7:25 pm Post subject: |
|
|
Most likely your missing a few labels. If you added the RESIZABLE style to the dialog you need to add in a :RESIZE label. Also dont forget to add in a :CLOSE label to handle the exit of your script. Try running the code below and see if you still get the errors:
| Code: |
title New Dialog
DIALOG CREATE,New Dialog,-1,0,240,160,RESIZABLE
DIALOG SHOW
:resize
rem add code if your dialog resizes
:evloop
wait event
goto @event()
:close
exit
|
|
|
| Back to top |
|
 |
moke Contributor

Joined: 02 Jan 2002 Posts: 162
|
Posted: Fri Mar 22, 2002 8:20 pm Post subject: |
|
|
Other styles that might cause a problem are CLICK and EXIT if you've added them to your dialog you'll need to create a lable and code for the event. An easy way to check for the missing lable is to have your event loop display the curent event request. Just use this code in your evloop and you should find the missing lable quickly.
| Code: |
wait event
%E = @event()
info %E
goto %E
|
Good Luck!
moke  |
|
| Back to top |
|
 |
Thomas233 Newbie
Joined: 12 Mar 2002 Posts: 11 Location: Villach ; Austria
|
Posted: Fri Mar 22, 2002 9:09 pm Post subject: |
|
|
Thanks very much.It really works!
I really like Visual Dialogic Script and i really like VDS-World and this great Board.Now i can beginn with my programm... _________________ Greetings Thomas
---------------------
@ http://www.bve-tools.at.tf
BVE Tools programmed with VDS |
|
| Back to top |
|
 |
Thomas233 Newbie
Joined: 12 Mar 2002 Posts: 11 Location: Villach ; Austria
|
Posted: Sat Mar 23, 2002 12:03 pm Post subject: |
|
|
Another Problem:
How can open my Website from VDS?
I used | Code: | | SHELL open,http://www.bve-tools.at.tf | but it didn`t work (Internet Explorer opened the URL "http://http://www.bve-tools.at.tf,,-1,0")
Then i tried but it was the same problem.
Does anyone now what can i do? _________________ Greetings Thomas
---------------------
@ http://www.bve-tools.at.tf
BVE Tools programmed with VDS |
|
| Back to top |
|
 |
nick Contributor

Joined: 15 Aug 2000 Posts: 50 Location: hamburg,nj
|
Posted: Sat Mar 23, 2002 2:03 pm Post subject: |
|
|
Hello:
I copied and pasted your shell open statement into vds here and it had no problem opening your web site. Maybe you have some configuration problem with your browser. My browser happens to be IE 5.00. _________________ nick |
|
| Back to top |
|
 |
Protected Valued Contributor


Joined: 02 Jan 2001 Posts: 228 Location: Portugal
|
Posted: Wed Mar 27, 2002 9:43 pm Post subject: |
|
|
| try to run IE with the url as a parameter, I dont know the format but look in the registry |
|
| Back to top |
|
 |
|