Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. DEDMOD

    VFP 7.0 -vs- SQL 2000

    The big thing you'll have to do is change your program so that it accesses all the data via views rather than directly. This will allow you to access the SQL data just as though it's a VFP database (with a few problems due to differences in how SQL Server and VFP treat some data types). I'd...
  2. DEDMOD

    Developing Database using SQL 7 whith VFP 7

    I'd say it's best to start with VFP, but you need to plan for the upgrade by making all your data connections via local views so that you don't need to change the code when you upsize. Of course if it's just for in-house use and you've already got a data server available for exclusive use then...
  3. DEDMOD

    Pasting into Outlook for Mailing

    I might add that while you might not care particularly for VB for programming, it's not all that hard to learn enough of it to be able to translate from VB into VFP, with the added advantage that if someone has a VB program which isn't doing working properly, you can offer to change it into a...
  4. DEDMOD

    Cannot display correct font under window XP

    Unfortunately I haven't had to use fonts for foreign languages, but I'm a bit confused by your question. Where are you trying to 'key in'? If you place a text box, for instance, on a form in FoxPro try placing this code in INIT method of the form: thisform.MyTextBox.FontName =...
  5. DEDMOD

    How to program foxpro to be frontend module for IBM PCOMM?

    Well, I know nothing about PCOMM, but a quick perusal of the IBM blurbs on the package indicates it can be used with VB automation, so I'd find an example of how to use it with VB, post the sample here and someone can probably tell you how to translate that into VFP. Or you might be able to get...
  6. DEDMOD

    Updating 'Remote View' to Access table

    Are you talking about the drivers themselves or the connection. I'd assume you could delete the driver from your system and then reinstall it from whatever disks your MS Access came from or from the MS website. I admit I haven't had to do so. Contrawise, if it's the connection which is...
  7. DEDMOD

    Updating 'Remote View' to Access table

    Have you checked all the fields you want updated in the Update Criteria tab in the view? And did you remember to check the send SQL checkbox? And what sort of buffering, if any, do you have (I'm not sure what the default might be when browsing). Dave Dardinger
  8. DEDMOD

    Visual FoxPro ODBC Stop Working???

    The simpliest way is just to try creating a remote view using the DSN. Open up a database in a project manager (project doesn't matter) and click Remote view / new and then select Available Data Sources Find your DSN and select it. If things are working as they should, the tables in the...
  9. DEDMOD

    Visual FoxPro ODBC Stop Working???

    Have you checked the VFP database itself to make sure it's ok? That is, did you go to the server (or have someone go to the server if it's not close by) and actually open it an make sure the data, indexes, etc. are ok? It seems unlikely you haven't, but I don't see you've actually said so...
  10. DEDMOD

    Email

    Well, that's a nice simple message producing code. But can you also send the message without having the have the user click the 'send button'? IOW something like: ShellExecute(0,"send",lcMail,"","",0) That is, where do I find the details of the ShellExecute...
  11. DEDMOD

    Please let me know how to use: Vis

    Well looking in the help file (VBAWD10.chm) under "What's New for Microsoft Word 2002 Developers" they say: "Extensive changes have been made to the Microsoft Word 2002 Visual Basic object model to support new and improved features in the application. "Visit the Office...
  12. DEDMOD

    Outlook Global Address Books

    Well, it looks like CompanyName property is associated with a ContactItem object which you can create, for instance with: myOlApp = CreateObject("Outlook.Application") myItem = myOlApp.CreateItem(olContactItem) For phone number there are several possibilities including...
  13. DEDMOD

    Server - Client Side

    Here's what I'd do. At each local server produce a preliminary record number where the preliminary record number is like '040017736' telling the local server that this isn't a permanent record number and so don't do anything with it. When the master server gets the record it will know that on...
  14. DEDMOD

    How come I am suddenly on the Top Experts list...

    I might add that from my observation recent Stars count for more than the total number of stars. This makes sense since if someone was a big expert for a while but has been gone for a year, it makes no sense to show him as a top expert. I've made the list a couple of times when I've got 2-3...
  15. DEDMOD

    Button Commands

    Actually you should create your own navigation bar as a class and use it whenever you need one. Of course there are navigation classes available in the samples which come with VFP, and they should be consulted as to how to code them, but they tend to have a lot of stuff you don't need or want...
  16. DEDMOD

    How to distinguish between a single form and a formset

    I'm not certain, but you may be trying to add a form in the Form Designer and as you say this requires a form set. but you don't have to have a form set in order to have more than one form, you just need to do a DO FORM formb... from within your form or a program. In the development...
  17. DEDMOD

    Run a method in design time

    I think there are some third party programs to do that, but you could write a program to do it if you wanted. The objects in your forms are stored in the form table and you could create a program to search for each object and change the requisite values by whatever % you want. Seems to me...
  18. DEDMOD

    VFP 7.0 license restriction for distribution

    Why not set up a website or helpline where the customer enters a customer ID number and his computer #, or the date or whatever you think will work and after checking that he has installs remaining, you calculate a key which he can use with whatever you've selected to unlock the software? The...
  19. DEDMOD

    How can I innsert a record in the middle of other records?

    If you're just making repairs, why not shut off the buffering while doing it? Dave Dardinger
  20. DEDMOD

    Grid Click Event problem

    Have you tried playing with putting dodefault() after your code in the refresh and or the click events, just to see what happens? Otherwise all I can suggest is to a) post some code for us to look at, b) copy your code somewhere and start over either from your base classes or your subclass, c)...

Part and Inventory Search

Back
Top