| 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 |
| ||
![]() ![]() Registered Member #1 Joined: Wed Apr 19 2006, 08:25PMPosts: 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 |
| ||
![]() ![]() Registered Member #282 Joined: Wed Feb 14 2007, 04:29PMPosts: 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 |
| ||
![]() ![]() Registered Member #1 Joined: Wed Apr 19 2006, 08:25PMPosts: 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 |
| ||
![]() Registered Member #8 Joined: Fri Jun 16 2006, 05:40AMPosts: 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 |
| ||
![]() Registered Member #25 Joined: Wed Sep 06 2006, 10:37PMPosts: 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 |
| ||
![]() ![]() Registered Member #1 Joined: Wed Apr 19 2006, 08:25PMPosts: 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 |
| ||
![]() Registered Member #8 Joined: Fri Jun 16 2006, 05:40AMPosts: 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 |
| ||
![]() ![]() Registered Member #1 Joined: Wed Apr 19 2006, 08:25PMPosts: 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 |
| ||
![]() Registered Member #556 Joined: Tue Jul 24 2007, 07:01AMPosts: 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 |
| ||
![]() ![]() Registered Member #1 Joined: Wed Apr 19 2006, 08:25PMPosts: 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 |
| ||
![]() Registered Member #556 Joined: Tue Jul 24 2007, 07:01AMPosts: 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 |
| ||
![]() ![]() Registered Member #49 Joined: Sun Sep 17 2006, 03:02PMPosts: 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 |
| ||
![]() ![]() Registered Member #1 Joined: Wed Apr 19 2006, 08:25PMPosts: 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 | | ||