Jump to content

_StringCompact() - Compact a string to a certain number of characters left and right.


Recommended Posts

Posted (edited)

I found the code I used for this. There are magic numbers in there, but they are documented and the constants can be put back if you wish. Don't get mad at me - this is exactly the method I used.  :sweating:

Styles - $ES_AUTOHSCROLL, $ES_READONLY

Extended Style - $WS_EX_TRANSPARENT

Global $sFilePath = "C:\Documents and Settings\User\Desktop\one_two_three_four_five_six_seven_eight.txt"
Global $sNewPath = "C:\Documents and Settings\User\Desktop\New Folder\1345678.txt"

_ExampleGUI($sFilePath, $sNewPath)

Func _ExampleGUI($sFilePath, $sNewPath)
    Local $sText, $iGUIHeight, $iGUIWidth
    $sText = "Truncation Alternative"
    $iGUIWidth = 256
    $iGUIHeight = 148

    Local $hGUI = GUICreate($sText, $iGUIWidth, $iGUIHeight, Default, Default, Default, Default)
    GUISetBkColor(0xF0EEE0, $hGUI)

    GUICtrlCreateLabel("Source:", 10, 10, 50, 20) ; Source File
    GUICtrlSetFont(-1, 9, 600)

    ; The text may be too long to fit on a label, but an Input control can be made to look like a label.
    GUICtrlCreateInput(StringRegExpReplace($sFilePath, "(.*\\)+", ""), 63, 10, 183, 20, BitOR(0x80, 0x800), 0x20) ; BitOR($ES_AUTOHSCROLL, $ES_READONLY), $WS_EX_TRANSPARENT)
    GUICtrlSetFont(-1, 9)
    GUICtrlSetBkColor(-1, 0xF0EEE0)

    GUICtrlCreateLabel("Folder:", 10, 36, 50, 20) ; Output Folder
    GUICtrlSetFont(-1, 9, 600)

    Local $hNewFolder = GUICtrlCreateInput(StringRegExpReplace($sNewPath, "(.+\\)(.+)(\\)(.+\z)", "$2"), 63, 36, 151, 20, BitOR(0x80, 0x800), 0x20) ; BitOR($ES_AUTOHSCROLL, $ES_READONLY), $WS_EX_TRANSPARENT)
    GUICtrlSetFont(-1, 9)
    GUICtrlSetBkColor(-1, 0xF0EEE0)

    GUISetState()

    While 1
        $msg = GUIGetMsg()
        If $msg = -3 Then ExitLoop ; $GUI_EVENT_CLOSE
    WEnd
EndFunc
Edited by czardas
Posted
  On 6/23/2014 at 9:41 AM, czardas said:

Don't get mad at me - this is exactly the method I used.  :sweating:

I don't care anymore. Thanks for posting.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)

Having the option to avoid truncation without making a mess of your design is nice. Both solutions have merit. :)

The code was written a while ago using an older version.

Edited by czardas

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...