Search found 77 matches: aliases

Return to advanced search

Re: Problem with xBrowse (Fixed)

... table with its alias "H". I think it is something related to XBROWSE. Perhaps the master Rao can shed more light on this. H and S are aliases to indentify LEFT and RIGHT tables (hdrvda and sucursales in your example). Each field in table hdrva will be invoked with prefix "H.": ...
by Cgallegoa
Tue Jun 06, 2023 8:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2213

Re: ampersand

Jose, I'm still not sure what you try to do If you use aliases, maybe it is better ? I don't think that you wanne go into database object. Here a code that look like yours. Please feel free to post if I understood you wrong.          netopen("artikel","artcode","arttemp")  ...
by Marc Venken
Tue Mar 28, 2023 7:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ampersand
Replies: 13
Views: 1203

Re: Error en índices temporales

Temporary indexes do not affect the main cdx file. They are available for use in the work area (alias) where created and not available for other aliases of the same dbf. They are created as temporary files and deleted when the alias is closed. They are also called memory indexes. In the command, ...
by wartiaga
Mon Dec 19, 2022 6:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en índices temporales
Replies: 8
Views: 505

Re: Error en índices temporales

Temporary indexes do not affect the main cdx file. They are available for use in the work area (alias) where created and not available for other aliases of the same dbf. They are created as temporary files and deleted when the alias is closed. They are also called memory indexes. In the command, ...
by nageswaragunupudi
Sun Dec 18, 2022 5:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en índices temporales
Replies: 8
Views: 505

Re: System info, Tips & Tricks, scharing project info

... like below. I substituted oLineItem for cAlias) and oPart for the "nofoto" alias. Note that with objects you don't ever need to use aliases. And it is much easier to understand when you use real world terms.            oLineItem:bedrag  := oPart:bruto           oLineItem:aankoop ...
by James Bott
Wed Mar 30, 2022 12:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: System info, Tips & Tricks, scharing project info
Replies: 20
Views: 1513

Re: Error que no entiendo por que sucede.

... if the alias "CONSORC" is not already in use. If that alias is already in use, it returns "CONSORC001" If both the aliases "CONSORC" and "CONSORC001" are already in use, it returns "CONSORC002". This function always returns an alias ...
by nageswaragunupudi
Fri Mar 11, 2022 6:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error que no entiendo por que sucede.
Replies: 8
Views: 908

Re: GetNewAlias() existe para ADO?

There is no need for using Aliases in ADO.
We can open any number of recordsets for the same table at the same time and each recordset acts like different alias for dbf.
by nageswaragunupudi
Thu Sep 23, 2021 6:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: GetNewAlias() existe para ADO?
Replies: 5
Views: 760

Re: Comportamiento bEnd de un Report

... dbClosearea() )ListO->( dbClosearea() )     Regards. Jose. Are you sure you are not closing the aliases inside oRepAa:bEnd also?
by nageswaragunupudi
Tue Aug 24, 2021 12:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error no existe Alias al exportar a Excel (SOLUCIONADO)
Replies: 23
Views: 2246

Re: TDatabase Class

... to create a new method OrdSetFocus() that works like you want but using OrdScope() to accomplish this. Note that you don't need to use any aliases or workareas with database objects. That is all handled automatically by the object.
by James Bott
Wed May 19, 2021 10:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase Class
Replies: 18
Views: 2121

Re: ADOFUNC.prg e SQLEXPRESS

Hello everyone I would ask for further clarification on these aspects: 1) Is it possible to open multiple cursors (aliases) for the same table?     E.g. (x)Harbour LOCAL cALIAS1 := cGetNewAlias("CUSTOMERS")            ...
by mauri.menabue
Sun Mar 21, 2021 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADOFUNC.prg e SQLEXPRESS
Replies: 3
Views: 554

Re: Program techniques : change indexorder or use aliases

* New: function FW_DBFLOOKUP( uVal, [cOrder], bcRetExprn ) --> uResult uVal : Value / Expression to be lookedup ( seek or locate ) cOrder : OrderName for seek. Or field name for locate. Omit if uVal is an expression bcRetExpr: codeblock/string: Expression to evaluate Examples: CUSTOMER->( FW_...
by Marc Venken
Wed Nov 04, 2020 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program techniques : change indexorder or use aliases
Replies: 4
Views: 691

Re: Program techniques : change indexorder or use aliases

This is easy
2. I can open de database in more aliases and use different browses and lookups with these aliases ?? Can I get issues with the CDX file ?

No problems.
by nageswaragunupudi
Tue Nov 03, 2020 12:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program techniques : change indexorder or use aliases
Replies: 4
Views: 691

Re: Program techniques : change indexorder or use aliases

Marc, You gave me a laugh when I saw your message directed at me-you knew I would say OOP. Good, at least you remember. Note that back in Clipper era with 16bit computers without much memory we were limited as to how many files we could have open at one time. This rarely an issue now. so you can ope...
by James Bott
Mon Nov 02, 2020 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program techniques : change indexorder or use aliases
Replies: 4
Views: 691

Re: Program techniques : change indexorder or use aliases

But just out of interest... witch is used more often here ( 1 or 2) ? Personally, I'm using both, depending on the specific situation. In 1 : The first time, sometimes is with a relation set to ... , and when the database order is changed, the relation is broken. (I believe this is standard in FW) ...
by Enrico Maria Giordano
Mon Nov 02, 2020 5:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program techniques : change indexorder or use aliases
Replies: 4
Views: 691

Program techniques : change indexorder or use aliases

... can change the index order, but than I also have to keep track of resetting it back and at the correct position 2. I can open de database in more aliases and use different browses and lookups with these aliases ?? Can I get issues with the CDX file ? And we can use Oop (James), smaller parts are ...
by Marc Venken
Mon Nov 02, 2020 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program techniques : change indexorder or use aliases
Replies: 4
Views: 691
Next

Return to advanced search