TreeView in another Gui

Post a reply


In an effort to prevent automatic submissions, we require that you complete the following challenge.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :| :mrgreen: :geek: :ugeek: :arrow: :angel: :clap: :crazy: :eh: :lolno: :problem: :shh: :shifty: :sick: :silent: :think: :thumbup: :thumbdown: :salute: :wave: :wtf: :yawn: :facepalm: :bravo: :dance: :beard: :morebeard: :xmas: :HeHe: :trollface: :cookie: :rainbow: :monkeysee: :monkeysay: :happybday: :headwall: :offtopic: :superhappy: :terms: :beer:
View more smilies

BBCode is ON
[img] is OFF
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: TreeView in another Gui

Re: TreeView in another Gui

Post by GoB_Dura » 28 Jun 2017, 14:49

Danke, Danke, Danke "jNizM" - THX ;)

es funktioniert Supper

Re: TreeView in another Gui

Post by jNizM » 13 Jun 2017, 08:41

Code: Select all

Gui, 9:Add, TreeView, w380 h500

Gui, 9:Default                                                ; <----
P1    := TV_Add("• Update v2.019 (aktuellste Version)")
P1C1  := TV_Add("• neu in Menü EXTRAS", P1)
TV_Add("")

P2    := TV_Add("• Update v2.018")
P2C1  := TV_Add("• Problem FIXED", P2)
TV_Add("")

P3    := TV_Add("• Update v2.017")
P3C1  := TV_Add("• Datumseinheit in Kalenderübersicht", P3) 
P3C2  := TV_Add("• Menü hinzugefügt", P3)
P3C2a := TV_Add("• EXTRAS", P3C2)

Gui, 9:Add, Button, x308 w80 h30 g9Exit, Exit 
Gui, 9:Show, AutoSize, % "Update Info - Legende"
return

9Exit:
    Gui, 9:Destroy
return
Ref:
Gui, GuiName:Default

Re: TreeView in another Gui

Post by GoB_Dura » 13 Jun 2017, 08:29

scheint wohl so das mir da keiner helfen kann.

schade.

TreeView in another Gui

Post by GoB_Dura » 31 May 2017, 05:42

(german)

Hallo leute, ich hab ein kleines Problem

ich versuche die ganze Zeit die TreeView auf ein anderes Gui einzurichten jedoch ergibt sich folgendes Problem
Gui,9: Add, TreeView ... = Problem, funktioniert NICHT - wird aber benötigt^^

wenn ich den TreeView Gui auf Gui,9: ..... stellen würde, wird mir der eingetragene inhalt nicht angezeigt.

was mach ich falsch? hier mal das Beispiel mit Gui,1: ... welches funktioniert jedoch wird es in ,9: benötigt und sobald ich auf ,9: ... stelle, kein Inhalt.

kurzausschnitt...

Code: Select all

Gui,1:Add, TreeView, w380 h500
P1 := TV_Add("• Update v2.019 (aktuellste Version)")
P1C1 := TV_Add("• neu in Menü EXTRAS", P1)
platzhalter := TV_Add("")
P2 := TV_Add("• Update v2.018")
P2C1 := TV_Add("• Problem FIXED", P2)
platzhalter := TV_Add("")
P3 := TV_Add("• Update v2.017")
P3C1 := TV_Add("• Datumseinheit in Kalenderübersicht", P3) 
P3C2 := TV_Add("• Menü hinzugefügt", P3)
P3C2a := TV_Add("• EXTRAS", P3C2)

Gui,1:Add, Button, x308 w80 h30 g1Exit , Exit 
Gui,1:Show ,, Update Info - Legende
return
1Exit:
Gui,1:destroy
ich hoffe es kann mir da jemand helfen auf gui,9:... zu stellen. das es funktioniert.

oder hat jemand eine andere IDEE wo ich nicht zwingend eine gui,add oder gui,1:add oder gui,9:add brauche um dies mit klappenden texten anzeigen zu lassen. vl in einer msgbox oder so


MfG
Dura

Top