Code Comments
Programming Forum and web based access to our favorite programming groups.Why does VB generate a FoxPro .frx vild for every one of my VB (6.0) forms? If it is not necessary to have the form, how can I keep the form from being generated? Thank you
Post Follow-up to this message"Wylie C" <WylieC@discussions.microsoft.com> wrote in message news:2ED50658-A9C8-4BAA-8BEB-D93B7261A85E@microsoft.com... > Why does VB generate a FoxPro .frx vild for every one of my VB (6.0) > forms? > If it is not necessary to have the form, how can I keep the form from > being > generated? It's not a FoxPro file; it just happens to have the same extension as a file type that FoxPro uses and FoxPro associated that file type with itself. .FRX in VB is a file that continas binary data associated with a .FRM file. If it's there it's because it NEEDS to be there.
Post Follow-up to this messageOn Thu, 28 Apr 2005 08:52:05 -0700, "Wylie C" <WylieC@discussions.microsoft.com> wrote: >Why does VB generate a FoxPro .frx vild for every one of my VB (6.0) forms? >If it is not necessary to have the form, how can I keep the form from being >generated? > >Thank you That is actually the binary data storage file for each VB form. These files just happen to share the same extension name with Fox files but are not related in any way. They are necessary for their associated VB forms. HTH, Bryan ________________________________________ ____________________ New Vision Software "When the going gets weird," Bryan Stafford "the weird turn pro." alpine_don'tsendspam@mvps.org Hunter S. Thompson - Microsoft MVP-Visual Basic Fear and Loathing in LasVegas
Post Follow-up to this message"Wylie C" <WylieC@discussions.microsoft.com> wrote in message news:2ED50658-A9C8-4BAA-8BEB-D93B7261A85E@microsoft.com > Why does VB generate a FoxPro .frx vild for every one of my VB (6.0) It doesn't. It generates a VB .frx file (form extension) for most forms. > forms? If it is not necessary to have the form, how can I keep the > form from being generated? Don't set any graphical properties (e.g. Icon) or long text values for the form or any control on it (and don't use certain controls that force the frx creation by what they do internally) and you might not get it. The FRX file holds binary and extended text data that can't be conveniently placed in the FRM file. -- Reply to the group so all can participate VB.Net: "Fool me once..."
Post Follow-up to this messageHi Wylie, In FoxPro an FRX file is a report file. In VB it's a VB Binary Form file. Your VB program isn't creating FoxPro files. -- Cindy Winegarden MCSD, Microsoft Visual Foxpro MVP cindy_winegarden@msn.com www.cindywinegarden.com Blog: http://spaces.msn.com/members/cindywinegarden "Wylie C" <WylieC@discussions.microsoft.com> wrote in message news:2ED50658-A9C8-4BAA-8BEB-D93B7261A85E@microsoft.com... > Why does VB generate a FoxPro .frx vild for every one of my VB (6.0) > forms? > If it is not necessary to have the form, how can I keep the form from > being > generated? > > Thank you
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.