English
Examples

Creation of Notizen as Test

 

Micha12334

//
// InfinityProfan Program
// NOTIZ-1 v0.0.1
// created 2015-12-15
// micha12334
//idle-fingers
//
//Creation of/ one notice incl. Abspeicherung (TEST)
display display.rotation 0// is for smartphone rather...
var a
var b
var c = "
"
var time
var time1
var time2
var notice
var notice1
var notice2
cls rgb 0 0 200 128
time1 = fread("lasttime1.txt")
time2 = fread("lasttime2.txt")
notice1 =fread("notiz1.txt")
time = time1+"  circa "+time2
//if notice1 = " "
//    notice1 = "keine notice present!"
//endif
msg msg.box,zero,"         PROGRAMM-ENDE","ENDE",zero,end
msg msg.box,zero,"                   NOTIZ",["LÖSCHEN","NEIN"],zero,electoral
msg msg.box,"    latest notice on the "+time,"      Test-Program      'input of Notizen'                            ","WEITER",notice1

proc electoral btn

    if st(btn) == 0

        msg msg.box, zero,"     input  the  notice  hier","OK",["   ",131072+1],Text// 131072 for Mehrzeileneingabe

    endif

    if st(btn) == 1

        fdel ("notiz1.txt")
        msg msg.box, "      Neueingabe  hier","   notice  gelöscht","OK",["    ",131072+1],Text1

    endif

endproc

proc Text btn input

    var notice = input
    notice2 =notice1+" "+notice+" "
    //if notice2=" "
    //  notice2="        no Notizen1 vorhanden"           ---------------Why functions not???
    //endif
    print "
    "
    print c+notice2, rgb (255,255,255) rgb (255,0,0)
    fwrite ("notiz1.txt",notice2)

endproc

proc Text1 btn input

    var notice = input
    notice2 = notice
    //if notiz=" "
    //  notice2="        no Notizen2 vorhanden"             ---------------Why functions not???
    //endif
    print "
    "
    print c+notice2, rgb (255,255,255) rgb (255,0,0)
    fwrite ("notiz1.txt",notice2)

endproc

fwrite ("lasttime1.txt",time(7))
fwrite ("lasttime2.txt",time(0))
//msg msg.box,zero,zero,"ENDE",zero,end

proc end btn character

    var b = character

    if b <> "°"

        sleep 5000
        end

    endif

endproc

//proc event id data
//  if id == event.touchdown
//    msg msg.toast,"SCHLUSS UND AUS"
//  sleep 1000
//end
// endif
//endproc

145 kB
Bezeichnung:Erstellung von Notizen
Version:1-1
Kurzbeschreibung: Creation of Notizen. this is a Testdatei to that try of functions
Hochgeladen:12/20/15
Downloadcounter137
Download
 
12/20/15  
 



make still Codes time in such code-Blöcke...

sees then so from:

[code] quelltext [/code]
...

additionally: Poste such APPs here:  [...] 

there can tappt im dunkeln leichter aufs Phone transfer.

simply the proposition on v0.0.2 raise and on "Veröffentlichen" clicking.
 
12/20/15  
 




HofK
To
// NOTIZ-1 v0.0.1
// created 2015-12-15
// micha12334

something unfavourable appear me The Abfolge
msg msg.box,zero," PROGRAMM-ENDE","ENDE",zero,end
msg msg.box,zero," NOTIZ",["LÖSCHEN","NEIN"],zero,electoral
msg msg.box," latest notice on the "+time," Test-Program 'input of Notizen' ","WEITER",notice1

The msg Box is asynchron, The boxing verdecken itself only, are but any already there. whether the favorable is?

reference:
Parameter with mode msg.box=0: (MessageBox)
The commands functions asynchron, it can at the same time several msgboxen showing. Each msg force the User to Interaction - at least The Zurücktaste must pressed go or it must selection met go (if Buttons showing should).

for the Ergebnisübermittlung can a Proc indicate, The then called is with Ergebnissen, when the User on The Message reacted has.
 

possible rather, The boxing into Procedures then aufzurufen as they dran are.
 
12/20/15  
 




Micha12334
thanks for Your Answer.
there it the first time is, I what hochlade, Please I this To entschuldigen. I hope, next time klappt's rather.
with the boxing observed I already, that they itself overlay. time see, whether I it correctly. hinbiegen can.
a lovely Wochenstart you all
 
12/20/15  
 



@Micha: no thing & no trouble.

You can any your Posts discretionary Edit and nachbearbeiten -
eachone Posting has under right a Button "bearbeiten".
 
12/21/15  
 




HofK
Micha12334 (20.12.15)
//if notice2=" "
// notice2=" no Notizen1 vorhanden" ---------------Why functions not???
//endif


if notice2=" " sees Yes soooo correctly, is it Yes in many Languages and book-keeping, maths, Physics , engineering ... too. sincere, happens me too zuweilen.

If one twice sees - Why too always - , has one quite no chance whom Error to find.

I have already times the wildesten Tests and Bugfindungsversuche in Java/JavaScript/Infinity-Profan veransaltet circa then To remember = isn't == .
 
12/22/15  
 



Klaus Hoffmeister (22.12.15)
I have already times the wildesten Tests and Bugfindungsversuche in Java/JavaScript/Infinity-Profan veransaltet circa then To remember = isn't == .


Perhaps ought to I the = rather so treat How Roland in XProfan, means to Basic-Nature and by CmplFlag The high Syntax zuschaltbar make.
 
12/23/15  
 




HofK
.

iF (23.12.2015)
Perhaps ought to I the = rather so treat How Roland in XProfan, means to Basic-Nature and by CmplFlag The high Syntax zuschaltbar make.


then has one there another Variante.
Yes, its theortisch clear, but useful happens it again sure:
Compilerflag forget/ overlooking/ wrong written/ by mistake deleted etc.

The Syntax becomes uneinheitlich.

the Dilemma remaining, if I in Pascal/Delphi whom : to = forget have ( number := 5; ) , because it even too a Besonderheit is, was is neither rather.

on the other hand is the Difference the Operators important, circa such effectively things How
erg = -(a==b)+c-d
make to.

there  [...]  I had on the 31.01.2015 the = trouble already time on the roll:

"Das == is already a "Hilfskonstruktion" because the Zuweisung "ergibt itself aus" with = beautiful short is really something How <- , <-- , <== or even usual := (I none so treffend find) his ought to around the direction and the Zuweisung anzudeuten."


the + trouble addition and Konkatenation shining me there problematischer.
with
erg = -(a==b)+"+"+c+d
erg = -(a==b)+c+d+"+"

must one hold very pay attention.
 
12/23/15  
 




RGH
I stops it here with BASIC: whether the = a Zuweisung is or the Gleichheitsoperator yields itself really always from the Stellung: an (logische) row, The with Variable and = begins, is always a Zuweisung. any further = in the row are accordingly Gleichheitsoperatoren. erg = -(a=b)+c-d is in my eyes eindeutig, such a long time not allows is, in a expression aauch a Zuweisung To verwursten.

to that trouble addition and Konkatenation: The next XProfan-Version becomes here - in Anlehnung on others Languages, How. z.B. xBase or Clipper - the $ as Operator to introduce. the + remaining from Kompatibilitätsgründen naturally How had, but the $ treats both Operators fundamentally as String, even if there z.B. "Print 25 $ 30" standing. in the drop käme hold 2530 and not 55 out. Perhaps a Idea for Infinty-Profan.

Greeting
Roland
 
XProfan X3
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
12/23/15  
 



the Dollarzeichen means, too no code idea.

but too Tilde find I do not so badly, sees almost übersichtlicher from:

print a~b
print a$b
 
12/23/15  
 




RGH
Tilde went too, the Dollarzeichen deutet but sooner on String out. (Also should I the Parser modify, since the Tilde already another weight has.) in the übrigen must in XProfan to and to the Dollarzeichen one space his, otherwise would in your example the Parser a$ as Variablennamen discern and over the b stumbling.
(Also make space to and to Operators the program explicit lesbarer!)

Greeting
Roland
 
Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4
12/23/15  
 




HofK
with Infinity-Profan shining me because of the changing Types into variables the benefit conditioned, but the mutants go yet vielfältiger:
10+20// gives 30
10$20// gives 1020
10+"km"// gives 10km
10$"km"// gives 10km
10+y// moreover unclear (? Type of variables)
10+long(y)// gives a number, ev. only 10
10+float(y)// gives a number, ev. only 10
10$y// gives a String (here benefit)

under  [...]  I had already time notice:
"Tatsächlich power the hoisted only really sense, if ... The Operators "sauber" separated werden" :
--> one Operator the long/float erspart, but the + is now time historic "belastet" and well hardly To Change, d.h. einzuschränken.

The Tilde ~ need one possible yet for a others object?

having tappt im dunkeln z.B. time as Ersatztrennzeichen ][ To ~ in's conversation brought.
 
12/23/15  
 



Answer


Topictitle, max. 100 characters.
 

Systemprofile:

no Systemprofil laid out. [anlegen]

XProfan:

 Posting  Font  Smilies  ▼ 

Please register circa a Posting To verfassen.
 

Topic-Options

12.307 Views

Untitledvor 0 min.
Thomas Freier07/22/18
Pebender12/04/16
Joeos07/23/16
Wilfried05/20/16
More...

Themeninformationen

this Topic has 4 subscriber:

HofK (4x)
iF (4x)
RGH (2x)
Micha12334 (2x)


Admins  |  AGB  |  Applications  |  Authors  |  Chat  |  Privacy Policy  |  Download  |  Entrance  |  Help  |  Merchantportal  |  Imprint  |  Mart  |  Interfaces  |  SDK  |  Services  |  Games  |  Search  |  Support

One proposition all XProfan, The there's!


My XProfan
Private Messages
Own Storage Forum
Topics-Remember-List
Own Posts
Own Topics
Clipboard
Log off
 Deutsch English Français Español Italia
Translations

Privacy Policy


we use Cookies only as Session-Cookies because of the technical necessity and with us there no Cookies of Drittanbietern.

If you here on our Website click or navigate, stimmst You ours registration of Information in our Cookies on XProfan.Net To.

further Information To our Cookies and moreover, How You The control above keep, find You in ours nachfolgenden Datenschutzerklärung.


all rightDatenschutzerklärung
i want none Cookie