View Issue Details

IDProjectCategoryView StatusLast Update
0001379JEDI VCL00 JVCL Componentspublic2004-04-22 02:56
ReporterxerkanAssigned Touser72 
PrioritynormalSeverityfeatureReproducibilityalways
Status closedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001379: JvDBDatePickerEdit: calendar not adjusted to screen location
DescriptionWhen the component jvdbDatePickerEdit is located near the inferior part of the form when unfolding the calendar this is above but of jvdbDatePickerEdit, nevertheless I have been able to observe that this does not happen when I put jvdbDatePickerEdit in the superior part of the form
Additional InformationCuando el componente jvdbDatePickerEdit se encuentra situado cerca de la parte inferior del formulario al desplegar el calendario este se muestra mas arriba del jvdbDatePickerEdit , sin embargo he podido observar que esto no ocurre cuando pongo el jvdbDatePickerEdit en la parte superior del formulario
TagsNo tags attached.

Activities

xerkan

2004-02-27 00:31

reporter   ~0003097

He podido comprobar que este efecto no ocurre cuando se prueba en un monitor con resolucion de 1280x1024 pero si que ocurre si la resolucion es menor a esta

2004-02-28 12:00

 

video.wmv (408,200 bytes)

hasse42g

2004-03-04 02:13

reporter   ~0003169

I tried but I really can not reproduce this, and browsing the code didn't reveal any obvious errors to me. And, I'm not very good at reading spanish Bug Notes. ;-)

xerkan

2004-03-04 03:39

reporter   ~0003171

In the video you can see the bug

To reproduce it, the resolution must be of 1024x768 or minor, the JvDBDatePickerEdit must be in the low part of form

user72

2004-03-04 05:22

  ~0003176

In JvDatePickerEdit.pas, move the AutoSize call before inherited DoShow and it should work:

procedure TJvDropCalendar.DoShow;
begin
  {in the constructor the calendar will sometimes report the wrong size, so
   we do this here.}
  AutoSize := True;
  inherited DoShow;
end;

xerkan

2004-03-04 08:19

reporter   ~0003177

Ok, with the change that you have said the problem is solved

user72

2004-03-04 08:46

  ~0003184

Updated in CVS

Issue History

Date Modified Username Field Change
2004-02-26 12:38 xerkan New Issue
2004-02-26 13:05 user72 Summary how incorrectly the calendar in the jvdbDatePickerEdit => JvDBDatePickerEdit: calendar not adjusted to screen location
2004-02-27 00:31 xerkan Note Added: 0003097
2004-02-28 12:00 xerkan File Added: video.wmv
2004-03-04 02:13 hasse42g Note Added: 0003169
2004-03-04 03:39 xerkan Note Added: 0003171
2004-03-04 05:22 user72 Note Added: 0003176
2004-03-04 08:19 xerkan Note Added: 0003177
2004-03-04 08:46 user72 Status new => resolved
2004-03-04 08:46 user72 Resolution open => fixed
2004-03-04 08:46 user72 Assigned To => user72
2004-03-04 08:46 user72 Note Added: 0003184
2004-04-22 02:56 user72 Status resolved => closed