Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Collections are cool
Message
From
07/11/2002 02:05:41
 
 
To
06/11/2002 13:47:10
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00719394
Message ID:
00719697
Views:
25
Hi!

Add here MemberClass property, ToolTipText for grid column and header, built-in grid row highlighting and column locking, picture inside of grid header, PicturePosition property to for picture inside of command button, Code References tool, Auto-increment field type, shared connection for both SPT and remote views without real CONNECTION object inside of database and a lot of other very cool changes.

>Yep,
>
>Wait till you play with the event binding and structured error handling. With this stuff we are going to be able to eliminate tons of code and get things to work much better.
>
>Then, we can talk about data access with the CursorAdaptor, this is a sweet class.
>
>BOb
>
>
>>I just have to share my excitement about VFP 8 with everyone ;-) It took me all of 3 minutes to create a working First-In-Last-Out stack using VFP 8. I can already tell that I'm going to hate having to go back to VFP 7 (as much as I like it) because of all the features in VFP 8. The VFP 8 team did a great job with this release.
>>
>>BTW - here's the code:
>>
>>
>>DEFINE CLASS kaFILOStack AS Collection
>>   nMaxDepth = 20
>>
>>   FUNCTION Push(tuItem)
>>      IF This.Count = This.nMaxDepth
>>         This.Remove(1)
>>      ENDIF
>>
>>      This.Add(tuItem)
>>   ENDFUNC
>>
>>   FUNCTION Pop()
>>      LOCAL luItem
>>      luItem = .NULL.
>>
>>      IF This.Count > 0
>>         luItem = This.Item(This.Count)
>>         This.Remove(This.Count)
>>      ENDIF
>>
>>      RETURN luItem
>>   ENDFUNC
>>
>>ENDDEFINE
>>
Vlad Grynchyshyn, Project Manager, MCP
vgryn@yahoo.com
ICQ #10709245
The professional level of programmer could be determined by level of stupidity of his/her bugs

It is not appropriate to say that question is "foolish". There could be only foolish answers. Everybody passed period of time when knows nothing about something.
Previous
Reply
Map
View

Click here to load this message in the networking platform