fsuorange2 Posted March 1, 2005 Posted March 1, 2005 I have VS.Net and heard that Visual FoxPro is included on one of the installation cds. I tried to find in it on the 1st cd but cannot. Where is it. How do i install Visual FoxPro? Quote
stustarz Posted March 1, 2005 Posted March 1, 2005 Are you sure you dont mean Visual Studio 6 or less, fox pro doesnt have a .NET version (yet!) Quote Visit: VBSourceSeek - The VB.NET sourcecode library "A mere friend will agree with you, but a real friend will argue."
Diesel Posted March 1, 2005 Posted March 1, 2005 Im sorry to tell you, but no one uses FoxPro anymore. Quote
coldfusion244 Posted March 1, 2005 Posted March 1, 2005 Im sorry to tell you' date=' but no one uses FoxPro anymore.[/quote'] What was it used for in the first place? Quote -Sean
fsuorange2 Posted March 1, 2005 Author Posted March 1, 2005 (edited) Im sorry to tell you' date=' but no one uses FoxPro anymore.[/quote'] why? version 9 was just released. Should I get Access or FoxPro? I thought Foxpro was better. Edited March 1, 2005 by fsuorange2 Quote
stustarz Posted March 2, 2005 Posted March 2, 2005 Well foxpro doesnt really compare to access as such, they have two completely different functions. FoxPro is a programming tool, with a native database. Access is just a database, yes - access has VBA, you can program it to a certain extent but its not meant for redistribution or application creation - foxpro was made to allow developers to create applications that use a database without having to contend with external datasources. Unfortunately i dont think it really caught on... If your looking simply to get a database solution, for your use then yeah go with access, for something much much more robust and capable for 'real world' usage then go with SQL Server. In terms of application development then .NET is the way (wouldnt be here if i didnt think this :) ) VB, C#, C++ the choice is yours Quote Visit: VBSourceSeek - The VB.NET sourcecode library "A mere friend will agree with you, but a real friend will argue."
michael_hk Posted March 3, 2005 Posted March 3, 2005 Im sorry to tell you' date=' but no one uses FoxPro anymore.[/quote'] I know many companies, including large insurance companies, still using FoxPro. Quote There is no spoon. <<The Matrix>>
*Experts* Nerseus Posted March 3, 2005 *Experts* Posted March 3, 2005 FoxPro is definitely still in use! But, if you have no requirement to use it and not familiar with it, I would start with Access. If you feel you're not so "junior", mySql or MSDE (harder to setup but more robust than Access) might suit your needs more but Access works for many small projects. SQL Server is always an option, but it's very pricey. There is a free version if you're just writing test code. This doesn't really answer what you want - how to get FoxPro. From what I recall, it came with Visual Studio 6 (mentioned above) but not with .NET. -ner Quote "I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
fsuorange2 Posted March 4, 2005 Author Posted March 4, 2005 i ordered foxpro anyways. from the trial version even though the ui is messed up compared to access it looks more powerful than access. i can't afford sql server so thats why i went with foxpro. can u use msde natively even though it doesn't have a ui? Quote
*Experts* Nerseus Posted March 4, 2005 *Experts* Posted March 4, 2005 If you want to use MSDE, be prepared to read quite a bit of the README that comes with it. Its install is command line based and if you want a secure password or if you want to turn off network support (so people on the internet can't see your copy) and other options, you need to read and set some options. I use MSDE at home for my little projects. I use the Express version of Visual Studio (for C#, still in beta). It has a Server Explorer piece that allows creating database, tables, columns, etc. It works well enough for me but my needs are small. There's also MySql, which is free (I think). I've never tried it, but I know it's fairly popular and well supported - it might be a better alternative to FoxPro as well. I haven't checked recently, but MS does phase out some products. You might check on FoxPro just to make sure you don't spend too much time learning it only to find it's being removed from MS's support. While SQL is mostly the same, every DB engine has slightly different syntax. For example, to get the first 10 rows in SQL Server: SELECT TOP 10 * FROM Table1 In MySql: SELECT * FROM Table1 LIMIT 10 (or something like that) FoxPro probably has its own special syntax... Have fun! -ner Quote "I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
coldfusion244 Posted March 4, 2005 Posted March 4, 2005 MySQL is free, the support though isn't. Here is a link to the online manual FYI http://dev.mysql.com/doc/mysql/en/sorting-rows.html Quote -Sean
michael_hk Posted March 4, 2005 Posted March 4, 2005 MySQL is free, the support though isn't. If you have problems related to MySQL, you can easily get help from the MySQL forums on the net. So you probably don't need support for small issues. Quote There is no spoon. <<The Matrix>>
fsuorange2 Posted March 5, 2005 Author Posted March 5, 2005 i thought if u use MySql for commercial apps (ones you are planning to sell) you had to pay. Is this correct? Quote
michael_hk Posted March 5, 2005 Posted March 5, 2005 i thought if u use MySql for commercial apps (ones you are planning to sell) you had to pay. Is this correct? Yes, if I remember correctly. :) Quote There is no spoon. <<The Matrix>>
pas30339 Posted March 5, 2005 Posted March 5, 2005 I use MSDE at home for my little projects. I use the Express version of Visual Studio (for C#, still in beta). It has a Server Explorer piece that allows creating database, tables, columns, etc. It works well enough for me but my needs are small. What has been your experience in deploying MSDE with your applications? The MSDN documentation gives the impression it's pretty strait forward but I've heard nothing but horror stories from those that have actually done it. I ask because I need to deploy MSDE with an application I am developing and I'm just starting the research on packaging it with the installation. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.