Search found 151 matches: performed

Return to advanced search

WebView resize

... 800) } Inside the function `fromjavascript(hPost)`, if the condition elseif hTemp['url'] == 'cancelform'` is met, the following actions are performed: logline("cancelform", ValToChar(hTemp)) oWebView:Terminate() oWebView:Destroy() Do you think it would be more effective to use ...
by Otto
Fri Mar 08, 2024 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2099

file ID in the Windows file system

... to manage file operations. When a program opens a file, the operating system creates a file handle to keep track of the file and operations performed on it. This handle is unique for the duration of the file's opening by that process. **File ID:** In addition to file handles, modern Windows ...
by Otto
Fri Jan 05, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 628

Re: Fwh 23.10 TGet another problem

...  local nVal, cVal? nKey, nFlags, FW_SetUnicode()  http://www.objekt.com.tr/fwh_test/newtest2.png Likewise, in the test performed when the fwh 23.10 version was active, the nKey variable returned the value 286, as seen below. http://www.objekt.com.tr/fwh_test/newtest3.png ...
by Horizon
Wed Nov 15, 2023 9:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 54314

Re: XBROWSE ERROR

... define Get properly. What XBrowse natively provides is incremental Seek/Filter. That means, as and when the user presses a key, the seek/filter is performed. Many users like this feature, But if you reject this feature and use a Get and ask the user to enter a seek expression first, then do you ...
by nageswaragunupudi
Tue Aug 08, 2023 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE ERROR
Replies: 5
Views: 387

Re: AEVAL() : Get Value of FIELD using FieldGet(i)

... to .T. (true), the array element is effectively passed to the code block by reference and an assignment to the first code block parameter is also performed in the corresponding array element. so that is different to Fivewin and i got empty Array ... :? i have ask ChatGPT but forgot 5th Parameter ...
by Jimmy
Wed May 24, 2023 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AEVAL() : Get Value of FIELD using FieldGet(i)
Replies: 4
Views: 182

Re: XBROWSE Column Question

hi,
nageswaragunupudi wrote:
but how can it continue without press a Key :?:
SeekNext is performed when F3 key is pressed by the user.

this is for "new" Version or include in older Version 2022/07 also :?:

i do have a Buttonbar where i have F3
will it "override" F3 "internal" :?:
by Jimmy
Wed May 10, 2023 7:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 876

Re: XBROWSE Column Question

but how can it continue without press a Key :?:

SeekNext is performed when F3 key is pressed by the user.
by nageswaragunupudi
Wed May 10, 2023 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 876

New FTDN April/Abril 2023 (FWH 23.04)

... same as ASort(...) -nColNo: Sortede on nColNo asc if +ve and desc if -ve. -aCols: Array of column numbers or codeblocks. Multi-column sort is performed on the column numbers in the array. Asc if the number is +ve and desc if -ve. If any element of the array is codeblock, the comarison is made ...
by Antonio Linares
Tue May 02, 2023 7:08 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 1757

New FTDN December/Diciembre 2022 (FW 22.12)

... ) --> aSorted By default, this works just as normal ASort(), but if the fourth parameter is an array of column numbers, a nested sort is performed on multiple columns. For descending order, specify the column number as negative number. Eg: ASort( aArray,,{ 2, -4, 5 } ) Performs ascending ...
by Antonio Linares
Tue Jan 03, 2023 7:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2022 (FW 22.12)
Replies: 5
Views: 1233

WebView on a non-modal window

... I open a modeless POPUP window. Then I create a WebView object and put it in this non-modal dialog. However, further work of the program is not performed because WebView is still a modal window :( DEFINE DIALOG oKds FROM 0,0 TO 0,0 PIXEL ; STYLE nOR(WS_POPUP) COLOR CLR_BLACK, CLR_WHITE ACTIVATE ...
by Natter
Mon Dec 12, 2022 10:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView on a non-modal window
Replies: 3
Views: 330

Problem with tmeter

... from the site and the unpacking, both the conversion from the file "storico.txt" into "storico.dbf" and both the conversion is performed correctly. only that the meter is stopped I cannot publish the whole procedure because it is complex I can only publish a function which then ...
by Silvio.Falconi
Mon Nov 14, 2022 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 300

Re: Nuevo FWH 22.10

... doing the dbunlock, if before the dbrollback() another user modifies the value of CUST->CITY by "OTHER USER" when the rollback() is performed, what value will CUST->CITY finally have, "ORIGINAL" or "OTHER USER" ?
by VictorCasajuana
Wed Nov 02, 2022 4:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 22.10
Replies: 6
Views: 654

Re: Backup from inside FWH program

... ) 2). It submits data to 3rd party vendors used by my customer 3). It installs program updates 4). It performs a daily backup These functions are performed shortly after midnight on a new day. This is when the client is least likely to be working. The backup creates an archive of the entire data ...
by TimStone
Wed Aug 31, 2022 9:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Backup from inside FWH program
Replies: 17
Views: 1460

Re: Transaction security with DBF

... where you save all the operations descriptions that you are going to do, before doing them and after doing them, to confirm that they were performed successfully. If any of those operations fails, then you "undo" what you have done. That is traditionally known as a "rollback". ...
by Antonio Linares
Wed Aug 31, 2022 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transaction security with DBF
Replies: 9
Views: 726

Re: Very strange problem - ideas needed

... with the same result. Yesterday I copied their complete database set to my computer, ran the routine for the month that isn't working, and it performed perfectly. I suspected the server, so I moved the install to a newer computer. I looked for some type of security software but they are only ...
by TimStone
Wed Aug 24, 2022 5:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Very strange problem - ideas needed
Replies: 17
Views: 1753
Next

Return to advanced search

cron