Search found 435 matches: unique

Return to advanced search

Re: RC to PRG generator

... and that should be OK, but over the years, I find in my experience, sometimes I still have issues arise. In my case, I often give the dialogs unique names, especially if I will have multiple ones on the same screen. For example, when using folders, I have a master dialog, and each folder has ...
by TimStone
Mon Feb 12, 2024 11:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RC to PRG generator
Replies: 23
Views: 1006

Parameterization of xReport

... class named .custom-thead to style the appearance of table headers. This class is applied to the <thead> element of the table to give it a unique look. The .custom-thead class is defined as follows: .custom-thead { background-color: #007bff; /* Blue */ color: white; } This definition causes ...
by Otto
Sat Jan 13, 2024 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameterization of xReport
Replies: 2
Views: 554

file ID in the Windows file system

... system instead of a database. Can we get these IDs from Fivewin or Harbour Mod? Best regards, Otto In Windows operating systems, files indeed have unique identifiers beyond just their names, which are used by the system to manage and reference files. Here are a couple of concepts related to this: ...
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: 528

Re: copy a row of xbrowse

... Functionality**: When pasting, iterate over `aCopy` and add each row to `oBrw:aArrayData`. Make sure to reset `aCopy` after pasting. 3. **Handle Unique Identifiers**: To avoid issues with modifying copied rows, ensure each row has a unique identifier (like a record number). You might need to ...
by Otto
Tue Dec 05, 2023 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5594

Re: random sentences generator

... is a form of energy.") Tokenizer("The Sahara Desert is the largest hot desert.") Tokenizer("Snowflakes have unique and intricate patterns.") Tokenizer("Honey is produced by bees from flower nectar.") Tokenizer("The Earth's atmosphere consists ...
by Antonio Linares
Fri Dec 01, 2023 6:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: random sentences generator
Replies: 6
Views: 642

Re: Calculate total pages

... Best regards, Otto    oDevice := DEVICE   aFiles  := oDevice:aMeta   hMeta   := oMeta1:hMeta    cUniqueID := cUniqueID()       CursorWait()       DeleteDC( oDevice:hDC)    ...
by Otto
Fri Nov 24, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate total pages
Replies: 32
Views: 5507

Re: xBrowse - Dates - FWH 2310

No problem. It is late but I will do those steps in the morning. Yes, it is strange, and unique, so I’m happy to do those tests.

The one client who had problems is running OS 21H2, so I asked him to run the Windows update.


Sent from my iPhone using Tapatalk
by TimStone
Tue Nov 07, 2023 5:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - Dates - FWH 2310
Replies: 19
Views: 1225

Re: Announcing DrXlsx 1.0 by Charles Kwon

... and VC/BCC/Clang under the same protocol. It's a time-consuming task and some versions can cause unexpected issues due to their unique characteristics. I am also testing the desired features for each version, and I will announce them once it is complete. Thank you. Regards, Charles ...
by CharlesKwon
Sat Aug 26, 2023 12:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Announcing DrXlsx 1.0 by Charles Kwon
Replies: 32
Views: 3509

Re: Incluyendo el SQLRDD

hi, under SQL you need a UNIQUE "Identifier" like RECNO() under DBF Fivewin seems to use "ID" and Xbase++ "__Record" as PRIMARY KEY SQLRDD use "sr_recno" so everybody can use a other "Identifier" ...
by Jimmy
Fri Aug 25, 2023 1:19 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 2308

Re: FWH new AutoHelp feature !!!

... that moment, is there a option to get the value or ID from that items i'm hovering over ? Mayby in combination with a Dialog ID so that there is a Unique ID to retrieve from the help dbf ? I want to show help text before they click on a item. Almost like the tooltip does, but then with the F1 key. ...
by Marc Venken
Sun Aug 06, 2023 2:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH new AutoHelp feature !!!
Replies: 14
Views: 757

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

... integer NOT NULL DEFAULT 0, " also PRIMARY KEY is "add" when create SQL-Table to use NextVal() "internal" to increment UNIQUE "RecNo" --- 1st. "Problem" for a xBase User are FWPG_ImportFromDBF() which use 4th Parameter as "default" it should ...
by Jimmy
Sun Aug 06, 2023 12:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 706

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

... other botheration. RDMS will safely append even hundreds of records per second. No worries. i wonder how to "identify" a Record without UNIQUE "id" :?: We need to have a primary key or unique key (key can have multiple columns also) btw. how can i make FIELD "id" ...
by nageswaragunupudi
Sat Aug 05, 2023 9:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 706

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

... cQuery += " CONSTRAINT " + xTable + "_pkey PRIMARY KEY ( ´serial´ )" --- i wonder how to "identify" a Record without UNIQUE "id" :?: in multi-User Environment 2 User can APPEND "same" at "same Time" so i can´t use Information like "First+Last" ...
by Jimmy
Sat Aug 05, 2023 9:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 706

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

... of more than one field. hm ... calling METHOD SavePQQ() is for "single" Record FIELD for PRIMARY KEY are Type "Int" and UNIQUE as i understand PRIMARY KEY should work for us like RECORD() to "identify" you can have 2 x "Int" like this CREATE TABLE ...
by Jimmy
Thu Aug 03, 2023 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 706

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

... on "__record"    cQuery += " CONSTRAINT " + cTable + "_pkey PRIMARY KEY (__record)" when INSERT it increment next UNIQUE number this Way   cIns += "nextval('" + cTable + "___record_seq')" + ","   --- i found in c:\fwh\source\function\pgsuport.prg ...
by Jimmy
Wed Aug 02, 2023 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 706
Next

Return to advanced search