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 SkipVought 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. EricDenDoop

    how to alter Indexes expression using code

    Using such index expressions will slow down your app and your table and index access/updates dramatically. I'd never use it. It does not make an app better.
  2. EricDenDoop

    how to alter Indexes expression using code

    I don't think there is a different way of doing this.
  3. EricDenDoop

    how to alter Indexes expression using code

    Remove the tag and recreate it using the new field: INDEX ON field1 TAG tag1 DELETE TAG tag1 INDEX ON field2 TAG tag1
  4. EricDenDoop

    Print Object for VFP

    There is a VB printer active x control in the download section of www.universalthread.com. This active x control is a subclassed version of the vb printer object that is used in the code that you posted.
  5. EricDenDoop

    Can't select from combo box????

    Can you post some more info? - are there any listitems in the runtime combobox? - is the runtime combobox disabled? - is the runtime combobox readonly? - how is the combobox populated?
  6. EricDenDoop

    How to register a file type and icon with Windows?

    Q: I have written a small word processing program in VFP. I have given the extension ".RST". When I view the .rst files in Windows Explorer, the default Windows icon is displayed. I want my own icon to appear. A: This requires some registry modifications: * load api functions DECLARE...
  7. EricDenDoop

    How can I open a file, using the default application for that file?

    Use the following code to open any (registered) file LOCAL lnRetval, lcFile, lcOperation lcFile = "C:\My Documents\Win32api.doc" * Right click a file in Windows Explorer to see what other * operations are available, for example Print lcOperation = "Open" DECLARE INTEGER ShellExecute...
  8. EricDenDoop

    Outlook Automation

    Hi Mike, Yes the FAQ is indeed about the tool I was refering to. When I posted my message, your message wasn't visible yet. So I think we posted our messages at the same time, otherwise I wouldn't have posted it at all. Eric
  9. EricDenDoop

    Outlook Automation

    If you're talking about the new security features in Outlook 2000 SP2 and Outlook XP, then you might want to look at Redemption: http://www.dimastr.com/redemption/ Redemption allows you to send email and access all the other things you could before all the security patches where applied to...
  10. EricDenDoop

    using getprinter() - if user selects "Cancel" how to know?

    lcPrinterName = GETPRINTER() IF EMPTY(lcPrinterName) * cancelled ELSE ?lcPrinterName ENDIF
  11. EricDenDoop

    Need grid blank upon opening form

    What about not binding the grid to a table when the form loads? Just set grid.recordsource = "".
  12. EricDenDoop

    Class Lib default

    Check the "Template classes" setting on the Forms tab of the VFP Options dialog.
  13. EricDenDoop

    Round corner rectangle

    Hi Mike, I indeed see familiar names on this list. Will try to check this forum on a regular basis, but most of the time, I hang out on the VFP newsgroups on the MS newsservers and our own Forum. Ttyl, Eric
  14. EricDenDoop

    Round corner rectangle

    I have a sample on our web site. You can get it here: http://www.foxite.com/downloads/rounddialog.zip
  15. EricDenDoop

    HOW DO I DISABLE THE START BUTTON OF WINDOWS FROM VFP

    Hi! My code showed up while searching Google for other things. The article in the FAQ section on our web site that discusses the code to show and hide the task bar also discussese a way to remove the start button. Just wanted to share this with you here. Note: you need to reboot Windows to get...

Part and Inventory Search

Back
Top