Search found 3 matches

by gadams
Wed Aug 13, 2003 12:22 am
Forum: Coding Questions
Topic: Help needed with ListIconGadget
Replies: 2
Views: 1269

Works fine
Thank you.
by gadams
Tue Aug 12, 2003 5:48 am
Forum: Coding Questions
Topic: How to slow down a movie
Replies: 1
Views: 1224

;one way would be:-

;Load movie

NoOfFrames = MovieLength() ;Get movie lengths in frames

;create 2 loops

Repeat
M = 1 to NoOfFrames
MovieSeek(M) ;Change the current movie position to the given frame.
Delay(1000) ;Show 1 frame per second
Next M
Until GetAsyncKeyState_(1) <> 0

;This should ...
by gadams
Tue Aug 12, 2003 5:24 am
Forum: Coding Questions
Topic: Help needed with ListIconGadget
Replies: 2
Views: 1269

Help needed with ListIconGadget

I am new to purebasic from VB6.
I have set up a ListIconGadget with several columns and a variable number of items.
It seems to me that if you click on one of the items then the GetGadgetText(#Gadget)
will return the value of the 1st column, but what if you want the value of the 4th column?
using ...