Spécial ! |
Version mobile de l'aldweb Site m.aldweb.com Ni Français, ni Anglais ?Essayez donc l'un de ces drapeaux :
|
|
Météo / Spam / www |
Météo Lyon
aldweb contre le SPAM
|
|
|
|
|
|
|
- Forum - iziBasic
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 257
Sujet n° 1583 |
Help? |
le 06/10/2007 @ 03:46 par Nate Weil
|
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! |
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 1 -------- le 06/10/2007 @ 15:08 par Tuka
visiteur |
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.
|
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 2 -------- le 07/10/2007 @ 13:20 par Nate Weil
visiteur |
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 :( |
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 3 -------- le 07/10/2007 @ 13:37 par Tuka
visiteur |
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. |
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 4 -------- le 07/10/2007 @ 13:50 par Tuka
visiteur |
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 |
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 5 -------- le 07/10/2007 @ 14:41 par Tuka
visiteur |
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... |
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 6 -------- le 07/10/2007 @ 14:47 par Tuka
visiteur |
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. |
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 7 -------- le 07/10/2007 @ 21:39 par aldweb
visiteur |
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
|
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 8 -------- le 08/10/2007 @ 16:21 par Tuka
visiteur |
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 |
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 9 -------- le 10/10/2007 @ 03:27 par Nate Weil
visiteur |
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! |
|
|
Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Réponse n° 10 -------- le 16/10/2007 @ 20:28 par Nate Weil
visiteur |
Question: How do you declare and use an array? just show the actual listing please thanks! |
|
|
sujet actif
sujet clos
Important!
Nouveau message -
Rectifier message
Clôturer sujet
Remonter
|
|
|
|
|
|