M Marshall Brooks Member Local time Today, 01:32 Joined Feb 28, 2023 Messages 696 Dec 20, 2023 #21 @mike60smart - Is there a way to add the red X Close button to the form, instead of having to right-click and choose Close?
@mike60smart - Is there a way to add the red X Close button to the form, instead of having to right-click and choose Close?
mike60smart Registered User. Local time Today, 06:32 Joined Aug 6, 2017 Messages 1,991 Dec 20, 2023 #22 Marshall Brooks said: @mike60smart - Is there a way to add the red X Close button to the form, instead of having to right-click and choose Close? Click to expand... Hi Always best to add a Command Button as shown in the attached. Attachments ChapNum4JosefP.zip ChapNum4JosefP.zip 36.2 KB · Views: 76
Marshall Brooks said: @mike60smart - Is there a way to add the red X Close button to the form, instead of having to right-click and choose Close? Click to expand... Hi Always best to add a Command Button as shown in the attached.
M Marshall Brooks Member Local time Today, 01:32 Joined Feb 28, 2023 Messages 696 Dec 20, 2023 #23 Thank you!!!!
P Pat Hartman Super Moderator Staff member Local time Today, 01:32 Joined Feb 19, 2002 Messages 45,405 Dec 22, 2023 #24 Marshall Brooks said: but I'm not sure if Integer will allow leading zeros. Click to expand... Numeric data types do not allow leading zeros because they are numbers and numbers by convention do not support leading or trailing zeros. If your text field included leading zeros, 0100 would sort in its proper place after 0001, 0002, 0003, etc.
Marshall Brooks said: but I'm not sure if Integer will allow leading zeros. Click to expand... Numeric data types do not allow leading zeros because they are numbers and numbers by convention do not support leading or trailing zeros. If your text field included leading zeros, 0100 would sort in its proper place after 0001, 0002, 0003, etc.
M Marshall Brooks Member Local time Today, 01:32 Joined Feb 28, 2023 Messages 696 Jan 2, 2024 #25 @Pat Hartman - Thanks for the confirmation. My data had 05, 11, 100 and it sorted like that until I added length to the sort algorithm.
@Pat Hartman - Thanks for the confirmation. My data had 05, 11, 100 and it sorted like that until I added length to the sort algorithm.
P Pat Hartman Super Moderator Staff member Local time Today, 01:32 Joined Feb 19, 2002 Messages 45,405 Jan 3, 2024 #26 You're welcome.