Hi,

> Can you give me some more useful hints?
>
> 2. How can I put a hyperlink (clickable und colored, with a cursor,
> that seems like a hand, if I point at link) in Win32::GUI::Grid-Cell.
> I played with SetDefCellTextColor/GetFocusCell/etc but it is not good
> solution for me. Are there "SetCellType(GVIT_HREF) or (GVIT_LINK)"? :-))
> Example: http://home.arcor.de/paulwup/gui/1.gif (montage)

Actualy, no hyperlink cell but probably in a futur version ;o)

> 3. I have grey areas around Grid. How can I get rid of it?
>    Example: http://home.arcor.de/paulwup/gui/1.gif

You can use ExpandToFit function when you cells area is smaller than your
grid area.
Or, you can change background color with SetGridBkColor (not very nice).

I know this grid have need to be improve.
I use  MFC Grid control 2.24 By Chris Maunder.
But, no new release for a long time :(
See : http://www.codeproject.com/miscctrl/gridctrl.asp

> 4. How can I stop/cancel/kill a thread, that was started with
>
> $thr = threads->create(\&Subprogram);
>
> I mean a user are clicking a "Cancel"-button to break a task, but the
> thread continue to run and she/he get a undesirable result.  I readed
> "perlthrtut" and couldnot find some hints for me.

I don't know very well thread.

Have you try to share a $stop variable with threads::shared ?
So when user cancel, you set this variable and wait thread finish.
And, in you thread you test this variable an stop it if is set.

Laurent.


Reply via email to