View previous topic :: View next topic |
Author |
Message |
bbelcher Contributor

Joined: 30 Jul 2002 Posts: 172
|
Posted: Fri Jul 25, 2003 3:29 pm Post subject: [resolved] Tommys VDSList dll |
|
|
I'm having a problem with tommys vdslist.dll in a Tab element. When I resize a column "drag right" my collist element partially disapears. It looks like it needs to be repainted or redrawn any clue how to do this. |
|
Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Jul 25, 2003 3:31 pm Post subject: |
|
|
Does the problem solve when you drag the dialog off the screen and back
on? Then it probably does need to be repainted. Try using the PAINT style
of the dialog. Not sure how it works but I read about it once.  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
Back to top |
|
 |
bbelcher Contributor

Joined: 30 Jul 2002 Posts: 172
|
Posted: Fri Jul 25, 2003 3:36 pm Post subject: |
|
|
When I drag it off the screen the entire collist element disappears. I read about the PAINT style too but have no clue how to use it. |
|
Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Jul 25, 2003 3:42 pm Post subject: |
|
|
Try using EXTLIST SETPOS and set it to the same position it was in. Then
tell me if that works.  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
Back to top |
|
 |
bbelcher Contributor

Joined: 30 Jul 2002 Posts: 172
|
Posted: Fri Jul 25, 2003 3:57 pm Post subject: |
|
|
did'nt work |
|
Back to top |
|
 |
bbelcher Contributor

Joined: 30 Jul 2002 Posts: 172
|
Posted: Fri Jul 25, 2003 4:04 pm Post subject: |
|
|
if I use EXTLIST VISIBLE,collist to hide the control the EXTLIST VISIBLE,collist,show it works. But it's not the solution I'm looking for very clumsy |
|
Back to top |
|
 |
Rubes_sw Valued Contributor


Joined: 11 Jun 2001 Posts: 625 Location: Northern Ireland
|
Posted: Sat Jul 26, 2003 7:43 am Post subject: |
|
|
You need to set the following:
extlist window,@winexsist(~NAME OF YOUR TAB)
This allows the VDSLIST to sit on top of the tab element.
Nathan |
|
Back to top |
|
 |
bbelcher Contributor

Joined: 30 Jul 2002 Posts: 172
|
Posted: Sat Jul 26, 2003 1:54 pm Post subject: |
|
|
Nathan, I follow your logic but I'm missing something. No workie.
Code: |
DIRECTORY CHANGE,@path(%0)
external vdslists.dll
Title tab
DIALOG CREATE,test,-1,0,470,334
DIALOG ADD,TAB,TAB1,0,10,380,255,Tab 1|Tab 2|Tab 3
DIALOG SHOW
extlist window,@winexsist(~TAB1)
extlist add,collist,collist,40,20,300,130,File|75@cr()Display|75@cr()Comments|75@cr()
:Evloop
wait event
goto @event()
:Tab 1CLICK
:Tab 2CLICK
:Tab 3CLICK
goto evloop
:Close
exit
|
|
|
Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Sat Jul 26, 2003 2:05 pm Post subject: |
|
|
I think Nathan made a typo. It should be @winexists()  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
Back to top |
|
 |
bbelcher Contributor

Joined: 30 Jul 2002 Posts: 172
|
Posted: Sat Jul 26, 2003 2:17 pm Post subject: |
|
|
It works!
Thanks Everyone. |
|
Back to top |
|
 |
|