1. to David Cuny or Derek Parnell from Argentina

Hi... I'm Gustavo Bottegoni, from Argentina... i had a problem while i was 
programming with win32lib...
i'm making a database to my uncle, who sells car parts... well... i was 
mading "search" button, so i find the index where the object is ubicated, 
but... when i try so 'select' it... i can't.. i failed trying...
do u understand what i mean? i try to select it like doing a click, select 
it and mark it in blue...
i tried with setIndex() but it's not accepted in a ListView...
well.. in case u made it possible to me.. thanks...

Gustavo...

new topic     » topic index » view message » categorize

2. Re: to David Cuny or Derek Parnell from Argentina

I just had a program where I needed this functionality.  First, create
your ListView as an extended control with the following flags:

constant MainLogList = createEx(ListView,{"QSO
#","Callsign","Date","Time",
	 "Band","Freq","Mode","Tx RST","Rx RST","Grid","Name","QTH"},
	 GorWin,10,220,610,170,or_all({LVS_REPORT, LVS_SHOWSELALWAYS}),
	 or_all({LVS_EX_FULLROWSELECT}))

Then, to select the row, simply do this to select:

  setLVItem(MainLogList, LVIF_STATE, rownum, 0, 1, LVIS_SELECTED, 0, 0,
0)

and to deselect:

  setLVItem(MainLogList, LVIF_STATE, rownum, 0, 0, LVIS_SELECTED, 0, 0,
0)

HTH,
Michael J. Sabal
>>> machobus1 at hotmail.com 01/31/03 04:33PM >>>

Hi... I'm Gustavo Bottegoni, from Argentina... i had a problem while i
was 
programming with win32lib...
i'm making a database to my uncle, who sells car parts... well... i was

mading "search" button, so i find the index where the object is
ubicated, 
but... when i try so 'select' it... i can't.. i failed trying...
do u understand what i mean? i try to select it like doing a click,
select 
it and mark it in blue...
i tried with setIndex() but it's not accepted in a ListView...
well.. in case u made it possible to me.. thanks...

Gustavo...



TOPICA - Start your own email discussion group. FREE!

new topic     » goto parent     » topic index » view message » categorize

3. Re: to David Cuny or Derek Parnell from Argentina

----- Original Message ----- 
From: <Sabal.Mike at notations.com>
To: "EUforum" <EUforum at topica.com>
Subject: Re: to David Cuny or Derek Parnell from Argentina


> 
> I just had a program where I needed this functionality.  First, create
> your ListView as an extended control with the following flags:
> 
> constant MainLogList = createEx(ListView,{"QSO
> #","Callsign","Date","Time",
> "Band","Freq","Mode","Tx RST","Rx RST","Grid","Name","QTH"},
> GorWin,10,220,610,170,or_all({LVS_REPORT, LVS_SHOWSELALWAYS}),
> or_all({LVS_EX_FULLROWSELECT}))
> 
[snip]

QSO?

Quasi Stellar Objects?

Oh yes, I see fields like "Band" "Freq" "Mode"

Mmmm interesting. Can you explain?

new topic     » goto parent     » topic index » view message » categorize

4. Re: to David Cuny or Derek Parnell from Argentina

Just a guess, but "Callsign" might suggest Amateur Radio (Ham)?

Dan Moyer


----- Original Message ----- 
From: <jacob at jacob.remcomp.fr>
To: "EUforum" <EUforum at topica.com>
Subject: Re: to David Cuny or Derek Parnell from Argentina


> 
> 
> ----- Original Message ----- 
> From: <Sabal.Mike at notations.com>
> To: "EUforum" <EUforum at topica.com>
> Sent: Friday, January 31, 2003 10:53 PM
> Subject: Re: to David Cuny or Derek Parnell from Argentina
> 
> 
> > I just had a program where I needed this functionality.  First, create
> > your ListView as an extended control with the following flags:
> > 
> > constant MainLogList = createEx(ListView,{"QSO
> > #","Callsign","Date","Time",
> > "Band","Freq","Mode","Tx RST","Rx RST","Grid","Name","QTH"},
> > GorWin,10,220,610,170,or_all({LVS_REPORT, LVS_SHOWSELALWAYS}),
> > or_all({LVS_EX_FULLROWSELECT}))
> > 
> [snip]
> 
> QSO?
> 
> Quasi Stellar Objects?
> 
> Oh yes, I see fields like "Band" "Freq" "Mode"
> 
> Mmmm interesting. Can you explain?
> 
> 
> 
> TOPICA - Start your own email discussion group. FREE!
>

new topic     » goto parent     » topic index » view message » categorize

5. Re: to David Cuny or Derek Parnell from Argentina

>From: Dan Moyer <DANIELMOYER at prodigy.net>
>Subject: Re: to David Cuny or Derek Parnell from Argentina
>
>Just a guess, but "Callsign" might suggest Amateur Radio (Ham)?
>
>Dan Moyer
>
>----- Original Message -----
>From: <jacob at jacob.remcomp.fr>
>To: "EUforum" <EUforum at topica.com>
>Subject: Re: to David Cuny or Derek Parnell from Argentina
>
> >
> > ----- Original Message -----
> > From: <Sabal.Mike at notations.com>
> > To: "EUforum" <EUforum at topica.com>
> > Sent: Friday, January 31, 2003 10:53 PM
> > Subject: Re: to David Cuny or Derek Parnell from Argentina
> >
> >
> > > I just had a program where I needed this functionality.  First, create
> > > your ListView as an extended control with the following flags:
> > >
> > > constant MainLogList = createEx(ListView,{"QSO
> > > #","Callsign","Date","Time",
> > > "Band","Freq","Mode","Tx RST","Rx RST","Grid","Name","QTH"},
> > > GorWin,10,220,610,170,or_all({LVS_REPORT, LVS_SHOWSELALWAYS}),
> > > or_all({LVS_EX_FULLROWSELECT}))
> > >
> > [snip]
> >
> > QSO?

Could mean "Communicate With" as well....

> > Quasi Stellar Objects?
> >
> > Oh yes, I see fields like "Band" "Freq" "Mode"
> >
> > Mmmm interesting. Can you explain?

new topic     » goto parent     » topic index » view message » categorize

6. Re: to David Cuny or Derek Parnell from Argentina

I had no idea this little snippet would cause such a stir <G>.  The
project it came from is the beginning of an amateur radio logging
program.  I used it during the recent VHF Sweepstakes and found only a
few glitches.  There are a number of features that I need to add before
I will release it (currently no reports other than the Cabrillo log) as
ver. 0.1.  Hopefully that will be done before the June sweepstakes.

Mike Sabal, kb3gjt

>>> jacob at jacob.remcomp.fr 01/31/03 05:10PM >>>
QSO?
Mmmm interesting. Can you explain?

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu