Download the free trial version
Basic4android Video
Features
Tutorials and manuals
Showcase
Screenshots

Go Back   Android Development Forum - Basic4android > Basic4ppc (Windows Mobile) > Basic4ppc Wishlist
Documentation Wiki Register Members List B4P Search Today's Posts Mark Forums Read

Basic4ppc Wishlist Missing any feature?

No more divergence

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-09-2008, 08:24 AM
Basic4ppc Veteran
 
Join Date: Nov 2007
Posts: 366
Awards Showcase
Beta Tester 
Total Awards: 1
Default No more divergence

after hours of trying to convert basic4ppc progs to actually run on the ppc I have to say ...
don't loose sight of the fact that this is 4ppc

At the risk of offending AGraham (About time he had a taste of his own medicine lol) I say that 'for desktop only librarys' should Not be encouraged - they eventually do basic4ppc a dis-service.

Also the disparity in the way Mousemove works should be fixed ASAP. If necessary call it Stylus move, then only activate it on desktop when the mousemoves with the button down
Reply With Quote
  #2 (permalink)  
Old 06-09-2008, 05:06 PM
Senior Member
 
Join Date: Apr 2007
Location: Copenhagen
Posts: 173
Default

Not quite sure whether this is the right place, but.... I really disagree

I for my part really enjoy the fact that, with the help of e.g. Andrew´s libraries, it is possible to write a simple and fast application for the Pc. (Which is then easy to adjust for the ppc if you need it there as well, two for the price of 1.5 .)

The fact that it is possible to write nice (pc-)programs fast using Basic4ppc is a tremendous advantage me.

Isn't it comparatively simple to just avoid using the non-relevant dll's if you are only interested in programming for the ppc?

all the best / Björn
Reply With Quote
  #3 (permalink)  
Old 06-09-2008, 06:49 PM
Cableguy's Avatar
Basic4ppc Expert
 
Join Date: Apr 2007
Location: N 41º11'30.30" W 8º39'46.60"
Posts: 2,344
Awards Showcase
Forum Contributer 
Total Awards: 1
Default

I couldn't agree more with you, BjornF

One of Basic4PPc MileStones was in fact the possability to code in and for the Desktop as well as for the device....
As BjornF said it's two, but for the price of 1/8th, when compared with other platforms, that more than often, are not so easy to start using as B4PPc is...

Users, like Andrew (Agraham), Dzt, Fillipo, myself, etc, who strive to enhance the usabillity of B4PPc, to their own needs, and feel their work is good enought to share with the whole community, were/are/will forever be welcomed....

A BIG thanks goes to all of them, as with their help, time and knowleage, I have learned a lot more on work to code for the device, it's limitations and capabilities...

Collin, as BjornF said, if one does not wish to use a desktop only Dll, then we do not need to do so...
Do as I do..I keep two seperate folders...one for the Oficial Dlls, and onother for the user created Dlls...And believe me...it's not that easy to code without using one of them...
__________________
Paulo Gomes - Porto, Portugal - Living/Working in France
Mobile Device: Samsung Galaxy S, Android 2.3.4 CUstom ROM
Laptop: Toshiba NB100-130 (running on Win7Ultimate)

My Posts helped you? Consider Buying me a Porto Glass!
Reply With Quote
  #4 (permalink)  
Old 06-09-2008, 07:45 PM
Basic4ppc Veteran
 
Join Date: Nov 2007
Posts: 366
Awards Showcase
Beta Tester 
Total Awards: 1
Default 4ppc

hmmmm, im not knocking anyones librarys etc, but some of the biggest influences come from people who never run their code on a device. the ppc side is definitely under represented.
I still think the Mousemove disparity should be fixed. the desktop runtime should emulate the device - not respond in a different way.
differences are not good for the progression of the product
Reply With Quote
  #5 (permalink)  
Old 06-09-2008, 08:12 PM
Cableguy's Avatar
Basic4ppc Expert
 
Join Date: Apr 2007
Location: N 41º11'30.30" W 8º39'46.60"
Posts: 2,344
Awards Showcase
Forum Contributer 
Total Awards: 1
Default

I have to agree with you when you say
Quote:
the ppc side is definitely under represented.
But since MOST of the creations sampled here WORK in both platforms, I see no harm...
Still it would be nice to have a "Platform aware" project designer, and not just one designer for both platforms...
I agree that stilus and mouse should be treated as two seperate controls....

Again, the ability to "preview" and set DLL created controls, in the designer is also a must have ....
__________________
Paulo Gomes - Porto, Portugal - Living/Working in France
Mobile Device: Samsung Galaxy S, Android 2.3.4 CUstom ROM
Laptop: Toshiba NB100-130 (running on Win7Ultimate)

My Posts helped you? Consider Buying me a Porto Glass!
Reply With Quote
  #6 (permalink)  
Old 06-10-2008, 06:17 AM
klaus's Avatar
Basic4ppc Expert
 
Join Date: Oct 2007
Location: Fully, Switzerland
Posts: 4,461
Awards Showcase
Forum Contributer Beta Tester Competition Winner 
Total Awards: 3
Default

Hi Colin9876,
I don't really understand your concern about the MouseEvents. You can just add 3 lines of code and the behaviour on the desktop is the same as on the device.

Code:

Sub Form1_MouseDown
  MouseActive=
1

End Sub

Sub Form1_MouseMove
  
If MouseActive=0 Then Return

End Sub

Sub Form1_MouseUp
  MouseActive=
0

End Sub
I have no problem with that, I develop on the desktop, and use my programs on the device.

Best regards
__________________
Klaus
Switzerland

Beginner's Guide / User's Guide
Reply With Quote
  #7 (permalink)  
Old 06-10-2008, 07:13 AM
Basic4ppc Veteran
 
Join Date: Nov 2007
Posts: 366
Awards Showcase
Beta Tester 
Total Awards: 1
Default wrong way round

My problem with that is I must put extra lines (slightly slowing it down) in my ppc code when I dont need it.

I write my program on the ppc, should I have to think what I have to add so it will work on the desktop?

The desktop should emulate the device - not the device code having to pander to the desktop!

In my mind there shouldnt even need to be a 'if running on PPC =False' test. As in an ideal world the code would be the same and the desktop version would emulate a PPC

Klaus
- on that note your (fabulous) icon editor is one of the programs that I had to modify to work better on the device. It was slow, and save sometimes gave a runtime error. Clearly this is an issue which has never been raised because hardly anybody has tried it (or tried saving icon files) on the device???!!!

Last edited by colin9876 : 06-10-2008 at 07:48 AM.
Reply With Quote
  #8 (permalink)  
Old 06-10-2008, 07:49 AM
klaus's Avatar
Basic4ppc Expert
 
Join Date: Oct 2007
Location: Fully, Switzerland
Posts: 4,461
Awards Showcase
Forum Contributer Beta Tester Competition Winner 
Total Awards: 3
Default

Hi Colin9876,
Could you post the improvements you made in the IconEditor, I would be interested in.
Thank you in advance and Best Regards.
__________________
Klaus
Switzerland

Beginner's Guide / User's Guide

Last edited by klaus : 07-12-2008 at 02:08 PM.
Reply With Quote
  #9 (permalink)  
Old 06-10-2008, 08:18 AM
Basic4ppc Veteran
 
Join Date: Nov 2007
Posts: 366
Awards Showcase
Beta Tester 
Total Awards: 1
Default Speed v Beauty lol!

Klaus - ur code is very detailed and has some great functions so please dont think Im criticising ... it works very well on the desktop
The changes I made were drawing coloured squares directly to the form so that would respond immediately to clicks and change shade etc.
The point I was making that ur iconeditor is absolutely fine on the desktop, and has clearly been developed on that, but the pen movement lags on the device so that no points get colored in till the pen stops!

I think you will have the same issues with the drawing program ur working on, u may get away with that complicated data structure on the desktop but it will be dead slow on the device.

As to the saving problem, have u ever encountered an error with that?

Anyway I will stop moaning now. I just think everyone should keep in mind us poor guys who only have ppcs to use lol!

Last edited by colin9876 : 06-10-2008 at 08:24 AM.
Reply With Quote
  #10 (permalink)  
Old 06-10-2008, 01:50 PM
klaus's Avatar
Basic4ppc Expert
 
Join Date: Oct 2007
Location: Fully, Switzerland
Posts: 4,461
Awards Showcase
Forum Contributer Beta Tester Competition Winner 
Total Awards: 3
Default

Hi Colin9876,

I am always open to 'constructive' critics which I consider as improuvement suggestions. That's the way how a program or product becomes better.

I don't remember having had errors when saving. The only problem I remember was when saving images, on the device with WM2003, formats other than bitmap gave an error. This is inherent to WM2003.

Best regards.
__________________
Klaus
Switzerland

Beginner's Guide / User's Guide

Last edited by klaus : 07-12-2008 at 02:10 PM.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On


All times are GMT. The time now is 11:23 AM.


Powered by vBulletin® Version 3.6.12
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0