Search found 64 matches: assigns

Return to advanced search

file ID in the Windows file system

... 2. **Copying a File to Another Folder:** - **Same Volume**: If you copy a file to another folder on the same volume, the file system typically assigns a new File ID to the copy. The original file retains its original File ID. This is because, in most systems, the File ID is unique to each file ...
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: Calculate total pages

... and File Handling:** - `oDevice := DEVICE`: Initializes an object `oDevice` to represent the current printing device. - `aFiles := oDevice:aMeta`: Assigns metadata from the device to an array `aFiles`. - `hMeta := oMeta1:hMeta`: Seems to reference a metafile handle from another object `oMeta1`. ...
by Otto
Fri Nov 24, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate total pages
Replies: 32
Views: 5878

Re: To Nages: Record deleted but make error also

... to match the type of the array elements with the datatypes of the corresponding fields of the DBF. I actually don't know why when I delete one it assigns a number in position 32, where I added the "recno" field as it is done on yunus.prg If I add and delete, a number is not inserted ...
by Silvio.Falconi
Wed Nov 22, 2023 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages: Record deleted but make error also RESOLVED
Replies: 3
Views: 277

New FTDN April/Abril 2023 (FWH 23.04)

... for assigning to MEMO/BLOB fields. * TGET: - While editing Date and DateTime variables, following keys have this functionality: "=" Assigns Current Date " " Assigns Blank date "+" Increments the get by one day/month/year/hour,etc depending on the position of the ...
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

a small question on Yunus NagesWarao sample

I'm using the array technique to save the body of an invoice like NagesWarao does in his yunus.prg example NagesWarao assigns to the static variable "cItemFlds" the fields it uses in the xbrowse static cItemFlds  := "INVNUM,SERIAL,ITEMCODE,ITEMNAME,QUANTITY,UNIT,PRICE,DISCOUNT,RECNO()" ...
by Silvio.Falconi
Wed Apr 05, 2023 10:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: a small question on Yunus NagesWarao sample
Replies: 2
Views: 228

Re: COLORMENU vertical MenuItem

... oMenu COLORS FONT oFontMenu ... Pd.: not use CLR_BLACK or Rgb( 0, 0, 0 ), The class understands that the color is empty ( color value = 0 ), and assigns the default color. This is a topic that I have yet to review.
by cnavarro
Tue Dec 27, 2022 6:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COLORMENU vertical MenuItem
Replies: 4
Views: 432

Re: Boton en celda xBrowse

Please make sure that bEditBlock returns nil
That means, MiFunction() should return nil.

Explanation:
If bEditBlock returns nil, xbrowse does not take any further action.
But if bEditBlock returns any value other than nil, XBrowse assigns that value to the field.
by nageswaragunupudi
Mon Nov 28, 2022 11:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Boton en celda xBrowse
Replies: 1
Views: 281

Re: Problema con xBrowse

... reason, we used Empty() XBrowse internally translates the expression "IF(EMPTY(HDR_CLI),HDR_TOT,0.00)" into a codeblock like this and assigns to oCol:bEditValue :bEditValue := { |x,oCol| If( Empty( oCol:oBrw:oRs:Fields( "HDR_CLI" ):Value ) ), ...
by nageswaragunupudi
Sat Apr 30, 2022 4:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con xBrowse (SOLUCIONADO)
Replies: 11
Views: 1169

Harbourino and mod harbour

... quickly turn the HTML page into a DBF data-driven mod harbour web page. Is it possible that I can do that on Skype modharbour for our group. Who assigns the Skype appointments, and is there any interest in it. Best regards, Otto
by Otto
Fri Jan 01, 2021 5:51 pm
 
Forum: mod_harbour
Topic: Harbourino and mod harbour
Replies: 1
Views: 552

Re: QR-Code on invoices

... This document describes and regulate the content and usage of the two dimensional barcode (QR-Code) based on ISO 18004. It also assigns rules for physical and printing limits. Most recent version.
by alerchster
Wed Dec 23, 2020 5:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: QR-Code on invoices
Replies: 2
Views: 372

Re: Print Colored Box

... view the numbers, the status of each item. This type of printing is called the Lifeguard Sheet, because the lifeguard usually uses the paper and assigns the rentals on the paper. My problem is that the beach scheme is created in 20 rows by 40 columns and a maximum of 800 positions (boxes) can ...
by Silvio.Falconi
Sat May 23, 2020 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Print Colored Box
Replies: 5
Views: 677

Re: xBrowse anomoly

... clause is used, xbrowse xbrowse knows which column is based on which field. XBrowse first reads the field structure of the datasource and then assigns oCol:cDataType, oCol:nDataLen, oCol:nDataDec on the basis of the corresponding field definition. Then, for numeric fields, (only numeric fields), ...
by nageswaragunupudi
Wed Apr 29, 2020 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse anomoly
Replies: 21
Views: 3546

Re: XBrowse edit only one column

... <nCreationOrder> ) Once we have the column object, oColObject:Value --> gives the value oColObject:VarPut ( uNewValue ) not only assigns the new value but also adjusts totals, writes data to table, and everying else.
by nageswaragunupudi
Wed Aug 14, 2019 4:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse edit only one column
Replies: 26
Views: 2965

Re: To James Bott - Error Using TData

... it has the same ID as the first user). Now the first user saves and the system checks to see if the ID exists, and it does, so the system then assigns the next available ID. The problem with this system is that the ID may change from what was initially displayed on the data entry screen. Since ...
by Silvio.Falconi
Wed May 29, 2019 1:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5133

Re: To James Bott - Error Using TData

... it has the same ID as the first user). Now the first user saves and the system checks to see if the ID exists, and it does, so the system then assigns the next available ID. The problem with this system is that the ID may change from what was initially displayed on the data entry screen. Since ...
by James Bott
Wed May 29, 2019 1:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5133
Next

Return to advanced search