Jump to content

Imagex Ile Mount Edilmiş Dosyaları Listeleme ?


digit_03
 Share

Recommended Posts

 imagex ile mount edilmiş imaj dosyalarını gui ekranında nasıl listelerim ? 

 

orjinal versiyon

 

xYqMmk.jpg

 

 

cmd ekranı

 

wOVkGz.jpg

 

benim üzerinde çalıştığım proje

 

eNlAkN.jpg

 

 

$treeviewm = GUICtrlCreateListView(" R/W |      Bağlama Noktası        |            Imaj Dosyası           | WIM No", 45, 165, 420, 100);, _
 

 

 

projeye ait diğer resimler

 

 
 
Edited by digit_03
Link to comment
Share on other sites

[spoiler]#include <Constants.au3>

 

$hGUI = GUICreate("ListView Add Item", 400, 300)
$hListView = GUICtrlCreateListView("Output", 2, 2, 394, 268)
GUISetState()

Local $foo = Run(@ScriptDir & "\imagex /unmount", @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)
Local $line
While 1
$line = StdoutRead($foo, False)
If @error Then ExitLoop
If $line = "" Then ContinueLoop
GUICtrlCreateListViewItem($line, $hListView)
Wend

While 1
$line = StderrRead($foo)
If @error Then ExitLoop
GUICtrlCreateListViewItem("erorr " & $line, $hListView)
MsgBox(64, "", $foo)
Wend

While GUIGetMsg() <> -3
WEnd[/spoiler]

 

 

internette böyle bişey buldum ama istediğim gibi düzenleyemedim   :(((

Edited by digit_03
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...