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

  • Users: Ris1
  • Order by date
  1. Ris1

    Using Google API for transliteration in VFP

    I don't know what is happening but what I observed is- I have dropped Microsoft Form 2.0 Textbox on the form and in the form's init event added this - SYS(3101,65001) Now, When I start typing with Devnagri Inscript keyboard, it displays ? mark(With google IME it displays in hindi fonts). When...
  2. Ris1

    Using Google API for transliteration in VFP

    Yes, I found Microsoft Textbox 2.0 which displays Hindi text in unicode . I have declared 2 settings sys(987,.F.) sys(3101,65001) But it is accepting input from Google input tools only and Inscript keyboard is displaying ?? mark . Is some other setting are required for that.
  3. Ris1

    Using Google API for transliteration in VFP

    Text written in Hindi language in HTML textbox is in Unicode and as VFP doesn't support unicode, it gets replaced with ?? in VFP. Is there any way to get data. I have written a manual transliteration program which converts english words into Hindi but It is not that efficient . I searched...
  4. Ris1

    Using Google API for transliteration in VFP

    Sorry, I think file was not uploaded in previous posthttps://files.engineering.com/getfile.aspx?folder=b90b8c2c-1651-4c43-8445-19cd1bcc7b5f&file=hello.html
  5. Ris1

    Using Google API for transliteration in VFP

    I have found 1 link to run java Script from VFP https://www.tek-tips.com/faqs.cfm?fid=4257 . Also in References tab of https://developers.google.com/transliterate/v1/getting_started , it is stated in the first line that So will it be now possible to correlate 2 links and get string in json...
  6. Ris1

    Using Google API for transliteration in VFP

    Yes, It is working fine in web browser . Code which I have written in the .html file is below <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <script type="text/javascript" src="https://www.google.com/jsapi"> </script> <script type="text/javascript"> // Load...
  7. Ris1

    Using Google API for transliteration in VFP

    Yes, transliteration is different from translation. I want transliteration as I want Name and Address typed in English in another language. If I use Web Browser, then how will I get the transliterated text as string which I could save in database ?
  8. Ris1

    Using Google API for transliteration in VFP

    I want to use google API which transliterate from 1 language into another. Below is the link which describes about using API. But uses HTML and Java Script as explained in Example. https://developers.google.com/transliterate/v1/getting_started I want to use this API in VFP form so that user...
  9. Ris1

    Oracle migration in combination with VFP tables

    I have some tables which are specific to user and are required on each and every form say for ex. last entered value in textbox is saved user wise. So I have to update/read oracle table on every lostfocus/gotfocus of textbox. Also there are many specific setting to show data user wise. Which...
  10. Ris1

    '?' Operator in SqlExec() function not working

    I got where the problem was. When I was using test prg I was using SQLEXEC() function so every thing was working fine. In my app I had created a class which created connection , used sqlexec() to fetch data, provision to handle materialized views and handle errors. Now when I was passing my qry...
  11. Ris1

    '?' Operator in SqlExec() function not working

    In My test.prg which is independent of my app, Lparameters is working fine as in Olaf's Code. Oracle version is 11g and Asynchronous mode is .F.
  12. Ris1

    '?' Operator in SqlExec() function not working

    Thanks mplaza I think this was problem. On replacing lparameters with Parameters , now both the queries are fetching records. Also when I define local lcCrit , second query starts for asking Get Parameter value I/P box. So the problem was in local variable with was not sensed by SQLEXEC...
  13. Ris1

    '?' Operator in SqlExec() function not working

    Olaf, this was the very first thing which I had tested but no change in result as I thought there might be some clashing in variable names. This is the actual query which I am running and not simplification. No, I am not using #define lcCriteria 1 point to note is that on replacing ? with &...
  14. Ris1

    '?' Operator in SqlExec() function not working

    Olaf, I have placed browse after each statement . 1st statement is showing I/P box asking for lcCriteria input. If I esc, simply blank cursor is browsed, while in second it is fetching records. When I simulate situation with a simple test program , both the queries are working, so is it...
  15. Ris1

    '?' Operator in SqlExec() function not working

    Value of lcCriteria is coming from the calling procedure - Do Proc1 with 'START'
  16. Ris1

    '?' Operator in SqlExec() function not working

    I am migrating VFP database to Oracle. While converting locate command into select query , I have used ? before variable name. But it is not working . Pls. refer below Procedure Proc1 Lpara lcCriteria *- on running below line , i/p box opens for getting parameter value sqlexec(nHandle,"Select...
  17. Ris1

    Allowed do nesting level exceeded

    Olaf, I have so many private variables and cursors which I will have to reset before opening the next records. So I thought going that way so that fresh environment is created .
  18. Ris1

    Allowed do nesting level exceeded

    Mike , On observing stack, for each call 4 entries are appended in stack and when number reaches 128, it starts giving problem. Is there any way to pop up some elements of stack(Pointing to the element where stack was before calling form)
  19. Ris1

    Allowed do nesting level exceeded

    In a master entry form , I have given up arrow and down arrow so that user could scroll down/up to next/previous record. I am releasing current form and opening new form for that master. On pressing up arrow around 15 times , this error appears and then user is not able to perform any operations...
  20. Ris1

    Timer Event on fire bring back form to front

    I have a form which refreshes grid data in 1 min. using timer. On drilldown another form is opened showing details of that record. Now, while viewing 2 form if timer event of first form is fired then it comes above 2nd form. How can I avoid such behaviour . I want timer to just update data in...

Part and Inventory Search

Back
Top