Search found 22 matches
- Wed Feb 15, 2006 2:50 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: updating checkboxes?
- Replies: 8
- Views: 2011
manuramos, thank you for your help, although I found a solution to the problem. James, yes I agree that radio buttons are more user friendly, but that is what the user of the system has asked for, that is why I said that ideally I would like to have used them instead of radio buttons. Thank you for ...
- Tue Feb 14, 2006 11:28 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: updating checkboxes?
- Replies: 8
- Views: 2011
- Tue Feb 14, 2006 11:14 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: updating checkboxes?
- Replies: 8
- Views: 2011
- Tue Feb 14, 2006 10:46 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: updating checkboxes?
- Replies: 8
- Views: 2011
updating checkboxes?
I am using several checkboxes in my program, and when I declare them i call a function for each one so that if one is ticked, if the user selects a different one then the focus will be changed and the first checkbox they selected will become blank. CODE; REDEFINE CHECKBOX oRubble VAR mRubble ID 104 ...
- Fri Feb 10, 2006 11:25 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: PADR and LEN
- Replies: 2
- Views: 878
- Fri Feb 10, 2006 9:55 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: PADR and LEN
- Replies: 2
- Views: 878
PADR and LEN
In my program I have a comments field, which, if empty, will save the filename used and place .rpt extension onto the filename. However, although the majority of these work, a few of them will show the filename with a large gap before the .rpt extension. how can I solve this? EXAMPLE ; [Monthly Acco...
- Wed Jan 25, 2006 10:20 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Lock Required
- Replies: 1
- Views: 664
Lock Required
when the ok button in my program is pressed the information in the dialog is saved to a DBF, below is the code, the error (COMIX 1022) i get says that a lock is required. i have tried TRANSFIL->(RECLOCK()), but this does not work?? CODE; STATIC FUNCTION SaveInspect //Dean REPLACE TRANSFIL->CONT_LEVE...
- Thu Jan 19, 2006 11:03 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Arguement Error Conditional
- Replies: 2
- Views: 785
- Thu Jan 19, 2006 10:45 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Arguement Error Conditional
- Replies: 2
- Views: 785
Arguement Error Conditional
In my program, there is a listbox. when information in this list is doubleclicked the fields in the dialog box are updated. this works fine for all of them, exept for two places where a dbf field is shared between the two. I have used a PADL function, so that if the information in the field ends wit...
- Wed Jan 18, 2006 9:03 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Error Base\1002
- Replies: 4
- Views: 1325
- Tue Jan 17, 2006 12:29 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Error Base\1002
- Replies: 4
- Views: 1325
- Tue Jan 17, 2006 10:31 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Error Base\1002
- Replies: 4
- Views: 1325
Error Base\1002
In my program, before the main dialog window runs, I run a windows explorer window so that the user can select a folder which contains the DBF needed to run the main dialog. If the program finds the DBF then the main dialog will run, however, if it is not found, the program shows a message to tell t...
- Tue Jan 17, 2006 10:06 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: ERROR BASE\1003?
- Replies: 4
- Views: 1274
- Mon Jan 16, 2006 9:09 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: ERROR BASE\1003?
- Replies: 4
- Views: 1274
- Wed Jan 11, 2006 3:50 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ERROR BASE\1003?
- Replies: 4
- Views: 1274
ERROR BASE\1003?
I have written a save command in my program which will write variable values to a database. i get a base\1003 error variable not found REP_PROOF when i run the function, although the REP_PROOF is a database field. here is where the error occurs in the code REPLACE REPDETS->REP_PROOF WITH mFileProof ...