Re: Change list values in a listbow coloumn

2020-08-04 Thread Chip Scheide via 4D_Tech
Michael,
I have visited the new forum.
I have not moved there...
I have been told - but - have not idea of the functionality - that it is 
possible to at least receive forum posts via email. I would hope that it is 
also possible to send them.

Chip
> As Kirk pointed out the 4D Forum is another great resource. It has 
> convenient search and tag features, but the thing I miss is there 
> doesn’t appear to be a way to download the posts or the archive. On 
> the other hand, email clients allow you to view all of the Nug posts 
> offline. I supplement that with my own 4D email client that has 
> enhanced search features. I have over 13,000. To keep me in the loop, 
> please post both places. 
> 
> Michael Ferguson
> 
> 
> 
>> On Aug 3, 2020, at 8:28 AM, Kirk Brooks via 4D_Tech 
>> <4d_tech@lists.4d.com> wrote:
>> 
>> Ferdinando,
>>> a list when the mouse enter in every row
>> 
>> First, do you want:
>> a- the list to automatically popup when the user enters the row
>> b- the list to popup when the user right clicks on the row
>> 
>> 'a' is going to be harder to do. Start with enabling the On mouse enter and
>> On mouse exit form events on the listbox. This will tell you when the user
>> is inside the listbox. To determine what row the mouse is over you will
>> need to determine by from the mouse position, listbox object coordinates,
>> listbox scroll position... this will be a bit of work but once you figure
>> it out will be fast enough.
>> 'b' is easy - just test for Contextual Click in the listbox.
>> 
>> Now you need to make the list. I use popup menus for this sort of thing.
>> Either the Pop up menu command (for simple lists) or build a menu on the
>> fly and show with Dynamic pop up menu. Both are very fast and give you
>> complete control over what you display.
>> 
>> BTW - the Forum is a much better place for these sorts of questions these
>> days.
>> 
>> 
>> On Fri, Jul 31, 2020 at 6:14 AM stardata.info via 4D_Tech <
>> 4d_tech@lists.4d.com> wrote:
>> 
>>> Hi All,
>>> 
>>> In one column of Listbox, I need to give a list of values to enter value
>>> of the column.
>>> 
>>> The values contained in a list can be different for every row.
>>> 
>>> How can I prepare a list when the mouse enters in every row?
>>> 
>>> Thanks
>>> Ferdinando
>>> 
>>> **
>>> 4D Internet Users Group (4D iNUG)
>>> New Forum: https://discuss.4D.com
>>> Archive:  http://lists.4d.com/archives.html
>>> Options: https://lists.4d.com/mailman/options/4d_tech
>>> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
>>> **
>> 

Hell is other people 
 Jean-Paul Sartre
**
4D Internet Users Group (4D iNUG)
New Forum: https://discuss.4D.com
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: iNug archives are available at the 4D Knowledgebase

2020-08-04 Thread mferguson--- via 4D_Tech
Thanks Kirk, I use KB a lot, but missed the KB archive of Nug postings. I’ll be 
checking it out to see if I can download anything I’m missing. :)

Michael
> On Aug 4, 2020, at 1:23 PM, Kirk Brooks via 4D_Tech <4d_tech@lists.4d.com> 
> wrote:
> 
> A lot of us have built our own database of postings here. My own is in this
> gmail account and stretches back to 2006. However, you can also search even
> further back at the KB;  https://kb.4d.com/
> 
> Note the sidebar on the right: Knowledge Base Articles/iNug Messages.
> 
> -- 
> Kirk Brooks
> San Francisco, CA
> ==
> **
> 4D Internet Users Group (4D iNUG)
> New Forum: https://discuss.4D.com
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **

**
4D Internet Users Group (4D iNUG)
New Forum: https://discuss.4D.com
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

[OFF] Premise wiring, who's the Mac-Daddy?

2020-08-04 Thread Robert ListMail via 4D_Tech
What premise wiring products fro CAT-6 or better? Back in the 90s I used 
Hubbell Premise Wiring and it was definitely a premium experience. Now it looks 
like the Belden RevConnect system is the new Hubbell. What jacks/Mod-plug 
manufacturers do you prefer? Have you used RevConnect?

Thanks,

R
**
4D Internet Users Group (4D iNUG)
New Forum: https://discuss.4D.com
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

iNug archives are available at the 4D Knowledgebase

2020-08-04 Thread Kirk Brooks via 4D_Tech
A lot of us have built our own database of postings here. My own is in this
gmail account and stretches back to 2006. However, you can also search even
further back at the KB;  https://kb.4d.com/

Note the sidebar on the right: Knowledge Base Articles/iNug Messages.

-- 
Kirk Brooks
San Francisco, CA
==
**
4D Internet Users Group (4D iNUG)
New Forum: https://discuss.4D.com
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Change list values in a listbow coloumn

2020-08-04 Thread mferguson--- via 4D_Tech
As Kirk pointed out the 4D Forum is another great resource. It has convenient 
search and tag features, but the thing I miss is there doesn’t appear to be a 
way to download the posts or the archive. On the other hand, email clients 
allow you to view all of the Nug posts offline. I supplement that with my own 
4D email client that has enhanced search features. I have over 13,000. To keep 
me in the loop, please post both places. 

Michael Ferguson



> On Aug 3, 2020, at 8:28 AM, Kirk Brooks via 4D_Tech <4d_tech@lists.4d.com> 
> wrote:
> 
> Ferdinando,
>> a list when the mouse enter in every row
> 
> First, do you want:
> a- the list to automatically popup when the user enters the row
> b- the list to popup when the user right clicks on the row
> 
> 'a' is going to be harder to do. Start with enabling the On mouse enter and
> On mouse exit form events on the listbox. This will tell you when the user
> is inside the listbox. To determine what row the mouse is over you will
> need to determine by from the mouse position, listbox object coordinates,
> listbox scroll position... this will be a bit of work but once you figure
> it out will be fast enough.
> 'b' is easy - just test for Contextual Click in the listbox.
> 
> Now you need to make the list. I use popup menus for this sort of thing.
> Either the Pop up menu command (for simple lists) or build a menu on the
> fly and show with Dynamic pop up menu. Both are very fast and give you
> complete control over what you display.
> 
> BTW - the Forum is a much better place for these sorts of questions these
> days.
> 
> 
> On Fri, Jul 31, 2020 at 6:14 AM stardata.info via 4D_Tech <
> 4d_tech@lists.4d.com> wrote:
> 
>> Hi All,
>> 
>> In one column of Listbox, I need to give a list of values to enter value
>> of the column.
>> 
>> The values contained in a list can be different for every row.
>> 
>> How can I prepare a list when the mouse enters in every row?
>> 
>> Thanks
>> Ferdinando
>> 
>> **
>> 4D Internet Users Group (4D iNUG)
>> New Forum: https://discuss.4D.com
>> Archive:  http://lists.4d.com/archives.html
>> Options: https://lists.4d.com/mailman/options/4d_tech
>> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
>> **
> 
> 
> 
> -- 
> Kirk Brooks
> San Francisco, CA
> ==
> **
> 4D Internet Users Group (4D iNUG)
> New Forum: https://discuss.4D.com
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **

**
4D Internet Users Group (4D iNUG)
New Forum: https://discuss.4D.com
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**