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 Mike Lewis 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. DougHennig

    What triggers "Insert Original Install Disk Title" When Running?

    Hi Stanley. Windows Installer (which InstallShield uses) keeps track of which files are installed by an application and if anything gets corrupted or deleted, prompts you to reinstall. While that's useful for some things, most people find that behavior annoying. That's why most of us have move...
  2. DougHennig

    VFP9 Executable problem

    I've seen this happen when Windows Security Essentials or some other anti-virus program is blocking the EXE. Unblock this to prevent this issue. Doug
  3. DougHennig

    Task Pane Manager - updated

    Hi Rob. If you send me the source changes you made (dhennig@stonefield.com, or just show the places where you made the changes here), I'll incorporate them into the XSource source code on VFPX, giving you full credit for the fixes, of course. Doug
  4. DougHennig

    FoxPro Reports vs. Crystal .Net Reports

    Since Dan asked :) ... Yes, we're about to release Stonefield Query Enterprise, a completely rewritten version of Stonefield Query using C#. It includes a converter to convert VFP reports to DevExpress XtraReports (the reporting engine we're using). If you want to check out a live demo, go to...
  5. DougHennig

    MODIFY REPORT - Missing options on Menu

    Hi Andrew. You need to distribute ReportBuilder.app with your application and set _REPORTBUILDER = 'ReportBuilder.app' somewhere in your startup code. Doug
  6. DougHennig

    Install Font Windows 8

    Are you elevating before running this code (i.e. right-clicking the program and choosing Run as Administrator)? If not, I can't see how this code would work in Windows 7 either because you can't write to HKEY_LOCAL_MACHINE in the Windows Registry nor to the Windows folder in the file system...
  7. DougHennig

    Problem with calling function

    Hi Don. I think the problem is that you're using Refresh() rather than Thisform.Refresh(). Refresh() is a function that refreshes the content of a view while Thisform.Refresh() updates the Value property of controls on the form. Doug
  8. DougHennig

    create a report and automatically send via email

    Hi Mark. You can do this in Stonefield Query (www.stonefieldquery.com). It supports emailing reports using a scheduled task, so they can be sent at 3:00 every second day, for example. Doug
  9. DougHennig

    Goldmine reporting software

    You could check out Stonefield Query: http://www.stonefieldquery.com. There's a free trial version that will allow you to see if it'll do what you want. Doug
  10. DougHennig

    print fiancial reports for multiple companies

    Hi Ettienne. What kind of problem did you run into? Doug
  11. DougHennig

    print fiancial reports for multiple companies

    DjangMan -- it depends on what kind of financials you want. SF can do just about any type of report, but some reports are easier to do than others.
  12. DougHennig

    print fiancial reports for multiple companies

    Stonefield Query (http://www.stonefieldquery.com) can also report on multiple companies on the same report.
  13. DougHennig

    FoxPro Lifetime Achievement Award 2012

    The FoxPro Lifetime Achievement Award honors those individuals who have contributed a great deal to the FoxPro community over the years. See http://fox.wikis.com/wc.dll?Wiki~FoxProCommunityLifetimeAchievementAward~VFP for previous award recipients. These recipients wish to continue the award and...
  14. DougHennig

    Financial reporter for more then 1 company

    Stonefield Query can query on as many companies in the same report as you want. http://www.stonefieldquery.com/accpacerp.html. Doug
  15. DougHennig

    How to reset an autoinc field to 0?

    Hi Ulises. Use ALTER TABLE Whatever ALTER COLUMN Whatever I AUTOINC NEXTVALUE 0. Doug
  16. DougHennig

    set filter problem

    What do you mean "set filter without the table"? A filter is on a table so you can't set one without having the table open. Doug
  17. DougHennig

    Help with vfpconnection library

    Are you passing the name of your function in quotes? If not, you need to. It should be something like: HTTPGet(url, file, "MyProgress()") Without the quotes, you're calling MyProgress immediately and those two variables don't exist yet. Doug
  18. DougHennig

    Collect updated executable from my server

    Hi GenDev. Most of the code is pretty straightforward: copying files from one folder to another. The key is using the ShellExecute API function (see http://fox.wikis.com/wc.dll?Wiki~ShellExecute~VFP for the syntax) using "RunAs" for the second parameter to launch the updated EXE so it can be...
  19. DougHennig

    Collect updated executable from my server

    Hey Griff. Yes, unfortunately that's one downside but I don't know how to get around it, other than not letting the updater EXE relaunch the main EXE, which is a pain for the user. Doug
  20. DougHennig

    Collect updated executable from my server

    Here's the process we use in Stonefield Query, which works in all versions of Windows including Vista and 7: - Download the update to a writable folder (eg. user's temp folder) - If Windows Vista or later (check using OS(3)) and the user isn't running the app as administrator (check using...

Part and Inventory Search

Back
Top