Jump to content

kjason

Members
  • Posts

    19
  • Joined

  • Last visited

kjason's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thanks so much SmOke_N~~ It looks very promising. I will look into it. ^&^
  2. Greetings~ Is there any way to set a window or GUI placed under all other windows, even when the window is activated? Any function or any comments are appreciated. Thanks for your time.
  3. Thanks all~~ especially FreeFry. I could disabled the start button and start menu. Still it makes the "ting" sound, whenever clicking the button. If you guys happen to know how to remove the sound then, please let me know. Thanks for your attention.
  4. One more question, Whenever clicking the start button after disable the start button, it plays some sound. ( sound like "ting") Is there any way to remove the sound, even I click the disabled the start button? Thanks for your attention
  5. Thanks guys ~ Would you explain more detail? especially, about uninstalling device. I tried to check this fourm but I could not find the answer ( Sorry, mabe there are some...but I'm a beginner) Would you explain a bit more in detail or possiblly some sample code? About devcon....... I also looked into it but no idea...ㅜㅜ Anyway, thanks monamo and weaponx.
  6. Hi? there I want to automate installing *.inf and uninstalling with AutoIT. Would you kindly help me with it? Please, give me some sample code. Thanks for reading my post.
  7. Thanks so much FreeFry, It worked. ^^;
  8. Hi~ there, I am trying to disable the start button in Windows vista. I want to stop start menu appearing when I click the "start button". I tried below. winsetstate ("start", "", @SW_Hide) However, it did not work. ( it works in Windows XP ) Is there any way to do it? Thanks for reading my question.
  9. Hi all ? I need some advanced autoit user's help. What I want to make is to have two different switchable desktop including icons and folders on desktop. ( not just simple virtual desktop ) As I know, changing the value of the registry key "user shell folder" , I can change the system folder path ( ex. userprofile, desktop....) However, it needs rebooting or explorer restart in order to get it work. So, is it possible to change system folder redirection without reboot or shell restart? ( or some other way to make it ) If it is possible, please help me with it. Thanks in advance.
  10. Hi ~ kj, I tested your latested version and it worked with korean language in perfect !! Great job you did, KJ. And I am still waiting for the portable version of neosearch. Please, find some time for it. ^^; Thanks.
  11. Thanks for the reply, Koshy John 1. I would like to use neosearch on my usb hard disk but want to search both host pc and removable disk. If it is available it's perfect but if you do not want to do create index of host pc.... then...it' OK. just indexing the drive where neosearch is actually located in. I hope you can realease the portable version soon. 2. If you need my help, I will happily translate it into korean 3. I hope you can find some time on this issue~ ^^;
  12. Hi~ Koshy John, It's a really good and usefull software~~ one of the most impressive software here. I just have some wishes about your program. 1. is it possible to make neosearch portable? ( no install, no trace on host PC ) For my personal reason, I always have to carry USB hard disk with me. If I can use neosearch in my usb hard disk, it would be very nice. This is what I really want ~ I am sure there are many people who want to have a good serarching program in their portable storage. 2. is it possible to release another language version? there are not many texts but I just want to share it without language barrier. 3. A question? neosearch can find very well but it doesn't find all ( it is missing a few files ) other language filename ( korean). is it the way it should be? or bug? Anyway, Thanks again KJ. Kjason
  13. Thanks so much martin. I think I can use some of it. I appreciate it.
  14. smashly~ Excellent job!! Thanks so~~~ much~ ^^; I really appreciate it.
  15. Hi? I need your help with the issue. I just want to get a file name with fullpath when a file dropped on a "GUICtrlCreatePic " . I know I can use "GUICtrlCreateInput" but I just want to use a "GUICtrlCreatePic " because I can use a picture on it and contexts menu. So, is there any other way to use drag & drop function? In the source I have been making , I want to show the dropped file name with fullpath. ==================================================================================================== === #include <GUIConstants.au3> #include <file.au3> #include <Array.au3> #NoTrayIcon $Drvletter = StringLeft ( @ScriptDir, 2 ) $DrvLabel = DriveGetLabel ( $Drvletter ) GUICreate("DDarea", 76, 71, @DesktopWidth - "160", @DesktopHeight - "300", $WS_POPUP, $WS_EX_TOOLWINDOW ) $GUI = GUICtrlCreatePic (@scriptDir & "\test.jpg", -1, -1, 77, 72, $GUI_SS_DEFAULT_PIC , BitOR($WS_EX_ACCEPTFILES , $GUI_WS_EX_PARENTDRAG )) WinSetOnTop("DDarea", "", 1) WinSetTrans ( "DDarea", "", 100 ) GUICtrlSetState ( $GUI, $GUI_DROPACCEPTED) GUISetState () While 1 $msg = GUIgetMsg () Select case $msg = 0 case $msg = $GUI_EVENT_DROPPED MsgBox (4096, "Files dropped", ?????????????????????????????????? ) Endselect Wend ==================================================================================================== ===
×
×
  • Create New...