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. DanWalter

    Outlook custom form not going to Sent Items

    kjv1611, Adding a rule won't work in this spec - there are far too many users. I'm just thinking I must have something configured incorrectly in the form, but for the life of me I can't find it. The documentation for Outlook development is lacking, sadly. Dan Dan Walter try { succeed(); }...
  2. DanWalter

    Outlook custom form not going to Sent Items

    No, the email is being sent by clicking on the Send button in the ribbon. The item type is Note, so it responds to the ribbon. Thanks, Dan Dan Walter try { succeed(); } catch(E) { tryAgain(); } finally { rtfm(); }
  3. DanWalter

    Outlook custom form not going to Sent Items

    Hi there, I have an Outlook 2007 custom form used to capture some data and a message. It is of the type "Note" and sends the form as an email item. However, the form as sent does not show up in the "Sent Items" folder for the user. How do I make sure the email message goes to the "Sent Items"...
  4. DanWalter

    Can I expose C# dll functions to IntelliSense in VFP 9?

    Dear Cetin Basoz: Thanks so much for the tip - that rocks! [thumbsup] Because my application was marked for COM Interop, the [ComVisible(true)] attribute was true by default. Removing that attribute did no harm at all, and the code worked great! Now I have an Intellisense-d DLL available to...
  5. DanWalter

    Can I expose C# dll functions to IntelliSense in VFP 9?

    Hi All: I have developed a C# (VS 2008 class library project) DLL. This DLL is registered for COM Interop and is COM visible. I can consume the DLL in VFP 9 using the CreateObject command, then invoking the methods in the DLL. However, the DLL is not exposed to VFP IntelliSense. I get...
  6. DanWalter

    Find a folder

    Paul: I have just written a recursive function to fill an array with all subfolders of a given path (e.g. C:\). The initial ideas came from the FoxWiki forum site (http://fox.wikis.com/wc.dll?Wiki~). * Remove *~ * to use this code! * Recurse.prg, DW 12/20/2006, based on ideas from FoxWiki...
  7. DanWalter

    Invalid path or filename before EXE executes

    Thanks for all the helpful suggestions. The customer has "bailed" - he will install on a different machine. Personally, I suspect something corrupt in his registry. But now, we'll never know! Dan Dan Walter Daniel.Walter@uvm.edu try { succeed(); } catch(E) { tryAgain(); } finally { rtfm(); }
  8. DanWalter

    Invalid path or filename before EXE executes

    Subject: Invalid path or filename BEFORE executable gets under way Hello: I have a real poser on my hands. A customer is getting a Windows dialog of "Invalid path or filename" when trying to run any VFP 7 exe that we ship him. There are at least 3 separate programs that we've tried. He...
  9. DanWalter

    Maximum length of cookie text

    Thanks, folks. I thought it may have been browser or IIS setup specific. I will look into sessions as an alternative - the web is always changing and no doubt we will be updating the site sooner rather than later. Dan Dan Walter Daniel.Walter@uvm.edu try { succeed(); } catch(E) { tryAgain()...
  10. DanWalter

    Maximum length of cookie text

    Hello: In my app, cookies are used to transfer large blocks of text (user comments) from one page to another. I am running across a problem trying to find the smallest maximum number of characters allowed: a) in a sql db field b) in an html variable c) in a cookie. I'm finding that the size of...
  11. DanWalter

    Examining my variable nulls it

    Hello: There must be something I don't understand about the timing or order of parsing the javascript code and merging it back with the static HTML. I have a variable that is declared and filled in the server side code, before the HTML declarations begin. A little while down the HTML page, I...
  12. DanWalter

    ActiveX viewer skews A4 reports

    Hi: I'm distributing CR 10.0 reports. These reports contain some text boxes. The problem is that when the report is viewed in the ActiveX viewer, some of the text boxes shift position. If the report is sent straight to the printer, it prints fine. When the report is viewed in CR, it looks...
  13. DanWalter

    PEMs of AcroExch.AVDoc / AcroExch.App

    Hi: Can someone point me to a reference of the properties, events, and methods of the AcroExch.AVDoc and .App? I can get as far as creating the objects and opening documents, but that's not quite far enough. I'm trying to programatically emulate the user interface function of creating a new...
  14. DanWalter

    Missing bars on graphs - French Windows

    Hi: A Quebec customer is running French XP workstations connected to a Win 2003 server. I don't know if the specific network type (traditional LAN or Citrix, e.g.) Workstations are connected to network printers. Our reports contain bar graphs. On his workstations, the bars do not appear...
  15. DanWalter

    Calling a VFP 6 dll from Visual Basic

    Graham: It seems you are missing a runtime file that is required by your dll. Try compiling the dll as an exe and noting if additional runtime files are added. Though I can't bring the specifics to mind right at the moment, I had a similar problem. My dll was creating an object, and in doing...
  16. DanWalter

    8.5 v. 10.0 RDC wars!

    Hi all: Our app ships with both 8.5 and 10.0 Crystal reports, and two custom dll's to fill them with fresh data. We started with 8.5 only, but then started getting customer reports of conflicts with other apps that used 10.0 components. So we added the dual version support. We install...
  17. DanWalter

    Select INTO Cursor opens table with alias

    Mike, Okay, I'll call NOFILTER a feature that overrides an undocumented default behavior, at least in my own head. And yes, READWRITE gives the same result, a true cursor (I just ran a quick test to check it). My take on it is that these two keywords (NOFILTER and READWRITE) directly address...
  18. DanWalter

    Select INTO Cursor opens table with alias

    Tamar: That (NOFILTER) was the workaround I found by piecing together research from this forum and the MSDN site. READWRITE would also do the trick. I hadn't run across this problem before (in 14+ years with Fox!) because all my other SELECTs have been either too complex for the Rushmore...
  19. DanWalter

    Select INTO Cursor opens table with alias

    Mike: The problem is that selecting into a cursor lets me be lazy - I close the form and the cursor is closed and the underlying table is deleted. When VFP "helps" me (a MS trend that makes me nuts in other apps, especially Word) - the filtered view of the table is not closed, and the table is...
  20. DanWalter

    Select INTO Cursor opens table with alias

    Hi: I have worked around this problem, but I'm curious why it happens. This is in VFP 7. When this code is run, there are 46 work areas used in the form's datasession. SELECT var1, var2 FROM mytable INTO CURSOR myCursor The result is area 47 is now the table mytable with the alias...

Part and Inventory Search

Back
Top