View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0002005 | JEDI VCL | 00 JVCL Components | public | 2004-07-27 12:19 | 2004-09-03 14:59 |
| Reporter | anonymous | Assigned To | |||
| Priority | normal | Severity | major | Reproducibility | N/A |
| Status | closed | Resolution | open | ||
| Product Version | |||||
| Target Version | Fixed in Version | ||||
| Summary | 0002005: TJvXpBar - invalid windows handle causes system error 1400 | ||||
| Description | When i place some "TJvXpBar" components on my form (they are placed at some different pages of an "TPageControl" component) then i often get (if i try to show a page of the Page Control where a "TJvXpBar" is placed) an error saying "invalid windows handle - system error 1400" and the page of the Pagecontrol is empty. | ||||
| Additional Information | I get this error when i use Borland Delphi 6 and the third realease of the JVCL. My operating system is Windows 2000. I guess that there is a little bug in a paint-procedure of the component. | ||||
| Tags | No tags attached. | ||||
|
|
Hi, i`ve experimented a little bit with that error i have. I`ve found out that if i call "menUsers.Collapsed:=True;" i get this error. Otherwise i get no error. It was in the following piece of code: >Wait_4.Visible:=true; //Firstly the call "menUsers.Collapsed:=True" was here and i got an error! >Wait_4.Refresh; >FormCreate(self); >Userslist:=TStringlist.Create; >Userslist.AddStrings(UsrGetAllData); >for i:=1 to Userslist.Count do begin >UsersGrid.RowCount:=i+1; >UsersGrid.Cells[col2_uid,i]:=StrGetToken(Userslist.Strings[i-1],',',1); >UsersGrid.Cells[col2_name,i]:=StrGetToken(Userslist.Strings[i-1],',',2); >UsersGrid.Cells[col2_email,i]:=StrGetToken(Userslist.Strings[i-1],',',3); >UsersGrid.Cells[col2_website,i]:=StrGetToken(Userslist.Strings[i-1],',',4); >UsersGrid.Cells[col2_info,i]:=StrGetToken(Userslist.Strings[i-1],',',5); >UsersGrid.Cells[col2_state,i]:=StrGetToken(Userslist.Strings[i-1],',',6); >UsersGrid.Cells[col2_ip,i]:=StrGetToken(Userslist.Strings[i-1],',',7); >end; >Userslist.Free; >Wait_4.Visible:=False; >UsersGrid.OnClick(self); >menUsers.Collapsed:=True; //now i`ve moved it to this Position and i get no error That`s strange, eh? If you like you can remove that bug-report by me, but i don`t know why i got that error yet. |