|
You last visited: Today at 19:23
Advertisement
CreateListViewItem
Discussion on CreateListViewItem within the AutoIt forum part of the Coders Den category.
06/09/2011, 23:44
|
#1
|
elite*gold: 0
Join Date: May 2009
Posts: 127
Received Thanks: 21
|
CreateListViewItem
Hey Leuts =)
habe mal wieder ne Frage.
Bin an einem Bot, bzw. eher an einem kleinen Arbeitserleichtere/abnehmer dran =)
Er soll aus 2 Inputs die Daten rauslesen und in 2 verschiedene Spalten in einem ListView packen. Nicht in eine normale Liste.
Gleichzeitig speichert er diese Werte auch in einer Ini und liest diese beim
nächsten Starten des Bottes aus und erstellt sofort die ListView einträge.
Wie kann ich nun bestimmen in welches Spalte er welchen Wert
schreiben soll und wie lese ich später nur einen der beiden werte aus?
Script:
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Global $Ini = @ScriptDir & "\Daten.ini"
$Helper = GUICreate("Helper", 372, 344, 192, 124)
GUICtrlCreateLabel("Wert1", 8, 16, 33, 17)
$Input1 = GUICtrlCreateInput("", 48, 16, 121, 21)
GUICtrlCreateLabel("Wert2", 200, 16, 33, 17)
$Input2 = GUICtrlCreateInput("", 240, 16, 121, 21)
$ListView1 = GUICtrlCreateListView("Wert1|Wert2", 8, 72, 353, 265)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 200)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 200)
$Einlesen = GUICtrlCreateButton("Die beiden Werte einlesen und auflisten!", 8, 40, 353, 25)
GUISetState(@SW_SHOW)
$Werte = IniReadSection($Ini,"Werte")
If not @error Then
For $i = 1 To $Werte[0][0]
GUICtrlCreateListViewItem($Werte[$i][0],$ListView1)
Next
EndIf
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Einlesen
GUICtrlCreateListViewItem(GuiCtrlRead($Input1),$ListView1)
IniWrite($Ini,"Werte",GuiCtrlRead($Input1),GuiCtrlRead($Input2))
EndSwitch
WEnd
Liebe Grüße
Und vielen Dank *scarface*
|
|
|
06/09/2011, 23:57
|
#2
|
elite*gold: 52
Join Date: Oct 2010
Posts: 1,998
Received Thanks: 389
|
Schau dir mal die GuiListView.au3 an. Den Wert der einzelnen Spalten kannst du mit GUICtrlSetData(-1,|BlaBla"). Einfach mit | abtrennen.
|
|
|
06/10/2011, 14:19
|
#3
|
elite*gold: 0
Join Date: May 2009
Posts: 127
Received Thanks: 21
|
Danke, das hat mir schon weitergeholfen =)
Jedoch noch eine Frage:
PHP Code:
AdlibRegister("CheckEnable",1000)
Func CheckEnable()
If GuiCtrlRead($Lvl) Not = "" And GuiCtrlRead($Kaufpreis) Not = "" Then
GUICtrlSetState($Kaufen,$GUI_ENABLE)
Else
GUICtrlSetState($Kaufen,$GUI_DISABLE)
EndIf
EndFunc
Gibt es eine einfachere Version zu überprüfen ob ein Input gefüllt ist und wenn ja einen Button Enablen?
|
|
|
06/10/2011, 15:27
|
#4
|
elite*gold: 0
Join Date: Aug 2010
Posts: 880
Received Thanks: 113
|
Quote:
Originally Posted by *scarface*
Danke, das hat mir schon weitergeholfen =)
Jedoch noch eine Frage:
PHP Code:
AdlibRegister("CheckEnable",1000)
Func CheckEnable()
If GuiCtrlRead($Lvl) Not = "" And GuiCtrlRead($Kaufpreis) Not = "" Then
GUICtrlSetState($Kaufen,$GUI_ENABLE)
Else
GUICtrlSetState($Kaufen,$GUI_DISABLE)
EndIf
EndFunc
Gibt es eine einfachere Version zu überprüfen ob ein Input gefüllt ist und wenn ja einen Button Enablen?
|
PHP Code:
Func CheckEnable()
If not GuiCtrlRead($Lvl) = "" or not GuiCtrlRead($Kaufpreis) = "" Then
GUICtrlSetState($Kaufen,$GUI_ENABLE)
Else
GUICtrlSetState($Kaufen,$GUI_DISABLE)
EndIf
EndFunc
|
|
|
06/10/2011, 15:31
|
#5
|
elite*gold: 52
Join Date: Oct 2010
Posts: 1,998
Received Thanks: 389
|
Nur blöd, dass die Funktion ohne AdlibRegister nicht aufgerufen wird.
Eine bessere Alternative wäre GUIRegisterMsg. Allerdings wüsste ich jetzt nicht, welchen Parameter man da nehmen kann.
|
|
|
06/10/2011, 15:42
|
#6
|
elite*gold: 0
Join Date: May 2009
Posts: 127
Received Thanks: 21
|
Habe mir mal eben GuiRegisterMSG angeschaut und finde mich in den Window Codes nicht zurecht^^ Wonach sollte ich suchen?
Habe auch schon nen nächstes Problem...
PHP Code:
Func CheckItem()
$SelectedItem = _GUICtrlListView_GetSelectedIndices($ItemList,1)
If not @error Then
GuiCtrlSetData($Item,"")
GuiCtrlSetData($Item,_GUICtrlListView_GetItemText($ItemList,$SelectedItem))
EndIf
EndFunc
Diese Funktion rufe ich auch über Adlib auf, genau wie die "CheckEnable" Funktion.
Hierbei soll das ausgewählte Item aus dem Listview in ein Inputfeld kopiert werden sobal eins ausgewälht wurde.
Allerdings nimmt er hier immer nur das erste item...er prüft garnicht welches "selected" ist.
Vielen Dank für eure Hilfe!
Lg Scarface
|
|
|
06/10/2011, 15:51
|
#7
|
elite*gold: 52
Join Date: Oct 2010
Posts: 1,998
Received Thanks: 389
|
Du kannst aber das ganze auch direkt im dem Listview bearbeiten, dass du die Inputbox nicht brauchst.
|
|
|
06/12/2011, 16:47
|
#8
|
elite*gold: 0
Join Date: May 2009
Posts: 127
Received Thanks: 21
|
Wie mache ich das?
Bzw. wo muss ich dafür nach suchen?
|
|
|
06/12/2011, 17:05
|
#9
|
elite*gold: 52
Join Date: Oct 2010
Posts: 1,998
Received Thanks: 389
|
Kannst du mit dem Style $LVS_EDITLABELS machen. Allerdings ist der Style soweit ich weis nicht funktions tüchtig. Wenn ich nachher Zeit hab poste ich nen anderen Weg.
|
|
|
06/12/2011, 18:24
|
#10
|
elite*gold: 0
Join Date: May 2009
Posts: 127
Received Thanks: 21
|
Das wäre echt nett!
Kann ich damit dann einfach ein neues ListView Item erstllen und dann im ListView alle Daten an-/eingeben?
|
|
|
06/12/2011, 18:27
|
#11
|
elite*gold: 0
Join Date: May 2009
Posts: 127
Received Thanks: 21
|
Habe den Stil gerade mal ausprobiert.
Bei meinem Listview[5 Spalten] kann ich die erste Spalte editieren. Jedoch sobal ich Enter drücke wird es wieder in den alten Text umgewandelt.
Bischen doof...habe alle Daten im ListView in einer .ini gespeichert, dort müssten die dann auch direkt bearbeitet werden dann.
Vielen Danke =)
|
|
|
06/12/2011, 21:41
|
#12
|
elite*gold: 52
Join Date: Oct 2010
Posts: 1,998
Received Thanks: 389
|
So jetzt hab ich zeit :P
Ich hab grad nur ein altes script mit der UDF gefunden.
PHP Code:
#include <StaticConstants.au3> #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <EditConstants.au3> #include <ListviewConstants.au3> #include <GUIListView.au3> #include <Notify_UDF.au3>
Opt("GUIOnEventMode", 1) $EditBox = GUICreate('', 200, 30, -1, -1, BitOR($WS_POPUP, $WS_BORDER), $WS_EX_TOPMOST) $dummy = GUICtrlCreateDummy() Global $hEdit = GUICtrlCreateInput('', 5, 5, 190, 20, $SS_CENTER) HotKeySet('{ESC}', '_EscEdit') Global $AccelKeys[1][2] = [["{ENTER}", $dummy]] GUICtrlSetOnEvent($dummy, "_EditEnter") GUISetAccelerators($AccelKeys) guisetstate(@sw_hide) Global $hWndGlobal Global $currentItem[2] $main = GUICreate("", 300, 590, -1, -1, $WS_SYSMENU) GUISetOnEvent($GUI_EVENT_CLOSE, "_CloseMain", $main) Global $ListView1 = GUICtrlCreateListView("Links |Anzahl ", 30, 183 - 30, 235, 101) $ListViewItem1_1 = GUICtrlCreateListViewItem("Link 1|1", $ListView1) $ListViewItem1_2 = GUICtrlCreateListViewItem("Link 2|1", $ListView1) $ListViewItem1_3 = GUICtrlCreateListViewItem("Link 3|1", $ListView1) $ListViewItem1_4 = GUICtrlCreateListViewItem("Link 4|1", $ListView1) guisetstate() _Notify_SetNotifytoFunc($ListView1, $NM_DBLCLK, "_NM_DBLCLK") _StartUp_Notify()
Func _CloseMain() Exit EndFunc ;==>_CloseMain
While 1
WEnd
Func _NM_DBLCLK($hWndFrom, $iIDFrom, $iNotifyCode, $wParam, $lParam)
Local $tInfo = DllStructCreate($tagNMITEMACTIVATE, $lParam), $tNMHDR $iCode = DllStructGetData($tNMHDR, "Code") Local $Info[5] = [$hWndFrom, $iIDFrom, $iCode, DllStructGetData($tInfo, "Index"), _ DllStructGetData($tInfo, "SubItem")] If $Info[3] = -1 Then Return _GUICtrlListView_SetSelectedColumn($Info[1], $Info[4]) Local $mouse = MouseGetPos(), $posEdit = WinGetPos($EditBox) Local $posGUI = WinGetPos($main), $posLV = ControlGetPos($main, '', $hWndFrom) Local $colInfo = _GUICtrlListView_GetColumn($Info[1], $Info[4]), $sumWidth = 0, $tmp For $i = 0 To $Info[4] $tmp = _GUICtrlListView_GetColumn($Info[1], $i) $sumWidth += $tmp[4] Next $sumWidth -= $colInfo[4] Local $xPos = $posGUI[0] + $posLV[0] + $sumWidth If $xPos + $colInfo[4] + 10 > @DesktopWidth Then $xPos = @DesktopWidth - ($colInfo[4] + 10) If $xPos < 0 Then $xPos = 0 WinMove($EditBox, '', $xPos, $mouse[1] - $posEdit[3], $colInfo[4] + 10) GUICtrlSetData($hEdit, _GUICtrlListView_GetItemText($Info[1], $Info[3], $Info[4])) $currentItem[0] = $Info[3] $currentItem[1] = $Info[4] GUISetState(@SW_SHOW, $EditBox) Global $hWndGlobal = $hWndFrom EndFunc ;==>_NM_DBLCLK
Func _EscEdit() GUISetState(@SW_HIDE, $EditBox) EndFunc ;==>_EscEdit
Func _EditEnter() _GUICtrlListView_SetItemText($hWndGlobal, $currentItem[0], GUICtrlRead($hEdit), $currentItem[1]) GUISetState(@SW_HIDE, $EditBox) EndFunc ;==>_EditEnter
Hier die UDF Notify:
PHP Code:
Global $aNotifyHwnd[1][2] Global Const $UDF_WM_NOTIFY = 0x004E Global Const $UDF_tagNMHDR = "hwnd hWndFrom;int IDFrom;int Code;int wparam" Global $hTimerCallBackHandle Global $sExtNotify
; #FUNCTION# ===================================================================================================================================================================== ; Name...........: _Notify_SetHandletoFunc ; Description ...: Ordnet einem Handle eine Funktion zu ; Syntax.........: _Notify_SetHandletoFunc($hWnd, $Function = "", $aFilter="") ; Parameters ....: $hWnd - Handle oder ControlId des Controls ; $Function - Funktion die dem ControlHandle zugeordnet werden soll. Wenn "" dann wird der Eintrag aus dem Array gelöscht ; $aFilter - Übergabe eines Array´s das die Notify Codes enthällt die an die Funktion weitergeleitet werden. Wenn nicht gesetzt, ; werden alle NotifyCodes an die Funktion weitergeleitet ; Return values .: Success - 1 ; Failure - -1, sets @error to: ; |1 - Übergebenes Handle ist kein Handle ; |2 - Handle existiert nicht im Array und kann deshalb nicht zurückgesetzt werden ; |3 - Zu einem Handle wurde eine Funktion zugeordnet, zuordnung einer Funktion zu NotifyCode nicht möglich. ;; Author ........: Raupi @ Autoit.de ; Modified.......: ; Remarks .......: Zugeordnete Funktionen müssen den Parameterkopf $hWndFrom, $iIDFrom, $iNotifyCode, $wParam, $lParam haben ;; Wenn Parameter $iNotifyCode und $Function nicht gesetzt sind, werden die dem Handle($ihWnd) gehörenden Zuordnungen gelöscht. ; Wenn per iNotifyCode = "Func" einem Handle eine Funktion zugeordnet wurde, werden Zuordnungen einer Funktion, zu einem NotifyCode für diese Handle ignoriert. ; Wird per NotifyCode = "Func" einem Handle eine Funktion zugeordnet, dann werden alle Funktionszuordnungen zu den NotifyCodes für dieses Handle gelöscht. ; ================================================================================================================================================================================
Func _Notify_SetHandletoFunc($hWnd, $Function = "", $aFilter="") Local $iResultHandle If Not IsHWnd($hWnd) Then $hWnd = GUICtrlGetHandle($hWnd) If $hWnd = 0 Then Return SetError(1, 0, -1) EndIf If $Function = "" then _Notify_SetNotifytoFunc($hWnd) If @Error then Return SetError(2,0,-1) If Not IsArray($aFilter) And $Function <>"" Then _Notify_SetNotifytoFunc($hWnd, "", $Function ) If @error then Return SetError(3,0,-1) Return 1 Endif If IsArray($aFilter) Then For $i = 1 to Ubound ($aNotifyHwnd, 1) - 1 If $aNotifyHwnd[$i][0] = $hWnd Then $iResultHandle = $i Next If $iResultHandle <> 0 then _Notify_SetNotifytoFunc($hWnd, "", "" ) For $i= 0 to Ubound($aFilter)-1 _Notify_SetNotifytoFunc($hWnd, $aFilter[$i], $Function ) Next Return 1 EndIf EndFunc
Func _Set_Ext_NotifyFunc($Function) $sExtNotify = $Function EndFunc
; #FUNCTION# ===================================================================================================================================================================== ; Name...........: _Notify_SetNotifytoFunc ; Description ...: Ordnet einem Handle oder einem NotifyCode eine Funktion zu ; Syntax.........: _Notify_SetNotifytoFunc($hWnd, [$iNotifyCode = ""[, $Function = ""]]) ; Parameters ....: $hWnd - Handle oder ControlId des Controls (Wenn Parameter 2 und 3 nicht gesetzt, werden Zuordnungen zum Handle gelöscht) ; $iNotifyCode - NotifyCode für das eine Funktion zugeordnet werden soll. Ist iNotifyCode = "Func" wird die Funktion dem Handle zugeordnet ; $Function - Funktion die dem NotifyCode oder dem ControlHandle zugeordnet werden soll. Wenn "" dann wird der Eintrag aus dem Array gelöscht ; ; Return values .: Success - 1 ; Failure - -1, sets @error to: ; |1 - Übergebenes Handle ist kein Handle ; |2 - Handle existiert nicht im Array und kann deshalb nicht zurückgesetzt werden ; |3 - Zu einem Handle wurde eine Funktion zugeordnet, zuordnung einer Funktion zu NotifyCode nicht möglich. ;; Author ........: Raupi @ Autoit.de ; Modified.......: ; Remarks .......: Zugeordnete Funktionen müssen den Parameterkopf $hWndFrom, $iIDFrom, $iNotifyCode, $wParam, $lParam haben ;; Wenn Parameter $iNotifyCode und $Function nicht gesetzt sind, werden die dem Handle($ihWnd) gehörenden Zuordnungen gelöscht. ; Wenn per iNotifyCode = "Func" einem Handle eine Funktion zugeordnet wurde, werden Zuordnungen einer Funktion, zu einem NotifyCode für diese Handle ignoriert. ; Wird per NotifyCode = "Func" einem Handle eine Funktion zugeordnet, dann werden alle Funktionszuordnungen zu den NotifyCodes für dieses Handle gelöscht. ; ================================================================================================================================================================================ Func _Notify_SetNotifytoFunc($hWnd, $iNotifyCode = "", $Function = ""); Local $NewArray[1][2], $iResultHandle, $TempArray, $iCount, $iResultNotifyCode, $TempCopyArray[1] If Not IsHWnd($hWnd) Then $hWnd = GUICtrlGetHandle($hWnd) If $hWnd = 0 Then Return SetError(1, 0, -1) EndIf For $i = 0 To UBound($aNotifyHwnd, 1) - 1 If $aNotifyHwnd[$i][0] = $hWnd Then $iResultHandle = $i Next If $iResultHandle = 0 Then If $iNotifyCode = "" And $Function = "" Then Return SetError(2, 0, -1) $iCount = UBound($aNotifyHwnd, 1) ReDim $aNotifyHwnd[$iCount + 1][2] $aNotifyHwnd[$iCount][0] = $hWnd $aNotifyHwnd[$iCount][1] = $NewArray $aNotifyHwnd[0][0] = $iCount $iResultHandle = $iCount ElseIf $iResultHandle <> 0 And $iNotifyCode = "" And $Function = "" Then ReDim $TempCopyArray[UBound($aNotifyHwnd, 1) - 1][2] For $i = 0 To $iResultHandle - 1 $TempCopyArray[$i][0] = $aNotifyHwnd[$i][0] $TempCopyArray[$i][1] = $aNotifyHwnd[$i][1] Next For $i = $iResultHandle + 1 To UBound($aNotifyHwnd, 1) - 1 $TempCopyArray[$i - 1][0] = $aNotifyHwnd[$i][0] $TempCopyArray[$i - 1][1] = $aNotifyHwnd[$i][1] Next $TempCopyArray[0][0] = UBound($aNotifyHwnd, 1) - 2 $aNotifyHwnd = $TempCopyArray Return 1 EndIf $TempArray = $aNotifyHwnd[$iResultHandle][1] If $iNotifyCode = "Func" And $Function <> "" Then ReDim $TempArray[2][3] $TempArray[1][0] = "Func" $TempArray[1][1] = $Function $TempArray[0][0] = 1 $aNotifyHwnd[$iResultHandle][1] = $TempArray Return 1 EndIf For $i = 0 To UBound($TempArray, 1) - 1 If $TempArray[$i][0] = "Func" Then Return SetError(3, 0, -1) If $TempArray[$i][0] = $iNotifyCode Then $iResultNotifyCode = $i Next If $iResultNotifyCode = 0 Then $iCount = UBound($TempArray, 1) ReDim $TempArray[$iCount + 1][2] $TempArray[$iCount][0] = $iNotifyCode $TempArray[$iCount][1] = $Function $TempArray[0][0] = $iCount $aNotifyHwnd[$iResultHandle][1] = $TempArray ElseIf $iResultNotifyCode <> 0 And $Function = "" Then ReDim $TempCopyArray[UBound($TempArray, 1) - 1][2] For $i = 0 To $iResultNotifyCode - 1 $TempCopyArray[$i][0] = $TempArray[$i][0] $TempCopyArray[$i][1] = $TempArray[$i][1] Next For $i = $iResultNotifyCode + 1 To UBound($TempArray, 1) - 1 $TempCopyArray[$i - 1][0] = $TempArray[$i][0] $TempCopyArray[$i - 1][1] = $TempArray[$i][1] Next $TempCopyArray[0][0] = UBound($TempArray, 1) - 2 $aNotifyHwnd[$iResultHandle][1] = $TempCopyArray Return 1 ElseIf $iResultNotifyCode <> 0 And $Function <> "" Then $TempArray[$iResultNotifyCode][1] = $Function $aNotifyHwnd[$iResultHandle][1] = $TempArray EndIf EndFunc ;==>_SetFunc_Notify
; #FUNCTION# ==================================================================================================================== ; Name...........: _StartUp_Notify ; Description ...: Registriert WM_NOTIFY ; Syntax.........: _StartUp_Notify($bStartStop = True) ; Parameters ....: $bStartStop - Starten = True, Stoppen = False, Default ist True ; ; ; Return values .: Success - 1 ; Failure - -1, sets @error to: ; |1 - Parameter nicht True oder False ; |2 - Es wurden noch keine Funktionen zugeordnet. ; ;; Author ........: Raupi @ Autoit.de ; Modified.......: ; Remarks .......: ; =============================================================================================================================== Func _StartUp_Notify($bStartStop = True); If Not IsBool($bStartStop) Then Return SetError(1, 0, -1) If $aNotifyHwnd[0][0] < 1 Then Return SetError(2, 0, -1) If $bStartStop = True Then GUIRegisterMsg($UDF_WM_NOTIFY, "UDF_NOTIFY_HANDLER") If @error Then SetError(3, 0, -1) Else GUIRegisterMsg($UDF_WM_NOTIFY, "") EndIf Return 1 EndFunc ;==>_StartUp_Notify
Func UDF_NOTIFY_HANDLER($hWnd, $Msg, $wParam, $lParam) Local $hWndFrom, $iIDFrom, $iCode, $tNMHDR, $Func = "", $temp, $sBuffer Local $TempLparam =$lparam If $sExtNotify<>"" Then Call ($sExtNotify,$hWnd, $Msg, $wParam, $lParam) If @error = 0xDEAD And @extended = 0xBEEF Then ConsoleWrite("Function does not exist or invalid number of parameters" & @CRLF) EndIf $tNMHDR = DllStructCreate($UDF_tagNMHDR, $lParam) $hWndFrom = HWnd(DllStructGetData($tNMHDR, "hWndFrom")) $iIDFrom = DllStructGetData($tNMHDR, "IDFrom") $iCode = DllStructGetData($tNMHDR, "Code") For $i = 1 To $aNotifyHwnd[0][0] If $aNotifyHwnd[$i][0] = $hWndFrom Then $temp = $aNotifyHwnd[$i][1] If $temp[1][0] = "Func" Then $Func = $temp[1][1] ExitLoop EndIf For $i = 1 To $temp[0][0] If $temp[$i][0] = $iCode Then $Func = $temp[$i][1] Next EndIf Next If $Func <> "" Then Call($Func,$hWndFrom, $iIDFrom, $iCode,$wParam,$lParam) If @error = 0xDEAD And @extended = 0xBEEF Then ConsoleWrite("Function does not exist or invalid number of parameters" & @CRLF) Return 'GUI_RUNDEFMSG' EndIf Return 'GUI_RUNDEFMSG' EndFunc ;==>UDF_NOTIFY_HANDLER
|
|
|
06/13/2011, 19:21
|
#13
|
elite*gold: 0
Join Date: May 2009
Posts: 127
Received Thanks: 21
|
Wow, danke
Da muss ich mich jetzt erstmal zurechtfinden...
Habe noch eine letzte Bitte...
Kannst du mir ncoh erklären, wie ich überprüfe ob eines meiner gesamten ListViewItems einmal angeklickt wurde?
Daraufhin muss er dieses nämlich auslesen und in ein Input übertragen den man dort editieren kann. So wie ich das gemacht habe, liest er pausenlos welches Item selected ist, und da er dann andauernd den Input aktualisiert, kann man den nicht editieren
Danke =)
|
|
|
06/13/2011, 19:26
|
#14
|
elite*gold: 52
Join Date: Oct 2010
Posts: 1,998
Received Thanks: 389
|
Wieso willst du den wo anders editieren? Bei dem was ich dir gepostet hab kannst du das direkt über doppelklick bearbeiten. Einfach die UDF in den Include Ordner und los gehts.
Eine bessere und gut aussehendere Lösung gibt es meiner Meinung nicht^^
|
|
|
06/15/2011, 16:33
|
#15
|
elite*gold: 0
Join Date: May 2009
Posts: 127
Received Thanks: 21
|
Das stimmt, jedoch brauche ich die daten von einem der ListView Items und die muss ich damit das übersichtlicher wird in einem Input bearbeiten...
Hast du vll Icq oder skype?
Dann kann ich dir mal mein Skript schicken bzw. du hast es einfacher mir zu helfen^^
=)
|
|
|
All times are GMT +2. The time now is 19:23.
|
|