aldweb

Close I. aldweb

Close II. PC Freeware

Close III. Palm Freeware

Close IV. Palm Shareware

Close V. iziBasic Palm

Close VI. Palm Knowledge

Close VII. Pocket Computer

Close VIII. miniPortail

Special !



Mobile version of
the aldweb Site

m.aldweb.com


Neither French, nor English?

Try one of these flags then:
[de] [es] [it] [pt]
Search




Weather / Spam / www

Lyon Weather


aldweb against spam


Newsletter
To receive news about this website, consider subscribing to our Newsletter.
Subscribe
Unsubscribe
298 Subscribers
Family's web sites

Webmaster - Infos
Friends News
Visits

   visitors

   visitors online

Poll
What do you think of the new design of the aldweb Site?
 
Great !
Beautiful
Average
So ugly...
Results
forum.gifForum - iziBasic - Topic #1583

Forum - Forum
iziBasic - iziBasic


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

active  Topic # 1583  Help?

06/10/2007 @ 03:46
by Nate Weil

Anonymous



Hi all!
I just registered izibasic and visibasic yesterday... and am looking for some simple help. I have looked through the manual, but I'm a bit slow and I don't understand all of it, and I don't really have time to read all that thoroughly anyways. Here is what I need help with specifically. Please help!

setting and using arrays.

setting up and using menus.

When I try using console, it erases my buttons and numbers in my console look like this: 1.00000000E.00. How do I fix these?

Using custom images.

please help!
  Post an answer  Top

[]   

StartPrevious [ 1 2 ] NextEnd

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 1
--------
06/10/2007 @ 15:08
by Tuka

Anonymous

visitor
Hello,Nate.
You are welcomed.

About setting and using arrays.
'SortInteger.iBAS' is sample code.
Sorry, this page is Japanese only.
But,a source code will help your understanding.
http://web01.joetsu.ne.jp/~ootuka/pa/iziBasic/iziBasic-Samples.html

About 1.00000000E.00.
Please try this code.

PRINT 1
PRINT 1 USING 0
A$=STR$(1,0):PRINT A$

setting up and using menus.
Please make a resource file.
BIRD is resource file editor.
I recommend a BIRD.

This is my sample programs.
HitAndBlow-Ver-1-1.zip
Maze2D-Ver-1-0.zip
Download is here.
http://web01.joetsu.ne.jp/~ootuka/pa/db.htm#MyAP

Using custom images.
Please make a resource file.

This is my sample programs.
Maze2D-Ver-1-0.zip

Other samples may be helpful to you.
I am looking forward to your application.
  Post an answer  Top

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 2
--------
07/10/2007 @ 13:20
by Nate Weil

Anonymous

visitor
I will try the sample programs and that code when I can, but I don't understand that code so how is it going to help me? How can you print a number as if it were a variable?
I have installed bird, but it doesn't seem to do much. It doesn't open files, when you make a file you don't decide to put anything in it, it seemed worthless. But I do still have it...
Thanks for the reply but I'm afraid it's not enough :(
  Post an answer  Top

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 3
--------
07/10/2007 @ 13:37
by Tuka

Anonymous

visitor
Hello,Nate.

PRINT USING Sample
'PrintUsing.iBAS
{CreatorID "HELO"}
{Version "1.0"}
{PARSER ON}
{CONSOLEFONT OFF}

BEGIN

PRINT 1
PRINT 1 USING 0
A$=STR$(2,0):PRINT A$
A=2:A$=STR$(A,0):PRINT A$
WAIT
END

Please try this code.
  Post an answer  Top

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 4
--------
07/10/2007 @ 13:50
by Tuka

Anonymous

visitor
Hello,

I appoint a decimal place in USING.


'PrintUsing.iBAS
{CreatorID "HELO"}
{Version "1.0"}
{PARSER ON}
{CONSOLEFONT OFF}

BEGIN

PRINT 1
PRINT 1 USING 0
A$=STR$(2,0):PRINT A$
A=2:A$=STR$(A,0):PRINT A$
PRINT 42.195
PRINT 42.195 USING 0
PRINT 42.195 USING 1
PRINT 42.195 USING 2
PRINT 42.195 USING 3
WAIT
END
  Post an answer  Top

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 5
--------
07/10/2007 @ 14:41
by Tuka

Anonymous

visitor
Hello,

A manual is not in BIRD.
The PRC file which is in the folder after the thawing installs it entirely.

I start BIRD.
I tap "Database List".
I tap "New Database".
I turn on information.

An example:
Name: PrintUsingRSRC
Creator: HELO
Type: Rsrc
A resource file is made when I tap "OK".

I classify a check into backup of the screen right and tap an "Apply" button.
I Double tap a file name.
(For example, "PrintUsingRSRC")
I turn into a "Resource List" screen.

I choose "menu bar" of "New".
"Menu Pull Down" with a "new" button and turns into a screen.
Title is a group of the menus.
I make a member in New.

An example:
Title:Edit

A title of the first member: Copy
ID: 1
Accel.char:C

The title of the second member: Paste
ID: 2
Accel.char: V

I become the list of resources screen by "Done", "OK".

It is "MBAR 1000", but the ID of the resource is from 1 to 999 in iziBasic.
For example, with ID of the screen right as 100, I tap an "Apply" button.
I turn into "MBAR 100".

The resource file was ready.
To be continued...
  Post an answer  Top

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 6
--------
07/10/2007 @ 14:47
by Tuka

Anonymous

visitor
Menu Bar Sample Code

'PrintUsing.iBAS
{CreatorID "HELO"}
{Version "1.0"}
{PARSER ON}
{CONSOLEFONT OFF}
{RESOURCEFILE "PrintUsingRSRC"}

BEGIN
MENU 100

PRINT 1
PRINT 1 USING 0
A$=STR$(2,0):PRINT A$
A=2:A$=STR$(A,0):PRINT A$
PRINT 42.195
PRINT 42.195 USING 0
PRINT 42.195 USING 1
PRINT 42.195 USING 2
PRINT 42.195 USING 3
REPEAT
E=DOEVENTS
IF E=1001 THEN
M=MENUITEM
IF M=1 LET B=MESSAGEBOX("Copy",0)
IF M=2 LET B=MESSAGEBOX("Paste",0)
END IF
UNTIL E<0
END

Please try this code.
I am happy if I can help you.
  Post an answer  Top

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 7
--------
07/10/2007 @ 21:39
by aldweb

Anonymous

visitor
Hello Tuka san,

Thank you for helping our new iziBasic user friend.

If you start designing a great tutorial, why not put it in the iziBasic wiki?
Or formalize it a little bit more in a PDF?
I designed 3 tutorials some time ago, for using PP when you are a newbee. You might want to do the same for iziBasic...

Cheers,
aldweb


Cheers,
aldweb
Write to aldweb   Post an answer  Top

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 8
--------
08/10/2007 @ 16:21
by Tuka

Anonymous

visitor
Hello,

I wrote explanation of BIRD in English.
I am translating it now.
Please look for trial.
http://web01.joetsu.ne.jp/~ootuka/pa/BirdEnglish.htm

I do not understand Wiki well.
At first I explain it in a web page.

Tuka
  Post an answer  Top

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 9
--------
10/10/2007 @ 03:27
by Nate Weil

Anonymous

visitor
Thanks for the responses! I don't have time to dig through all that now, but thanks again anyways! And Tuka, I agree the wiki is confusing. It has virtually nothing!
  Post an answer  Top

Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 10
--------
16/10/2007 @ 20:28
by Nate Weil

Anonymous

visitor
Question: How do you declare and use an array?
just show the actual listing please
thanks!
  Post an answer  Top
StartPrevious [ 1 2 ] NextEnd
active topic active   closed topic closed   Sticky Sticky   New New message   -   Correct Correct message   Close Close topic   Make sticky Make sticky
[]
Forum Topic  Forum 



 
^ Top ^