BUG TRACKER - List of known bugs

Please report bugs

FIXED IN V1.89(l): RichTextBox1.SetTextCursorPosition

Postby berndnoetscher » Mon Jul 20, 2009 8:27 am

RichTextBox1.SetTextCursorPosition(Line, Column)

will not correctly set the cursor when a line is to long for a RichTextBox and the line is wrapped.
Resizing the RichTextBox so that the fits the Box solves the problem.

RichTextBox.Column don't work correctly when wrapping is enabled as well.
berndnoetscher
Site Admin
 
Posts: 1059
Joined: Tue Sep 25, 2007 9:37 am

FIXED IN V1.89(m): if you change the form name (IDE) the na

Postby berndnoetscher » Mon Jul 20, 2009 11:29 am

if you change the form name the name does not change.....another bug
berndnoetscher
Site Admin
 
Posts: 1059
Joined: Tue Sep 25, 2007 9:37 am

FIXED IN V1.89(m): Form shrinks after reopen when resizeable

Postby berndnoetscher » Mon Jul 27, 2009 3:30 pm

It looks like savving the height of a form property get mixed up do to some auto-features of kbasic. (when resizeable=false)
The saved height got reduced by 10 pixels or so.
Will fix it soon.
berndnoetscher
Site Admin
 
Posts: 1059
Joined: Tue Sep 25, 2007 9:37 am

FIXED IN V1.89(n): Closing MDI Child Form

Postby berndnoetscher » Tue Sep 01, 2009 8:49 am

Me.Close() didn't close a mdi form.
berndnoetscher
Site Admin
 
Posts: 1059
Joined: Tue Sep 25, 2007 9:37 am

Re: BUG TRACKER - List of known bugs

Postby xcach » Tue Jun 15, 2010 9:37 am

Bugs with a Enum list and the Select Case:

Enum MYENUM
ITEM0 = 0
ITEM1 = 1
End Enum

Dim TheList as MYENUM

TheList = ITEM1

Select Case TheList
Case ITEM0:
'Action 1
Case ITEM1:
'Action2
End Select

******
The parser don't recognize ITEM1.
xcach
 
Posts: 2
Joined: Tue Jun 15, 2010 9:21 am

Re: BUG TRACKER - List of known bugs

Postby xcach » Tue Jun 15, 2010 9:45 am

API fonction return CString.

When a API return a string ref (pointer), KBasic copy the pointer address (convert the integer into a string) into the CString of reception

Example:
'API Declaration
Public Declare Function MyFct Lib "MyLib.dll" () as CString
'Variable Declaration
Dim sRet as CString

sRet = MyFct() 'sRet contain the value of the pointer of the string returned, but sRet doesn't contain the string desired
xcach
 
Posts: 2
Joined: Tue Jun 15, 2010 9:21 am

Previous

Return to Bug-Reports

cron