On Nov 30, 2007, at 2:27 AM, Markus Winter wrote:
>>> LB_Captions.addrow Format(MoviePlayer1.Position, "0.000")
>
> which sets it to 1.345 on a British system
>
> and to 1,345 on a German system
Right, Format makes human-readable numbers.
>
> MoviePlayer1.CurrentPosition =
> Val(LB_Captions.cell
> (LB_Captions.SelectedRow,0))
This is incorrect. To interpret human-readable numbers, you must use
CDbl. Val is only useful for machine-formatted numbers (which you'd
get with Str rather than CStr or Format).
> ST_Current_Position.Text = Format(MoviePlayer1.Position, "0.000")
This would be fine if the previous step were correct.
>
Best,
- Joe
--
Joe Strout
Inspiring Applications, Inc.
http://www.InspiringApps.com
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
|