Index
2012-01-28 17:58Gary Jeurink : gids and views
2012-01-28 18:03Jerry Foote : RE: gids and views
2012-01-28 19:30Dan Covill : Re: gids and views
2012-01-28 21:29Kurt @ VR-FX : Re: gids and views
2012-01-29 13:13Dan Covill : Re: gids and views
2012-01-29 14:26Kurt @ VR-FX : Re: gids and views
2012-01-29 15:21Gary Jeurink : RE: gids and views
2012-01-29 15:23Gary Jeurink : RE: gids and views
2012-01-29 15:28Gary Jeurink : RE: gids and views
2012-01-29 20:00Dan Covill : Re: gids and views
Back to top
gids and views

Author: Gary Jeurink

Posted: 2012-01-28 17:58:29   Link

I know how to switch the contents sort of a grid connected to a table with a

set of buttons using SET ORDER TO but when I'm using a view and I want to

change from one view to another on the same grid is there an easy way other

than another form. Be Kind BECAUSE I'M SELF TAUGHT.

Gary Jeurink

--- StripMime Report -- processed MIME parts ---

multipart/alternative

text/plain (text body -- kept)

text/html

---

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/62499EF06C8A4C5D9C6DEE831080973A@OwnerPC

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Gary Jeurink
Back to top
RE: gids and views

Author: Jerry Foote

Posted: 2012-01-28 18:03:49   Link

Do the views have the same fields?

-----Original Message-----

From: profox-bounces@leafe.com [mailto:profox-bounces@leafe.com] On Behalf

Of Gary Jeurink

Sent: Saturday, January 28, 2012 4:58 PM

To: profox@leafe.com

Subject: gids and views

I know how to switch the contents sort of a grid connected to a table with a

set of buttons using SET ORDER TO but when I'm using a view and I want to

change from one view to another on the same grid is there an easy way other

than another form. Be Kind BECAUSE I'M SELF TAUGHT.

Gary Jeurink

--- StripMime Report -- processed MIME parts ---

multipart/alternative

text/plain (text body -- kept)

text/html

---

[excessive quoting removed by server]

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/C1AE969B70AF4BA5B8EF38F6D0F2349C@jerryfootePC

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Jerry Foote
Back to top
Re: gids and views

Author: Dan Covill

Posted: 2012-01-28 19:30:53   Link

On 01/28/12 14:58, Gary Jeurink wrote:

> I know how to switch the contents sort of a grid connected to a table with a

> set of buttons using SET ORDER TO but when I'm using a view and I want to

> change from one view to another on the same grid is there an easy way other

> than another form. Be Kind BECAUSE I'M SELF TAUGHT.

When you change the source table/cursor/view for a grid, it loses all

its brains in regard to columns, etc. So, before you change, you have

to clear the .ControlSource, make the switch, and then re-set the

.Controlsource afterward.

This, of course, assumes the field/column names are all the same! <g>

Dan

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/4F24933D.3000205@san.rr.com

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Dan Covill
Back to top
Re: gids and views

Author: Kurt @ VR-FX

Posted: 2012-01-28 21:29:50   Link

Or - I think this should work - and the fields are different - you can

specifically change the Control Source on each Grid item. Alternately -

you could have Multiple Grids defined on the Same form - and ONLY show

the grid for the Active View - and hide the other Grid(s).

Regards,

Kurt

On 1/28/2012 7:30 PM, Dan Covill wrote:

> On 01/28/12 14:58, Gary Jeurink wrote:

>> I know how to switch the contents sort of a grid connected to a table with a

>> set of buttons using SET ORDER TO but when I'm using a view and I want to

>> change from one view to another on the same grid is there an easy way other

>> than another form. Be Kind BECAUSE I'M SELF TAUGHT.

> When you change the source table/cursor/view for a grid, it loses all

> its brains in regard to columns, etc. So, before you change, you have

> to clear the .ControlSource, make the switch, and then re-set the

> .Controlsource afterward.

>

> This, of course, assumes the field/column names are all the same!<g>

>

> Dan

>

[excessive quoting removed by server]

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/4F24AF1E.5030609@optonline.net

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Kurt @ VR-FX
Back to top
Re: gids and views

Author: Dan Covill

Posted: 2012-01-29 13:13:06   Link

But, if the fields are different, then you will probably need to change

the field widths as well, not to mention the column headings!

I would consider setting up separate grid objects, each one tuned to the

structure to be displayed, and then select the appropriate one by

setting the .Visible attribute.

Dan

On 01/28/12 18:29, Kurt @ VR-FX wrote:

> Or - I think this should work - and the fields are different - you can

> specifically change the Control Source on each Grid item. Alternately -

> you could have Multiple Grids defined on the Same form - and ONLY show

> the grid for the Active View - and hide the other Grid(s).

>

> Regards,

> Kurt

>

>

> On 1/28/2012 7:30 PM, Dan Covill wrote:

>> On 01/28/12 14:58, Gary Jeurink wrote:

>>> I know how to switch the contents sort of a grid connected to a table with a

>>> set of buttons using SET ORDER TO but when I'm using a view and I want to

>>> change from one view to another on the same grid is there an easy way other

>>> than another form. Be Kind BECAUSE I'M SELF TAUGHT.

>> When you change the source table/cursor/view for a grid, it loses all

>> its brains in regard to columns, etc. So, before you change, you have

>> to clear the .ControlSource, make the switch, and then re-set the

>> .Controlsource afterward.

>>

>> This, of course, assumes the field/column names are all the same!<g>

>>

>> Dan

>>

[excessive quoting removed by server]

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/4F258C32.2000302@san.rr.com

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Dan Covill
Back to top
Re: gids and views

Author: Kurt @ VR-FX

Posted: 2012-01-29 14:26:13   Link

Hey - wait - Dan - isn't that what I just said in my "Alternately"

labeled statement of my reply?

HAH - Snagged my idea and relabeled it your own! That's OK - my Boss

does that at work in a Very Underhanded way - All the time - and to

Everyone - so, I'm kinda used to it. But, hey - no problem - I'm just

bustin chops... <g>

-K-

On 1/29/2012 1:13 PM, Dan Covill wrote:

> But, if the fields are different, then you will probably need to change

> the field widths as well, not to mention the column headings!

> I would consider setting up separate grid objects, each one tuned to the

> structure to be displayed, and then select the appropriate one by

> setting the .Visible attribute.

>

> Dan

>

>

> On 01/28/12 18:29, Kurt @ VR-FX wrote:

>> Or - I think this should work - and the fields are different - you can

>> specifically change the Control Source on each Grid item. Alternately -

>> you could have Multiple Grids defined on the Same form - and ONLY show

>> the grid for the Active View - and hide the other Grid(s).

>>

>> Regards,

>> Kurt

>>

>>

>> On 1/28/2012 7:30 PM, Dan Covill wrote:

>>> On 01/28/12 14:58, Gary Jeurink wrote:

>>>> I know how to switch the contents sort of a grid connected to a table with a

>>>> set of buttons using SET ORDER TO but when I'm using a view and I want to

>>>> change from one view to another on the same grid is there an easy way other

>>>> than another form. Be Kind BECAUSE I'M SELF TAUGHT.

>>> When you change the source table/cursor/view for a grid, it loses all

>>> its brains in regard to columns, etc. So, before you change, you have

>>> to clear the .ControlSource, make the switch, and then re-set the

>>> .Controlsource afterward.

>>>

>>> This, of course, assumes the field/column names are all the same!<g>

>>>

>>> Dan

>>>

[excessive quoting removed by server]

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/4F259D55.8040303@optonline.net

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Kurt @ VR-FX
Back to top
RE: gids and views

Author: Gary Jeurink

Posted: 2012-01-29 15:21:47   Link

yes

It is a media database ... movies... I stepped up in normalization since I

had multiple copies of things. Now with instances as a separate table, I

have to use a view to list them. My 600 dvd player is loaded as I acquired

[randomly] them so the views fields are the same but sorted differently.

I can call up loaded dvd's to play from a menu and I hope to be able to

stream from a media hard drive also.

View 1 .. movies listed by type-location [dvds, vhs]

View 2 .. movies listed by title..associated with movNo

[table1 .. title/cast/info/pic-no]

[table2 .. media-type/location]

-----Original Message-----

From: Jerry Foote [mailto:jerryf@footegroup.com]

Sent: Saturday, January 28, 2012 5:04 PM

To: 'ProFox Email List'

Subject: RE: gids and views

Do the views have the same fields?

-----Original Message-----

From: profox-bounces@leafe.com [mailto:profox-bounces@leafe.com] On Behalf

Of Gary Jeurink

Sent: Saturday, January 28, 2012 4:58 PM

To: profox@leafe.com

Subject: gids and views

I know how to switch the contents sort of a grid connected to a table with a

set of buttons using SET ORDER TO but when I'm using a view and I want to

change from one view to another on the same grid is there an easy way other

than another form. Be Kind BECAUSE I'M SELF TAUGHT.

Gary Jeurink

--- StripMime Report -- processed MIME parts ---

multipart/alternative

text/plain (text body -- kept)

text/html

---

[excessive quoting removed by server]

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/3DCF19EACC7342CD963ED4654305818C@OwnerPC

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Gary Jeurink
Back to top
RE: gids and views

Author: Gary Jeurink

Posted: 2012-01-29 15:23:59   Link

That's what I hope to do. The views are identical but sorted differently.

-----Original Message-----

From: Dan Covill [mailto:dcovill@san.rr.com]

Sent: Saturday, January 28, 2012 6:31 PM

To: ProFox Email List

Subject: Re: gids and views

On 01/28/12 14:58, Gary Jeurink wrote:

> I know how to switch the contents sort of a grid connected to a table with

a

> set of buttons using SET ORDER TO but when I'm using a view and I want to

> change from one view to another on the same grid is there an easy way

other

> than another form. Be Kind BECAUSE I'M SELF TAUGHT.

When you change the source table/cursor/view for a grid, it loses all

its brains in regard to columns, etc. So, before you change, you have

to clear the .ControlSource, make the switch, and then re-set the

.Controlsource afterward.

This, of course, assumes the field/column names are all the same! <g>

Dan

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/2E4DBA75FAA0499A91A18B1D027FC8A0@OwnerPC

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Gary Jeurink
Back to top
RE: gids and views

Author: Gary Jeurink

Posted: 2012-01-29 15:28:30   Link

Does that mean put both views on but hide one and just show the active view.

That is a cool solution. [there is only 2-sorts] Sounds messy but I could

play with it

-----Original Message-----

From: Kurt @ VR-FX [mailto:vrfx@optonline.net]

Sent: Saturday, January 28, 2012 8:30 PM

To: profox@leafe.com

Subject: Re: gids and views

Or - I think this should work - and the fields are different - you can

specifically change the Control Source on each Grid item. Alternately -

you could have Multiple Grids defined on the Same form - and ONLY show

the grid for the Active View - and hide the other Grid(s).

Regards,

Kurt

On 1/28/2012 7:30 PM, Dan Covill wrote:

> On 01/28/12 14:58, Gary Jeurink wrote:

>> I know how to switch the contents sort of a grid connected to a table

with a

>> set of buttons using SET ORDER TO but when I'm using a view and I want

to

>> change from one view to another on the same grid is there an easy way

other

>> than another form. Be Kind BECAUSE I'M SELF TAUGHT.

> When you change the source table/cursor/view for a grid, it loses all

> its brains in regard to columns, etc. So, before you change, you have

> to clear the .ControlSource, make the switch, and then re-set the

> .Controlsource afterward.

>

> This, of course, assumes the field/column names are all the same!<g>

>

> Dan

>

[excessive quoting removed by server]

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/E9F1626DF86346EC87D433A252E4A371@OwnerPC

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Gary Jeurink
Back to top
Re: gids and views

Author: Dan Covill

Posted: 2012-01-29 20:00:18   Link

Kurt:\

Didn't see yours until after I sent mine. I agree, same idea. Great

minds run in the same channels. <g>

Dan

On 01/29/12 11:26, Kurt @ VR-FX wrote:

> Hey - wait - Dan - isn't that what I just said in my "Alternately"

> labeled statement of my reply?

_______________________________________________

Post Messages to: ProFox@leafe.com

Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

Searchable Archive: http://leafe.com/archives/search/profox

This message: http://leafe.com/archives/byMID/profox/4F25EBA2.5010805@san.rr.com

** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

©2012 Dan Covill