English
Forum

Savefile-dialog Namensvorschlag

 

rafl
i want gladly in a Savefile-dialog a Namensvorschlag for To speichernde File transfer, the itself from the Filenames of/ one before eingelesenen Eingabedatei yields. this Namensvorschlag should of Programmnutzer either übernommen or changed go can.

Bsp.: name the Eingabedatei: "test.inp", name the Ausgabedatei: "test.out". at that Open the Savefile-Dialoges should "test.out" already in the Input behind Filenames stand. according to want can then the User decide, whether it whom Filenames so stand can or changes. I have it already with different Settings the Parameters s2 when calling of savefile$ probiert, have the desired Result but not hinbekommen.
 
08/19/17  
 




ByteAttack
running by me correct???
var name$=SaveFile$("Speichere Datei","test.out")
 
XProfan X3
Website:  [...] 
Facebook:  [...] 
08/20/17  
 




rafl
OK, many Thanks. and How kombiniere I with the one filter, that with the indicated one individuellen Namens *.out is used?

my previous Programmzeile sees so from:
outdatei$=SaveFile$("Datei speichern","out-File (*.out)|*.out")
 
08/20/17  
 




ByteAttack
means with s2 standing Yes drin:

Namensvorschlag (with way) or Dateimaske

furthermore is Yes in the Dateityp Yes then *.out drin. becomes only one name in the Dateityp indicated becomes automatically one .out drangehängt.

(Profan-Help: The selected Endung becomes using, if at Filenames no Endung indicated becomes.)

means
var name$=SaveFile$("Speichere Datei","test.out")
reicht completely!
 
XProfan X3
Website:  [...] 
Facebook:  [...] 
08/20/17  
 




rafl
Vielen Thanks !
now works.
the has for me so from the Help not yield.
 
08/20/17  
 




ByteAttack
means one can indeed for Special Cases a own Save-dialog basteln. this is particularly useful, there one plenty More functions install can, or self a Preview-Click to view let can. one has plenty More control How one what save...



Have time as example a Exe drangehängt! (is only one quick hingeschriebenes example)
' only time an example - sees neither really particularly pretty from :D
 $H windows.ph
 $H messages.ph
User Messages ~wm_close
' ########################### Globale Variables and Sonstiges
Declare L#,Sz&,Filename&,Pfad&,CDButton&,VorgabePfad$,Typ&,TempExt$,TempFile$,Version&,VText&,GB&
Dim L#,4
DEF PathFindExtension(1) !"shlwapi","PathFindExtensionA"
DEF PathRemoveExtension(1) !"SHLWAPI","PathRemoveExtensionA"
VorgabePfad$="E:\myPrograms\SelfSave"' <--- Please Change, there this way must to that testetn existent his must !!!
' ########################### finds Extension at Dateiname

Proc Findext

    parameters FN$
    Declare ext#
    Dim ext#,20
    ext# = PathFindExtension(addr(FN$))
    FN$ = string $(ext#,0)
    dispose ext#
    return FN$

endproc

' ########################### only Dateiname without Extension

proc removeExt

    parameters FN$
    Declare Result#,result$
    Dim Result#,261
    string result#,0 = FN$
    PathRemoveExtension(result#)
    result$ = string $(result#,0)
    Dispose result#
    return result$

endproc

' ########################### Fensterelemente

Proc Elements

    Create("Text",%hwnd,"Dateiname:",10,12,80,23)
    Filename&=Create("Edit",%hwnd,"Test.out",87,10,400,23)
    Create("Text",%hwnd,"Pfad:",10,42,80,23)
    Pfad&=Create("Edit",%hwnd,VorgabePfad$,87,40,400,23)
    CDButton&=Create("Button",%hwnd,"Pfad ändern",500,40,100,23)
    Create("Text",%hwnd,"Dateityp:",10,72,80,23)
    Typ&=Create("ChoiceBox",%hwnd,0,87,70,400,230)
    AddStrings(Typ&,"OUT-File (*.out)")
    AddStrings(Typ&,"XML (*.xml)")
    AddStrings(Typ&,"JSON (*.json)")
    Select String(Typ&,-1,"OUT")
    TempExt$="OUT-File (*.out)"
    VText&=Create("Text",%hwnd,"Version:",10,102,80,23)
    Version&=Create("ChoiceBox",%hwnd,0,87,100,400,230)
    AddStrings(Version&,"Out-Version 1.0")
    AddStrings(Version&,"Out-Version 2.0")
    AddStrings(Version&,"Out-Version 3.0")
    Select String(Version&,-1,"Out-Version 1.0")
    GB&=Create("GroupBox",%hwnd," Options ",87,130,400,85)
    Create("CheckBox",GB&,"Schreibgeschützt",10,20,150,23)
    Create("CheckBox",GB&,"Versteckt",170,20,150,23)
    Create("CheckBox",GB&,"Komprimiert",10,50,150,23)
    Create("CheckBox",GB&,"Verschlüsselt",170,50,150,23)
    Create("DefButton",%hwnd,"Speichern",87,230,100,23)
    Create("Button",%hwnd,"Abbrechen",190,230,100,23)

ENDPROC

' ########################### New way

Proc NewDir

    var NeuPfad$=$ ChooseDir(%hwnd,"Neuen way wählen",GetText$(Pfad&),2)
    Casenote NeuPfad$="":SetText Pfad&,NeuPfad$

ENDPROC

' ########################### Update Window

Proc UpdateWindow

    Case width(%hwnd,1)<800:SetWindowPos %hwnd=%WinLeft,%WinTop-800,height(%hwnd,1);0
    Case height(%hwnd,1)<600:SetWindowPos %hwnd=%WinLeft,%WinTop-width(%hwnd,1),600;0
    SetWindowPos Sz& = 0,0-0,0;0

ENDPROC

' ########################### Mainwindow
Window Style 31
Window Title "SelfSave Beispiel"
Window %maxX+5,5 - 800,600
Cls ~GetSysColor(15)
UseFont "Verdana",16,0,0,0,0
var font&=Create("Font","Verdana",16,0,0,0,0)
SetDialogFont 1
Elements
Long L#,0=-1
Sz& = Create("StatusWindow",%HWND,"",1,L#)
SetText Sz&, 0, "Dateiname: Test | Extension: odt"
SetWindowPos %hwnd=((%maxX/2)-400),((%maxY/2)-300)-800,600;0
' ########################### Hauptschleife

WhileNot (%Umessage = ~wm_close) & (&uWnd = %hWnd)

    WaitInput
    Case %Key=4:UpdateWindow
    Case Clicked(CDButton&):NewDir

    if GetText$(Typ&)=TempExt$

    else

        removeExt GetText$(Filename&)

        if $(0)=""

            TempFile$="Neue Datei"

        else

            TempFile$=$(0)

        endif

        if GetText$(Typ&)="OUT-File (*.out)"

            SetText Filename&,TempFile$+".out"
            SetText Sz&, 0, "Dateiname: "+Tempfile$+" | Extension: out"
            EnableWindow Version&,1
            EnableWindow VText&,1

        elseif GetText$(Typ&)="XML (*.xml)"

            SetText Filename&,TempFile$+".xml"
            SetText Sz&, 0, "Dateiname: "+Tempfile$+" | Extension: xml"
            EnableWindow Version&,0
            EnableWindow VText&,0

        elseif GetText$(Typ&)="JSON (*.json)"

            SetText Filename&,TempFile$+".json"
            SetText Sz&, 0, "Dateiname: "+Tempfile$+" | Extension: json"
            EnableWindow Version&,0
            EnableWindow VText&,0

        endif

        TempExt$=GetText$(Typ&)

    endif

EndWhile

Dispose L#

662 kB
Bezeichnung:SelfSave
Hochgeladen:08/21/17
Downloadcounter109
Download
 
Website:  [...] 
Facebook:  [...] 
08/21/17  
 




ByteAttack
video Preview: (YouTube) [...] 
 
XProfan X3
Website:  [...] 
Facebook:  [...] 
08/21/17  
 



Answer


Topictitle, max. 100 characters.
 

Systemprofile:

no Systemprofil laid out. [anlegen]

XProfan:

 Posting  Font  Smilies  ▼ 

Please register circa a Posting To verfassen.
 

Topic-Options

6.088 Views

Untitledvor 0 min.
RudiB.04/15/22
Michael Hettner09/02/21
Manfred Barei03/02/19
rafl02/17/19
More...

Themeninformationen

this Topic has 2 subscriber:

ByteAttack (4x)
rafl (3x)


Admins  |  AGB  |  Applications  |  Authors  |  Chat  |  Privacy Policy  |  Download  |  Entrance  |  Help  |  Merchantportal  |  Imprint  |  Mart  |  Interfaces  |  SDK  |  Services  |  Games  |  Search  |  Support

One proposition all XProfan, The there's!


My XProfan
Private Messages
Own Storage Forum
Topics-Remember-List
Own Posts
Own Topics
Clipboard
Log off
 Deutsch English Français Español Italia
Translations

Privacy Policy


we use Cookies only as Session-Cookies because of the technical necessity and with us there no Cookies of Drittanbietern.

If you here on our Website click or navigate, stimmst You ours registration of Information in our Cookies on XProfan.Net To.

further Information To our Cookies and moreover, How You The control above keep, find You in ours nachfolgenden Datenschutzerklärung.


all rightDatenschutzerklärung
i want none Cookie