Jump to content


Photo

Bugs (test project included)


  • Please log in to reply
14 replies to this topic

#1 DriveSoft

DriveSoft
  • Members
  • 29 posts

Posted 29 October 2015 - 10:08 PM

Hello,

 

 

There is some bugs, when I set cursor in items like ComboBox, List and items with InplaceEdit then I try to clean them(Nodes.Clear)

this causes an exception.

 

In the case Item with InplaceEdit, it just not disappear from Inspector when I make Inspector.Nodes.Clear;

 

 

 

Test project attached, please test it.

May be I doing something wrong?

Attached Files



#2 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,191 posts
  • Gender:Male

Posted 29 October 2015 - 11:37 PM

Hi,

 

For first aid, please change next line of code:

 

procedure TNxCustomButtonEdit6.WMKillFocus(var Msg: TWMKillFocus);
begin
  inherited;
  if FButton <> nil then FButton.Down := False;
end;

boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#3 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,191 posts
  • Gender:Male

Posted 30 October 2015 - 02:58 AM

Hi,

 

I think that I have fixed it all. Please re-download archive.

 

Thanks.


boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#4 DriveSoft

DriveSoft
  • Members
  • 29 posts

Posted 30 October 2015 - 05:17 AM

Thanks for so quick the help! )

 

I found one more bug, project attached.

Attached Files



#5 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,191 posts
  • Gender:Male

Posted 30 October 2015 - 06:23 AM

Hi,

 

I have fixed it and re-uploaded file. Please tell me if is fixed.


boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#6 DriveSoft

DriveSoft
  • Members
  • 29 posts

Posted 30 October 2015 - 03:05 PM

Thank you for great support!

All works fine )



#7 DriveSoft

DriveSoft
  • Members
  • 29 posts

Posted 30 October 2015 - 05:06 PM

Another bug.

 

If set property AllowGrayed = True for NxCheckBoxInspectorNode, after that checkbox is not clickable in NxInspector.

Also in Delphi inspector I can't set value cbGrayed for property State.

 

 

It's bug? or I missed something ?

 

 

 

Thanks.



#8 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,191 posts
  • Gender:Male

Posted 30 October 2015 - 07:09 PM

It seems to be a bug.

 

I am fixing it now.


boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#9 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,191 posts
  • Gender:Male

Posted 30 October 2015 - 07:25 PM

I think that I have fixed it. Please download new files.

 

Also, please recompile NextInspector package if you need to see results in design-time.


boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#10 DriveSoft

DriveSoft
  • Members
  • 29 posts

Posted 31 October 2015 - 01:50 AM

Thanks! Works )



#11 DriveSoft

DriveSoft
  • Members
  • 29 posts

Posted 01 November 2015 - 05:06 PM

In the file: ...\Packages\Delphi XE3\NxInspector6Dsgn_dxe3.dpk



requires
rtl,
designide,
NxStandard6Run_dxe4,
NxStandard6Dsgn_dxe4,
NxInspector6Run_dxe4;

dxe4 ? Is it mistake?

 

 

 

 

Also I got error when installing:

 

NxDBGrid6Dsgn_dxe3.bpl

[dcc32 Fatal Error] NxDBColumnsEditor6.pas(20): F1026 File not found: 'NxDesignWindow6.dcu'

 

 

NxInspector6Dsgn_dxe3.bpl

[dcc32 Fatal Error] NxInspector6Dsgn_dxe3.dpk(34): E2202 Required package 'NxStandard6Run_dxe4' not found

 

 

but when I fixed

 

NxStandard6Run_dxe4,
NxStandard6Dsgn_dxe4,
NxInspector6Run_dxe4;

 

to

 

NxStandard6Run_dxe4,
NxStandard6Dsgn_dxe4,
NxInspector6Run_dxe4;

 

 

I got another error durring installing NxInspector6Dsgn_dxe3.bpl:

[dcc32 Fatal Error] NxInspectorNodesEditor6.pas(15): F1026 File not found: 'Graphics.dcu'



#12 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,191 posts
  • Gender:Male

Posted 01 November 2015 - 05:31 PM

Hm, not sure how I made this.
I will fix it today.
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#13 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,191 posts
  • Gender:Male

Posted 01 November 2015 - 10:31 PM

Hi,

 

I have updated XE3 packages and re-uploaded. I hope that now is all fine. Please uninstall old packages, then simply right click on each one -> Install.


boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#14 DriveSoft

DriveSoft
  • Members
  • 29 posts

Posted 01 November 2015 - 11:56 PM

Hello,

 

 

Thanks, please let me know, how to properly uninstall old packages? )



#15 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,191 posts
  • Gender:Male

Posted 02 November 2015 - 01:03 PM

Hi,

I usualy go to Component -> Install Packages and then remove nx packages.
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.




2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users