Issue 85286 - BASIC: msgbox breaks with special parameter sequence
Summary: BASIC: msgbox breaks with special parameter sequence
Status: CLOSED IRREPRODUCIBLE
Alias: None
Product: General
Classification: Code
Component: scripting (show other issues)
Version: current
Hardware: All All
: P3 Trivial (vote)
Target Milestone: ---
Assignee: ab
QA Contact: issues@framework
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-01-16 11:45 UTC by joerg.skottke
Modified: 2013-08-07 15:31 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description joerg.skottke 2008-01-16 11:45:46 UTC
Following statement leads to a runtime error

    msgbox( "F = " & f & " => " & cCur( f ) )

where f is of type single.

I would expect the entire expression to be printed out by msgbox
Comment 1 ab 2008-01-22 12:39:54 UTC
Sub Main
	dim f as single
	msgbox( "F = " & f & " => " & cCur( f ) )
End Sub

works without problems, tested with src680 m239 wntmsci10.pro
and src680 m243 unxlngi6.pro.
Comment 2 joerg.skottke 2008-05-30 10:15:31 UTC
Close