Search found 474 matches: sizes

Return to advanced search

Re: Sorting strings in a NON logical way

Mr. Rao, You look a different way... My dbf field will hold data like this (sizes) cData = "XL,S,M,2X,3X" // or any combination like ( "S,L,M") Make a array from cData (I can) aArray1 := { "XL", "S", "M", "2X", ...
by Marc Venken
Tue Nov 26, 2024 11:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sorting strings in a NON logical way
Replies: 5
Views: 112

Re: Sorting strings in a NON logical way

Let me first make sure if I understood you requirements properly. You have a field in your dbf where different sizes are recorded as a list of numeric values. For example, like this: "51,52,53,54,55,56,57,58,59      " These values correspond the sizes: "L,M,S,XL,XXL,4XL,5XL,XS,XXXL" ...
by nageswaragunupudi
Tue Nov 26, 2024 4:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sorting strings in a NON logical way
Replies: 5
Views: 112

Sorting strings in a NON logical way

I have a dbf field that contains data for sizes of garment "L,M,S,XL,XXL,4XL,5XL,XS,XXXL" "M,L,S,XL" the correct sort order would be "XS,S,M,L,XL,XXXL,4XL,5XL" "S,M,L,XL" The sortoptions to compare with ...
by Marc Venken
Mon Nov 25, 2024 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sorting strings in a NON logical way
Replies: 5
Views: 112

Re: xbrowse(autosort) + tdolphin - erro

... oBrw DATASOURCE oQry; COLUMNS "chave","data","nome"; HEADERS "Chave","Data","Nome"; SIZES 100,300,100; OF oForm SIZE 340,215 PIXEL AUTOSORT LINES oBrw:CreateFromCode() ACTIVATE DIALOG oForm CENTER RETURN nil
by MGA
Thu Nov 14, 2024 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 198

xbrowse vertical right border

... PIXEL NOBORDER ; COLS 1,2,3,4,5,6; HEADERS "Ruota", "E1", "E2", "E3", "E4", "E5" ; SIZES 80,30,30,30,30,30 ; ARRAY adata FONT oFontx WITH OBJECT oBrw :lDrawBorder := .t. :nClrBorder := CLR_RED .... end
by Silvio.Falconi
Sun Oct 27, 2024 5:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse vertical right border
Replies: 6
Views: 250

Re: problem with xbrowse show adata

Code: Select all  Expand view  RUN
       COLSIZES 220,110,110;
 

Error: You specified column sizes less than required to display the full value.
Solutions:
1) Specify adequate width.
or
2) The Best way. Do not specify COLSIZES and let xbrowse calculate the width required
by nageswaragunupudi
Mon Oct 07, 2024 1:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrowse show adata
Replies: 1
Views: 96

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... data types you're using are compatible between 32-bit and 64-bit environments. For example, `USHORT`, `BOOL`, and other types may have different sizes in a 64-bit system. Consider replacing `USHORT` with `UINT16` or using fixed-size types from `<stdint.h>` (like `uint16_t`), which will ...
by nnicanor
Wed Sep 25, 2024 2:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 1393

Question about Memo Field Storage Strategy?

... forget about so much overhead - please note that I am making these considerations for use on a WEBSERVER or in an RDP environment. Also, the file sizes in the area I am working in are manageable. I also think that for your own application, you do not necessarily have to follow the standard. I ...
by Otto
Mon Jul 01, 2024 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about Memo Field Storage Strategy?
Replies: 3
Views: 351

Re: a folder into a dialog

... balanced interface. Responsive Design: Ensure the layout is fully responsive, adapting not only to the content but also to different screen sizes and orientations. This is crucial for maintaining usability across various devices. Best Practices: User Testing: Conduct thorough user testing ...
by Otto
Thu Jun 13, 2024 11:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: a folder into a dialog
Replies: 28
Views: 2334

Re: Build your FWH app using hbmk2.exe and MSVC 32&64

One of the advantages of MSVC is the smaller executables sizes. Another one is the higher C compile speed if -MP switch is used (something similar exists for BCC64 and BCC32 CLANG, but not for BCC32).
by Enrico Maria Giordano
Mon Jun 03, 2024 5:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build your FWH app using hbmk2.exe and MSVC 32&64
Replies: 48
Views: 4469

Re: colorize btnbmp with diagonal

... but I wanted it automatically, I didn't want to insert the width and height of each button, if in a window I have 80 buttons all with different sizes, how many lines of source do you think I should write? ciertamente cariño, pero lo quería automáticamente, no quería insertar el ancho y alto ...
by Silvio.Falconi
Mon Apr 15, 2024 11:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: colorize btnbmp with diagonal
Replies: 9
Views: 1236

Re: Centrar texto VERTICALMENTE

But de quality of the typography in the PDF is not good.

Yes. Also PDF file size is large.

I guess the best solution must be to use HaruPDF.

Yes. Simple and smaller pdf file sizes.
by nageswaragunupudi
Wed Apr 10, 2024 12:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Centrar texto VERTICALMENTE
Replies: 12
Views: 1455

Different sizes of dialog

I would like to have the same resolution as my dialogs if I use a normal computer with 1280X1024 resolution (Win10) or if I use a tablet (10' tab type) with 1280X800 resolution (Win10) because every time I have to recompile my applications, I use to create my dialog these commands #include 'fivewin....
by Silvio.Falconi
Wed Mar 13, 2024 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Different sizes of dialog
Replies: 0
Views: 404

Re: Does anyone have an Envelope Printing module ?

... into ( adjustable ) paper trays, face down, seal to the right. They would print in landscape mode. I think that could be done very easily. What sizes does your client currently use ? We could start with those, and then expand. Since I work with the Printer class a lot, I believe I can actually ...
by TimStone
Sat Mar 02, 2024 9:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does anyone have an Envelope Printing module ?
Replies: 10
Views: 1829

Re: Does anyone have an Envelope Printing module ?

... fields like Company Contact Street City, State and Zipcode In my Customers old Sage Product it allowed him to print envelops in all the Standard sizes and I was hoping Someone had an Envelope routine that I could select a "standard size" and print a return address on the Left Side and ...
by Rick Lipkin
Fri Mar 01, 2024 10:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does anyone have an Envelope Printing module ?
Replies: 10
Views: 1829
Next

Return to advanced search