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 Chriss 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: Sng1
  • Content: Threads
  • Order by date
  1. Sng1

    Fill Full page till footer space in detail in FRX Report in VFP

    I have a report of sales invoice in which I want to fill the page with blank spaces in the last page of invoice if data finishes in half page. Below is the sample that is required. In image JB2 after data is completed blank space is inserted to cover full page
  2. Sng1

    Remove Border line around the column

    Grid's allowcellselection is true and the border is to be removed. Which property will I have to set?
  3. Sng1

    Problem of data fetching from cache instead of Sever using XMLHTTP for Restful api

    Every time I fetch data , Server response is different for the same url . So I want each time data to be fetched from web and not cache. How is it possible to do ? I have tries setting .setRequestHeader('Cache-Control','no-cache') also but still data is fetched from cache
  4. Sng1

    Problem in converting JSON to DBF using nfJsonopen

    Below Code is creating property name -> exp_vfpsafe_ instead of exp whereas JSON does not contain exp_vfpsafe_ Close All TEXT TO Json {"data":{"exp":[{"inv":[{"val":156420,"itms":[{"csamt":0,"rt":0,"txval":156420,"iamt":0}]...
  5. Sng1

    Error in nfJsonCreate in distributable but was working fine in development environment

    In development environment, every thing is working fine while in runtime environment nfJsonCreate is creating error. Which setting am I missing in runtime which is creating proble. Below is the code where problem Variable ' ' is not found. if m.bidim xtabs = nivel(2) este =...
  6. Sng1

    Textbox Font shifting when focus goes on it.

    Even though the width of textbox is sufficient to accommodate digits, then too as focus goes on textbox , digits in it shift to right. Alignment of textbox is 1. What property should I set to avoid shifting? Below is the image...
  7. Sng1

    Nesting Error in runtime in nfjson though not at design time

    Below is the code that is compiled and giving no error but on running below code nesting error is soming. Where am I wrong in the code below. Clear Close All Local lcJSON, oJSON TEXT TO jSON...
  8. Sng1

    Login to some govt. portal programmatically using ID and Password

    I can login to govt. web portal using Id and Password and capcha provided and from there I download some reports. Is it possible to do that programmatically if Id and Password is available .
  9. Sng1

    How to create Json from cursor in the format below using nfJsonCreate

    Create Cursor Library ( Library c(15), shelf N(6), Version c(10), hash c(10),Author c(30), Name c(20), category c(20),Pages N(4),Publication c(60)) Insert into Library Values("Books",5,"LIB3.1.2","hash","Anderson","Legends","Drama",120,"Happer Collins") Insert into Library...
  10. Sng1

    nfOpenJson to create Cursor

    I have my json as I want to create a cursor with fields as -> I don't know what to write path expression for BOOK array for getting all records in a cursor. For simple Json like I write it as
  11. Sng1

    Runtime problem in exe while using vfpencryption71.fll library got from SweetPotato cite

    I have used above mentioned library and place library in the same folder where exe is placed. But as soon as "Set Library to ..." is called , it gives error - "API Library is not found" . Even by adding library to project , same error occurs. MSVCR71.dll and MSVCP71.dll is distributed with exe.
  12. Sng1

    Problem using genhtml.prg

    In development environment, every thing works fine but when I make executable, 'error _runcodeerror.prg is not found ' comes. I found this code in _html.vcx used in htmltag's error method. Below is the code from error method of _htmltag Lparameters nError, cMethod, nLine Local lcMethod...
  13. Sng1

    Vfp exe encrypted with defox gets deleted by windows security

    I have protected my application defox . As soon as user run that exe , it is deleted by windows security detecting as virus. Is there any way so that exe works fine on users site. I can't say users to turn off windows security.
  14. Sng1

    Converting XML to Cursor Stopped due to invalid unicode Character

    I have a xml file. I am using 'MSXML2.DomDocument' to read the document. But if xml contains some invalid character , MSXML2.DomDocument generated parsing error. I used filetostr() and then strtran() function to replace string and then filetostr() but still that character is not removed.
  15. Sng1

    Shifting of controls inside grid column when column is clicked

    I have 2 controls inside grid column - one is container and other is textbox which is controlled by dynamiccurrentcontrol property and sparse property. Grids's allowcellselection is false. It works fine but when that column is clicked with mouse, there is slight shifting of letters of textbox...
  16. Sng1

    How can I write the below code in VFP for knowing UUID

    Imports System Imports System.Management ' requires adding a reference to System.Management Module Module1 Sub Main() Try Dim searcher As New ManagementObjectSearcher( _ "root\CIMV2", _ "SELECT * FROM Win32_ComputerSystemProduct")...
  17. Sng1

    Building Executable with Molebox

    I create a exe with molebox encryption package. Since up till now exe was executed on a server in which VFP was installed , so there was no problem. But now When I am distributing it as zip for desktop version where VFP is not installed, exe simply doesn't execute.

Part and Inventory Search

Back
Top