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")...
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")...
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...
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.
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...
...save without changing the exitsing one.
SET DELETED ON
SET SAFETY OFF
SET UDFPARMS TO REFERENCE
CLOSE ALL
CLEAR
LOCAL lcTest,lcFile,lcRes,lcDir
*----------------------------------
lcTest = "C:\BACKUP_FILES\"
lcDir = "O:\Programs\OR\"
lcFile = thisform.txtFileName.Value
caDir =...
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...
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...
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...
...of removing only the previous date.
Sample record from table region. The highlighted row should be deleted.
Below is my code for deletion.
**To Delete Duplicate Records
PROCEDURE deleteDuplicate
CLOSE ALL
USE (pcScrPath) IN 0 SHARED ALIAS Region
SELECT * ;
FROM region ...
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"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.