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

    Migration 1 module of my application in vfp - Which is better .net or LiveCode

    I want to migrate 1 of the utilities of my application to another platform. I found LiveCode programming lang. which claims to easily convert VFP Code into LiveCode. I don't have much knowledge of that. Another option open for me is .net . Which would be better option to opt?
  2. KALP1

    Locate Command doesn't fetches fresh values of column

    I have a table with column update - c(1) I have a opened this table in 1 vfp window with the record pointer on record no. 1 with Update = 'Y'. Now in another VFP window I open same table and manually changed Update to 'N' . Now in the first window, run command -> Locate for Code = 1(which is...
  3. KALP1

    "File is in use by another user" or "Record is in use by another user" - with Er

    As soon as I put my Error Handler in action , above message comes every now and then when multiple user are working on the same file. When I place no Error Handler with VFP's Default error messages, these errors disappears. I have SET ReProcess to 4. Problem is that as soon as I place Error...
  4. KALP1

    Start Grouping band on new page at runtime

    Sometimes I want to print grouping band in a new page and sometimes continuous. Right now I maintain 2 FRX, will 1 FRX be suffice to do the same, so that based on that parameter report is controlled.
  5. KALP1

    Vfp App in Windows Server 2012 - "This App can't run on this PC"

    My App was working fine in Windows Server 2008 and 2012. Few days back, I had to format server due to some technical problem and reinstalled Windows Server 2012. After this,above said error appears once in a while in a day and I have to ask my users to either use another executable with diff...
  6. KALP1

    File is in user by another user while opening a database

    When my 2 users simultaneously use 1 option which issues Open Database xyz.dbc , then 1 user gets error "file is in use by another user". What might be causing this error as I am not any dbf file of that database exclusive. Set Exclusive is also OFF.
  7. KALP1

    Private Variables not restoring to their original values

    I have 1 procedure say Abc() in which 1 private variable 'Pety' is defined to be true. In that form 1 have 1 command button which shows a summary report.On entering on any record of that summary report,proc. abc() is called again with pety = .F. . Now when I esc from abc() procedure(proc. which...
  8. KALP1

    Synchronization of 2 grids - horizontal scrolling makes 2nd grid out of sync

    I have 2 grids. They are attached together 1 below other. As I horizontally scroll upper grid and focus is on the last column -> upper grid scrolls/slips while lower grid remains as it is. Secondly when I resize any column in upper grid lower grid columns are not resized. How to tackle these...
  9. KALP1

    Search for string containing - [ ] '' or " "

    I need to filter records on a character expression. I have written a1 = "KUM'AR" lcLikeExpr = [LIKE('*] + A1 + [*',Particular)] SET FILTER TO &lcLikeExpr ** This is giving missing operand. As soon as variable a1 includes single apostrophy, I get error missing operand. If I change this to a1 =...
  10. KALP1

    Maintain Relative Position in Grid

    Say I have 20th record at grid's row no. 5. After refresh i want same 20th record at grid's row no. 5 I found similar threads in the forum but couldn't get accurate answer for that
  11. KALP1

    Take Input in proper without Changing Caps Lock on or off

    I want my app to take I/P in proper format i.e. as soon as user presses space or '.' or ',' next letter should be upper case otherwise small case.I don't want to change Caps On or Off. How I would implement is in interactive change event of textbox, i would refresh I/P value restoring selstart...
  12. KALP1

    Go to line no. in .prg file programmatically

    I want to open a .prg file , go to specified line no.(programmatically) and make some changes there . Is there any way to go to say line n in a .prg file. I require this as I know line no. where error occured , on entering ok button I want to go to that line no. in program file
  13. KALP1

    Error -> "File does not exist" on calling any function of .prg file

    I have put all my generic functions in 1 .prg file(say named it 'General_functions') and in the main program I called Do General_Functions In all other programs I just call a function(say Get_Running_year()) defined in General_functions.prg . Problem is that in some cases not always, I get...
  14. KALP1

    Design Time Macro(simulation of keypresses) For executables

    Is there any source code or utility to implement macros which are available for programmers in Exe(executable file) for Users. Can we get VFP's source code written for Macros.
  15. KALP1

    how to hack details band's -> "start detail band on new page when less than" at run tim

    I have a report where I have to set variable value of "detail band on new page when less than" depending on the content of the page . Is there any way to do that. Will making Report listener's object help and in which method it would be written.

Part and Inventory Search

Back
Top