Search found 133 matches: attributes

Return to advanced search

Adjusting the setup program

... Is data-tab like Cargo for us in Harbour? And I receive a lesson: No, data-tab is not a Cargo attribute, but rather a data attribute in HTML. Data attributes allow custom data to be added to HTML elements without displaying it on the page itself. They serve to store additional information for JavaScript ...
by Otto
Tue Oct 29, 2024 7:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adjusting the setup program
Replies: 1
Views: 128

Re: Demo version

... FIVEWIN on a daily basis, it's comfortable to be able to edit the source code visually. You could expand it and add newly introduced functions and attributes. It would be helpful with all the support work you provide and also beneficial if it is brought up to date again for the community. And above ...
by karinha
Tue Sep 24, 2024 6:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Demo version
Replies: 29
Views: 921

Re: Demo version

... FIVEWIN on a daily basis, it's comfortable to be able to edit the source code visually. You could expand it and add newly introduced functions and attributes. It would be helpful with all the support work you provide and also beneficial if it is brought up to date again for the community. And above ...
by Otto
Tue Sep 24, 2024 5:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Demo version
Replies: 29
Views: 921

Re: Another for Btnbmp

Silvio

FLAT NOROUND GDIP

When these attributes are used, it doesn't work.
I have done tests without them, then it works.
There are so many ifs in the class that it would seem better to me to make a new one without all this legacy.
Best regards,
Otto

I used: C:\fwh2023\source\classes\btnbmp.prg
by Otto
Sun Mar 24, 2024 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 7520

Re: Fine tune Phi2 from Microsoft with your own data

... other supreme beings, such as Shiva, the destroyer, and Brahma, the creator, who are also different from Vishnu, and who have their own realms and attributes. - Nirguna Vedanta: This school was founded by Ramanuja, a Hindu philosopher and theologian, in the 11th century CE. Nirguna Vedanta teaches ...
by Antonio Linares
Mon Jan 15, 2024 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fine tune Phi2 from Microsoft with your own data
Replies: 11
Views: 2095

Parameterization of xReport

Hello friends, In the xReport Generator, we use the original attributes of HTML for the setup hash as much as possible, so one gets accustomed to the terminology. Here is an example: In xReport, the table head is declared as: <thead class="custom-thead"> ...
by Otto
Sat Jan 13, 2024 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameterization of xReport
Replies: 2
Views: 715

file ID in the Windows file system

... if I move to another folder?** When you move a file to another folder, the behavior in terms of the file's unique identifier (File ID) and other attributes depends on whether you are moving it within the same volume or across different volumes: **Moving Within the Same Volume:** - **File ID Retained**: ...
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: 1072

Re: Help splitting up a character address string

... = "29212" if I recall you can use the At() function to find the comma "," and substring the cAddress variable into the various attributes ... Any code help would be greatly appreciated! Thanks' ChatGPT To split the address string into separate variables for street, city, state, ...
by Otto
Wed Nov 15, 2023 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 1633

Help splitting up a character address string

... = "29212" if I recall you can use the At() function to find the comma "," and substring the cAddress variable into the various attributes ... Any code help would be greatly appreciated! Thanks Rick Lipkin
by Rick Lipkin
Tue Nov 14, 2023 9:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 1633

Re: DBF . Commit

... in C++ similarly to how Windows Explorer does, you can use the Windows API. The GetFileAttributesEx function can be used to obtain extended file attributes, including the size, and the FileTimeToLocalFileTime. Best regards, Otto https://mybergland.com/fwforum/pstime.jpg
by Otto
Sun Oct 22, 2023 10:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5329

Re: DBF to Excel Sheet, without Excel, using ADO ?

... https://imagizer.imageshack.com/v2/xq70/923/VnwHgh.png Please see the above screen-shot. All this information about the field attributes like Type, DefinedSize, etc are given by the ADO of Microsoft, not at all by any FWH function. Though we defined the type as adInteger it ...
by nageswaragunupudi
Wed Aug 16, 2023 10:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 5249

How to print character sigma in Haru?

... TPrinter oPrn:say(nRow, nCol, "S", oFont) But this doesn't work under Haru I am not using unicode. Actually, how to inspect the attributes of a font used in Haru e.g. typeface name, bold or not, etc TIA
by hua
Wed Aug 16, 2023 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to print character sigma in Haru?
Replies: 8
Views: 516

Re: DLLCALL under Fivewin

Dear Jimmy, Please declare it this way: lpSecurityAttributes AS LONG or lpSecurityAttributes AS LONGLONG // for 64 bits When you call the function, that parameter will be LPSECURITY_ATTRIBUTES() as such parameter is declared by Microsoft like this: [in, optional] LPSECURITY_ATTRIBUTES lpSecurityAttr...
by Antonio Linares
Fri Dec 02, 2022 2:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 4563

Re: DLLCALL under Fivewin

hi Antonio, You could use: thx for HB_FUNC(LPSECURITY_ATTRIBUTES) i have chage it to DLL FUNCTION CreateFile(lpFileName            AS LPSTR ,;                        dwDesiredAccess       AS DWORD ,;                        dwShareMode           AS DWORD ,;                        lpSecurityAttrib...
by Jimmy
Fri Dec 02, 2022 12:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 4563

Re: DLLCALL under Fivewin

hi Antonio, it seem i can reduce it to 4 DLL (ANSI) Call but i have Problem with some "Type" 'LPSECURITY_ATTRIBUTES' LPDWORD --- i have use Name any Type from Microsoft Webpage (see Link) * https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfileaDLL FUNCTION Creat...
by Jimmy
Thu Dec 01, 2022 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 4563
Next

Return to advanced search