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 TouchToneTommy 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: janak vyas
  • Content: Threads
  • Order by date
  1. janak vyas

    To automatically save the pdf in a folder

    Hi ! I wanted to know if it is possible to save the pdf into a folder. What I mean is, the program will first create a folder and then save the pdf(s) into that particular folder. folder name being created from a variable. How is it possible?
  2. janak vyas

    Is there a free software to convert .dbf to .sql tables ?

    I wanted to convert the .dbf in MySQL Workbench. Is there a way to convert the .dbf directly on the MySQL workbench ? or is there a free software for the conversion ?
  3. janak vyas

    Not able to figure out what is this?

    The highlighted column came when i save the .dbf files and it is hindrance as the program is not able to read it. I dont how how it came, what are the solutions please help.
  4. janak vyas

    File created by the application is locked by some unknown user.

    The foxpro application that I use, on click of a list item in the menu creates a template file in a folder placed in the D:/Shortcuts/Sharedfolder/Template/B .. where in the properties of B folder the target is \\SERVER\BMar2006pf92014\TEMPLATES. Please understand this. This is the main folder...
  5. janak vyas

    VFP FORMS

    (never used forms) Is there any tutorial or any books or any guide/articles where I can learn how to make forms? I wanted to make an accounting project customized for my personal needs. Tried searching projects that I could download and learn from them, but all goes above my head. I am not able...
  6. janak vyas

    Someone please explain me the flow of this code.

    CREATE CURSOR tmp (RD N(18)) INDEX ON RD TAG MAIN CANDIDATE SET ORDER TO RAND(-1) LOCAL i, j j = 29 ON ERROR ErrHand(@j) FOR i = 1 TO 30 && Just do 100k for now INSERT INTO tmp (RD) VALUES (RAND()*j+1) NEXT ON ERROR PROCEDURE ErrHand(j) if j>=30 else j=j*1.05 endif RETRY ENDPROC what...
  7. janak vyas

    How do I allot prizes to a person on different dates?

    I tried using Rand() but I am failing in implementing something like this, where I randomly give the employees prizes on random dates while also having control and constraining the number of prizes an employee can get. I have only used and seen/understand old foxpro codes so I will appreciate If...
  8. janak vyas

    Not able to insert/update fields from tables. Please help.

    I was searching in this forum answers to my question and found this code : CREATE TABLE tblNames (cId C(5), cName C(10)) INSERT INTO tblNames (cName) VALUES ("Michi") INSERT INTO tblNames (cName) VALUES ("Mecky") INSERT INTO tblNames (cName) VALUES ("Myaer") INSERT INTO tblNames (cName)...
  9. janak vyas

    How to stop this showing on the screen ?

    Every time I compute something on my program I get prompted by this dialog box one thing I know is that it tells me that the code is not recognised/marked as a vfp code or am I wrong ? And how do I stop this from showing EVERYTIME ! ( although just with an escape it gets removed, but there are...
  10. janak vyas

    Problem with calculating data using different tables

    WE HAVE A PROGRAM OF PAYROLL WRITTEN IN VISUAL FOX PRO WHERE IN WE HAVE A FEATURE TO CALCULATE ARREARS OF EMPLOYEES. WE INPUT THE STARTING MONTH AND THE END MONTH FROM WHICH WE WANT TO CALCULATE THE ARREARS, WE THEN INPUT EMPLOYEE CODE -> IT SEARCHES THE EMPLOYEE DATABASE FOR EVERY MONTH AND GET...

Part and Inventory Search

Back
Top