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

  1. TheLazyPig

    Buttons not aligned after another button is clicked

    Hi! I have 3 buttons visible If I click Add button only Add button should be visible. Then If I click back the Add button it will display all But after I click it back the other button is not aligned. function addBank(polno){ var editbtn = document.getElementById("btnEdit")...
  2. TheLazyPig

    Button not aligned after click

    Hi! I have 3 buttons visible If I click Add button only Add button should be visible. Then If I click back the Add button it will display all But after I click it back the other button is not aligned. function addBank(polno){ var editbtn = document.getElementById("btnEdit")...
  3. TheLazyPig

    Position form in another form when radio clicked

    I have only used forms, combo boxes, text boxes, buttons, option groups, and grids, and am not familiar with containers. Even pageframe and the use of classes is new to me. I did not explore much when all the VFP projects were handed to me. :cry: This is really helpful. The last person who...
  4. TheLazyPig

    Position form in another form when radio clicked

    FYI this is the program I'm re-creating. :) It was created in 2007.
  5. TheLazyPig

    Position form in another form when radio clicked

    That's because I wanted to re-create the original UI and thought that he used forms. I'm already changing it to pageframe now. :)
  6. TheLazyPig

    Position form in another form when radio clicked

    How did you put the Documents from and Others tab in the second row?
  7. TheLazyPig

    Position form in another form when radio clicked

    The form changes because of the radio button the content is not the same that's why I have separate forms.
  8. TheLazyPig

    Position form in another form when radio clicked

    The real problem is the project itself doesn't have the .pjx file and the other forms I needed so I have to re-create the program itself. :cry:
  9. TheLazyPig

    Position form in another form when radio clicked

    Oh, I didn't know about containers... I've never really explored all the tools. Thank you this might be the one the programmer used in the project. Will check this out too. :) Yes, screen resolution.
  10. TheLazyPig

    Position form in another form when radio clicked

    I didn't use it because I hadn't tried it before and wanted to re-create the original UI of the program. Thank you I'll learn it from now. :)
  11. TheLazyPig

    Position form in another form when radio clicked

    Hi! Can I position my form (frmchecks.scx) to appear inside another form (branch.scx) when the radio button is clicked? It works when I change the Top and Left but if I do this will it stay in the position even if the device changes? <-- changes depend on the radio button frmchecks.scx...
  12. TheLazyPig

    If an Excel file already exists in the folder...

    Hi! I'm trying to COPY TO aglib_aug24 TYPE XL5 file in a folder but the file name is already exists. Is there a way I can rename the file I'm about to save without changing the exitsing one. SET DELETED ON SET SAFETY OFF SET UDFPARMS TO REFERENCE CLOSE ALL CLEAR LOCAL...
  13. TheLazyPig

    LISTAGG code like

    Hi! I guess I have to create a separate program to use the function for future requests like this. Thank you for the responses! :)
  14. TheLazyPig

    LISTAGG code like

    Is there a LISTAGG code in foxpro9 or any similar process? Thank you for the response. :)
  15. TheLazyPig

    Merge Into with multiple execution

    Hi! I would like to know if I can use merge with multiple executions when matched. When matched, it should insert the matched record into a history table first and then update the main table. When not matched, it will insert into the main table. I just wanted to back up the matched record for...
  16. TheLazyPig

    Merge Into like in Oracle to Foxpro 9

    Hi! Is there a Merge Into in Foxpro 9 like what Oracle does? From my previous thread in my table, I already have duplicate records that I wanted to delete the old one and retain the latest as-of-date. So now instead of inserting all records at once, I wanted to check if the new record has...
  17. TheLazyPig

    Deleting duplicate records from cursor

    Thank you for the replies. I created a new table (region2) same column as the region, which I use to append the correct records from duplicates. Delete all duplicate records then PACK. After that, I append region2 to region. I used ZAP to region2 before append so I'll only insert the current...
  18. TheLazyPig

    Deleting duplicate records from cursor

    Okay, I understand. The program is working there's no error found. I checked the region table if duplicates were deleted correctly, I used the empno that has duplicate record but both of them is gone instead of removing only the previous date. Sample record from table region. The highlighted...
  19. TheLazyPig

    Deleting duplicate records from cursor

    Hi! I wanted to delete only the old records but I ended up deleting both. To get duplicate records I used having count(*) > 1 then Delete from region. SET DELETED ON SET SAFETY OFF LOCAL pcPopFile,pcCurrDir *---------------------------------- pcPopFile = "C:\BACKUP_FILES\NETPAY"...
  20. TheLazyPig

    &quot;No table is open in the current work area&quot; error when Replace

    Thank you so much for the replies. The program is working.

Part and Inventory Search

Back
Top