ArianeSoft - Programming and development for Windows and Windows Mobile :: Forums :: PPL - Pocket Programming Language :: Made with PPL
 
<< Previous thread | Next thread >>
What are you working on?
Moderators: kornalius, bmanske, PointOfLight
Author Post
kornalius
Tue Apr 03 2007, 04:49PM


Registered Member #1
Joined: Wed Apr 19 2006, 08:25PM
Posts: 2783
Since it's release back in September 2006, PPL has evolved greatly. The community has been amazing, there has been quite a few projects completed and some are in development.

We would like to know what you are on, give us some information, release date, description, technology you are using, etc...

[ Edited Tue Apr 03 2007, 05:05PM ]

Regards,
Alain Deschenes
President and programmer
ArianeSoft Inc. (http://www.arianesoft.ca)
Back to top
SJD
Tue Apr 03 2007, 05:56PM

Registered Member #282
Joined: Wed Feb 14 2007, 04:29PM
Posts: 56
I prepare to create a quiz-like program, where is specific number of questions and for every question are 3 possible answers. The Q and A are rather big snipets of text. One A or one Q goes to the display only. I look for some hit how to resolve it in the sense of a basic convenience at least. I have a certain idea indeed, but I have not sufficient knowledges so far about PPL.

Jerry
-------------------------
PPLG (PPL is Great)

[ Edited Wed Apr 04 2007, 11:09AM ]

Jerry
-------------------------
PPLG (PPL is Great)
Back to top
kornalius
Wed Apr 04 2007, 10:36AM


Registered Member #1
Joined: Wed Apr 19 2006, 08:25PM
Posts: 2783
SJD: Don't get discouraged, you can do it. The forums are here to help you.

Regards,
Alain Deschenes
President and programmer
ArianeSoft Inc. (http://www.arianesoft.ca)
Back to top
matteo.m
Wed Apr 04 2007, 05:11PM

Registered Member #8
Joined: Fri Jun 16 2006, 05:40AM
Posts: 367
Still working on my game, right now directly on PocketPc due to the fact i had to change the laptop and now with vista os i have some compatibility issues.
Back to top
Paul Fielder
Wed Apr 04 2007, 06:25PM

Registered Member #25
Joined: Wed Sep 06 2006, 10:37PM
Posts: 89
I’m playing with several things at the moment, the main one is a card game, still very much on a learning curve, but have created a few little applications for my own use, namely Currency Conversion (£ -> Euro), Simple Noughts & Crosses Game, Specific Gravity Conversion, but my favourite is a counter until I retire and have more time to play with PPL.

Regards
Paul
Back to top
kornalius
Thu Apr 05 2007, 12:08PM


Registered Member #1
Joined: Wed Apr 19 2006, 08:25PM
Posts: 2783
Paul, the retirement counter is a very good idea. I like it!

Matteo: Version 1.24 will fix one Vista issue but not the whole thing. I plan on getting Vista very soon to make sure it works perfectly with it.

Regards,
Alain Deschenes
President and programmer
ArianeSoft Inc. (http://www.arianesoft.ca)
Back to top
matteo.m
Fri Apr 06 2007, 03:43AM

Registered Member #8
Joined: Fri Jun 16 2006, 05:40AM
Posts: 367
Knowing you from almost one year, what you just said it make me happy, thanks Alain. I must say that to not have PPL working 100% on my desktop
it's like to missing home. I use it a lot to make windows things , not only for ppc purpose. Have a good day
Back to top
kornalius
Fri Apr 06 2007, 11:09AM


Registered Member #1
Joined: Wed Apr 19 2006, 08:25PM
Posts: 2783
We are dedicated to support this product for a long time and Vista, Smartphone and WM6 are the inevitable routes for the future.

Regards,
Alain Deschenes
President and programmer
ArianeSoft Inc. (http://www.arianesoft.ca)
Back to top
Kevin Johnson
Tue Jul 24 2007, 02:04PM
Registered Member #556
Joined: Tue Jul 24 2007, 07:01AM
Posts: 34
I'm currently porting a Flashcard program of mine (origionaly written using Liberty Basic 4) to PPL. It's a very good flashcard program that i've designed specificly for studying chinese characters. Now that i'm buying a Windows Mobile phone, it will be very conienient for me to study anywhere i go. It will be very handy on any WM phone with a touch screen.

Here are the functions of my flashcard program:

1. load any flashcard datafile (CSV format)
2. display the number of flashcards before the study session starts
3. keep track of correct and incorrect answers
4. display the final score at the end of the study sessioin
5. optionaly save the wrong answers to a new datafile so that only the wrong answers may be studied in a future study session

i'm nearly finished with porting it, however....i seem to be having a problem with one thing......
and this may be a really silly question, but...
How do i change the font size of a particular text box?
Chinese characters are really difficult to look at when they are small, so i need the PinYin and English definition to be about font size 12, and the chinese character to be about font size 36.
Back to top
kornalius
Tue Jul 24 2007, 03:35PM


Registered Member #1
Joined: Wed Apr 19 2006, 08:25PM
Posts: 2783
Try Control_SetFont() in Swapi.ppl library, it will change the font.

Regards,
Alain Deschenes
President and programmer
ArianeSoft Inc. (http://www.arianesoft.ca)
Back to top
Kevin Johnson
Thu Aug 02 2007, 01:49PM
Registered Member #556
Joined: Tue Jul 24 2007, 07:01AM
Posts: 34
how can i test for the End Of File when working with a sequential data file?

VB would be something like...

Open "flashcards.txt" For Input As #1
Do
'file operations go here
Loop Until EOF(#1)

..how can i do this with PPL?
Back to top
PointOfLight
Thu Aug 02 2007, 02:11PM

Registered Member #49
Joined: Sun Sep 17 2006, 03:02PM
Posts: 1129
To read through a file:

fp$ = fopen("flashcards.txt", "r");
while(not(feof(fp$)))
  s$ = ReadString(fp$);
  //do whatever with string here
end;
fclose(fp$);

You might want to redirect actual programming / syntax related questions to the Support forum.  Thanks!

Eric Pankoke
Founder
Point Of Light Software
http://www.polsoftware.com/
Back to top
kornalius
Thu Aug 02 2007, 02:46PM


Registered Member #1
Joined: Wed Apr 19 2006, 08:25PM
Posts: 2783
Kevin,

Please use the support forums for technical questions.

Regards,
Alain Deschenes
President and programmer
ArianeSoft Inc. (http://www.arianesoft.ca)
Back to top
 

Jump:     Back to top

Syndicate this thread: rss 0.92 Syndicate this thread: rss 2.0 Syndicate this thread: RDF
Powered by e107 Forum System