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 Chris Miller 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: *

  • Users: Apata
  • Order by date
  1. Apata

    Passing quoted literal string to a program from a variable

    Thanks, I got it. It didn't work for me at first because I needed to put the curly quotes instead of the straight quote, which is not easily detectable in a VFP window.
  2. Apata

    Passing quoted literal string to a program from a variable

    Thanks so much guys. Those have been very helpful. What about in transposing a quote in a memo. For example, turning the underlined: "This is an example". to: "This is an example."
  3. Apata

    Passing quoted literal string to a program from a variable

    Hi all: I checked out thread184-1005051 which has a lot of useful information for this problem but I still couldn't find a solution. I am running a program within VFP that needs a literal string with quotation marks sent to it. Like "This is a test". For example, this code works: RUN /N2...
  4. Apata

    Getting TTS Voices in a Combo or Listbox

    Got it! *PUBLIC objVoice objVoice = CreateObject("SAPI.SpVoice") n=0 FOR i=1 TO objVoice.GetVoices.Count && Total of voices installed WAIT WINDOW objVoice.GetVoices().Item(n).GetDescription n=n+1 ENDFOR
  5. Apata

    Copying Formatted Browser Content to Word Pad

    I would like to copy the content of a web browser on my form with the formatting intact. Using Mikes helpful FAQ, I can copy the content to an editbox, but the formatting is lost. Is it possible to dump the formatted content on Wordpad and let Wordpad have focus?
  6. Apata

    Getting TTS Voices in a Combo or Listbox

    Hi: How can I get all the TTS voices installed on a computer into a combobox or listbox and then set the voice to be used to the one selected from the list? Thanks for your help.
  7. Apata

    Error Using ShellExecute to print

    Thanks again Mike. I'll try. But if anyone has a solution from experience or knows how to tweak this quickly, please let me know.
  8. Apata

    Error Using ShellExecute to print

    Thanks again Mike: I found this link: http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q267240. I don't know C++. I wonder if there's a way to port this to VFP code. Regards.
  9. Apata

    Error Using ShellExecute to print

    Thanks very much Mike. This works great! It eliminates the flickering effect of the Shellexecute print command. It also puts header and footer information, including the document name. Is there a way to change the header/footer information to something different or to eliminate part of the...
  10. Apata

    Error Using ShellExecute to print

    Thanks again Mike. I found the cause. It's a macro problem. Deleting the macro fixed the problem. See this link: http://www.traction-software.co.uk/batchprint/KB/KB0015.html. But is there a way to directly print from the ActiveX Web control on a form?
  11. Apata

    Error Using ShellExecute to print

    Thanks Mike. I'm using the new Internet Explorer 7.0. Since there are many browsers out there, how should I ensure that the code would not break on the user's machine? Is there a workaround?
  12. Apata

    Error Using ShellExecute to print

    I am trying to use ShellExecute to print a html file using the following code: DECLARE INTEGER ShellExecute IN shell32.dll ; INTEGER hndWin, STRING cAction, STRING cFileName, ; STRING cParams, STRING cDir, INTEGER nShowWin =ShellExecute(0,"PRINT","c:\Test.htm","","",1) But I am getting...
  13. Apata

    Combobox like Google's?

    Thanks guys! I appreciate all your help. Have been away for the Christmas and New Year break. Wishing you all a wonderful New Year! Apata
  14. Apata

    Combobox like Google's?

    Hi, Mike. I was referring to the search combo box on the Google Toolbar. I am trying to get the incremental search on a field containing names. How would I use your suggestion with the textbox and how would it open up with more names matching what's typed? Thanks.
  15. Apata

    Combobox like Google's?

    Hi: I would like to make a Combobox like Google's, using VFP 9. I want the Combobox to do the following: 1. Open up after the first character is typed, but not before, and stay open until done. 2. Do an incremental search on the string as more characters are typed. 3. Resize the width of the...
  16. Apata

    How to use GDI to draw in VFP

    Thanks, Bill.
  17. Apata

    How to use GDI to draw in VFP

    Hi all: I have a need to load an image file and have the user manipulate it by drawing and coloring on it. Is this possible with GDI and FVP? Thanks.
  18. Apata

    Getting Variable from VFP's Browser Control

    Mike, what can I say? Thanks! Apata
  19. Apata

    Getting Variable from VFP's Browser Control

    I am using a VFP form. I placed the browser control on the form and an HTML page is loaded. On the HTML a reference is entered like this: <a href="001">Pumsic Company</a><br> But when I did a Wait window command on the hyperlink Pumsic Company, it returned: C:\VFP Browser Test\001. This is...
  20. Apata

    Getting Variable from VFP's Browser Control

    Mike, the trapping seems to works fine. However, when I click on a link and do a wait window on its URL, it shows the URL as the file directory where the form is contained. Is there a way to get to the URL itself? Thanks. Apata

Part and Inventory Search

Back
Top