aldweb

Fermer I. aldweb

Fermer II. Gratuitiels PC

Fermer III. Gratuitiels Palm

Fermer IV. Partagiciels Palm

Fermer V. iziBasic Palm

Fermer VI. Connaissance Palm

Fermer VII. Ordinateur Poche

Fermer VIII. miniPortail

Spécial !



Version mobile
de l'aldweb Site

m.aldweb.com


Ni Français, ni Anglais ?

Essayez donc l'un de ces drapeaux :
[de] [es] [it] [pt]
Recherche




Météo / Spam / www

Météo Lyon


aldweb contre le SPAM


Newsletter
Pour avoir des nouvelles de ce site, inscrivez-vous à notre Newsletter.
S'abonner
Se désabonner
298 Abonnés
Sites web de la famille

Webmaster - Infos
News Amis
Visites

   visiteurs

   visiteurs en ligne

Sondage
Comment trouve-tu le nouvel habillage de l'aldweb Site ?
 
Superbe !
Joli
Moyen
Moche...
Résultats
forum.gifForum - iziBasic - Sujet n°1567

Forum - Forum
iziBasic - iziBasic


Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 257

actif  Sujet n° 1567  Full Version Dim Understanding

le 01/08/2007 @ 18:15
par Larry Martin

Anonyme



Would anyone tell why I cannot get the
following code to compile?

{CREATORID "MyLM"}
{VERSION "2.0"}

dim %form1$
dim %prompt1$
dim %max%
const %max%=50
CONST %form1$ = " ## ####"
CONST %prompt1$ = "<1> Next <2> Exit"

begin
dim %numsber%(%max%)
dIM %dist%(%max%)
end
Ecrire à Larry Martin   Poster une réponse  Haut

[]   


Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 1
--------
le 02/08/2007 @ 02:13
par JoeV

Anonyme

visiteur
Hello Larry,

The 2 errors I see are:

- Dim cannot be declared in the program body, only before the begin statement.

- Arrays must be declared as dim A(n) for numbers, or dim A$(n) for strings, where n is an integer, not a variable.

Try something like:

dim A(50)
dim A$(50)
dim %form1$
dim %prompt1$
dim %max%
const %max%=50
CONST %form1$ = " ## ####"
CONST %prompt1$ = "<1> Next <2> Exit"

begin

'Program here

end

Regards,

JoeV
  Poster une réponse  Haut

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 2
--------
le 02/08/2007 @ 20:32
par Larry Martin

Anonyme

visiteur
Joe thanks for the help! But I'm still having problems with one part of the code as I've listed.
Do appreciate your help!


' iNew1.ibas
{CREATORID "DLML"}
{VERSION "2.0"}

dim %form1$
dim %prompt1$
dim %max%
const %max%=50
DIM %numsber%(%max%) ' When I add (%max%) I nannot compile
CONST %form1$ = " ## ####"
CONST %prompt1$ = "<1> Next <2> Exit"

begin
print %prompt1$
wait
end
  Poster une réponse  Haut

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 3
--------
le 03/08/2007 @ 02:34
par Larry Martin

Anonyme

visiteur
by Larry Martin 02/08/2007 @ 20:32

Joe thanks for the help! But I'm still having problems with one part of the code as I've listed.
Do appreciate your help!


' iNew1.ibas
{CREATORID "DLML"}
{VERSION "2.0"}

dim %form1$
dim %prompt1$
dim %max%
const %max%=50
DIM %numsber%(%max%) ' When I add (%max%) I cannot compile
CONST %form1$ = " ## ####"
CONST %prompt1$ = "<1> Next <2> Exit"

begin
print %prompt1$
wait
end

Ecrire à Larry Martin   Poster une réponse  Haut

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 4
--------
le 03/08/2007 @ 03:12
par JoeV

Anonyme

visiteur
Hello Larry,

In IziBasic you cannot create a numerical array named %numsber% of size %max%. Arrays can only be named a or A. So you must replace DIM %numsber%(%max%) with dim a(50). In your program, however, you can retrieve the value a(%max%). Read 'arrays' in the manual. Also, read appendix #9 to understand how IziBasic stores the values.

Hope this helps.

JoeV
  Poster une réponse  Haut
actif sujet actif   clos sujet clos   Important! Important!   Nouveau Nouveau message   -   Rectifier Rectifier message   Clôturer Clôturer sujet   Remonter Remonter
[]
Catégories de discussion  Forum 



 
^ Haut ^