Jump to content

HeidiR

Active Members
  • Posts

    102
  • Joined

  • Last visited

Profile Information

  • Location
    USA
  • WWW
    http://www.heidisdownloads.com

HeidiR's Achievements

Adventurer

Adventurer (3/7)

0

Reputation

  1. I created a reusable function that returns the free space of a CD / DVD drives media. It is called CD Freespace and can be found on my site at the following url page: http://www.heidisdownloads.com/?p=3 Enjoy! HeidiR
  2. Thanks for the update. For some reason v3.2.13.1 is not in my v3.3.6.1 help change log.
  3. I'm running v3.3.6.1 and SciTE is complaining about @AutoItUnicode not being defined during a compile. I checked Autoit help and could not find @AutoItUnicode and could also not find any reference in History / Change log. Did this get changed / removed recently?
  4. I upgraded to 3.3.6.1 but can't seem to get the SciTE AutoIt3Wrapper dialog box to come up when compiling. My SciTE.properties is as follows: # SciTE.properties is the per directory local options file and can be used to # override settings made in SciTEGlobal.properties, SciTEUser.properties and # SciTEDirectory.properties. command.build.directory.*.cxx=..\win32 command.build.directory.*.h=..\win32 command.build.*.cxx=nmake -f scite.mak DEBUG=1 QUIET=1 command.build.*.h=nmake -f scite.mak DEBUG=1 QUIET=1 command.go.*.cxx=..\bin\SciTE command.go.*.h=..\bin\SciTE command.go.needs.*.cxx=cmd /c cd ..\win32 && nmake -f scite.mak DEBUG=1 QUIET=1 command.46.*.au3="$(SciteDefaultHome)\Obfuscator\Obfuscator.exe" "$(FilePath)" command.name.46.*.au3=Obfuscator command.save.before.46.*.au3=1 command.is.filter.46.*.au3=1 command.shortcut.46.*.au3=Ctrl+Shift+O #Compiler_Run_Obfuscator=y Seems like I had this problem during the last upgrade but can't remember what I did to fix it. What am I missing?
  5. Yep! 3.3.6.1 fixed the problem. Thanks, HeidiR
  6. I understand your concern. btw, I'm running v3.3.6.0. v.3.3.6.1 has one bug fix that does not impact me so I have not upgraded. Hopefully, someone else may have some ideas as to what the issue may be.
  7. Thanks for the info. I have attached the x64 exe I am having trouble with. It's the same code as in my original post. Can you tell me if it runs for you?
  8. Thanks for the quick reply. That's strange. I have actually tried it on two different Win7 x64 machines. But no go. I have tried both the Aut2Exe and SciTe compilers to create the x64 exe. Maybe I'm not selecting the correct compile options??? For Aut2Exe, I check the x64 option. For SciTe, I check the x64 and UPX option.
  9. I have a test script that works correctly by running the .au3 and by compiling it in x86 mode. However, it does not display icons when compiled in x64 mode and running on an x64 machine. What am I missing??? $FILE = "C:\Windows\System32\shell32.dll" ;Constants Global Const $LV_VIEW_DETAILS = 0x0001 Global Const $LV_VIEW_ICON = 0x0000 Global Const $LV_VIEW_LIST = 0x0003 Global Const $LV_VIEW_SMALLICON = 0x0002 Global Const $LV_VIEW_TILE = 0x0004 Global Const $LVM_FIRST = 0x1000 Global Const $LVM_SETVIEW = ($LVM_FIRST + 142) ;GUI Window GUICreate("test", 1014, 730) ;Listview $hLV_ICON_LISTVIEW = GUICtrlCreateListView("", 10, 60, 995, 586) _GUICtrlListView_SetView($hLV_ICON_LISTVIEW, 1) GUISetState() For $i = -1 to -10 Step -1 GUICtrlCreateListViewItem($i, $hLV_ICON_LISTVIEW) GUICtrlSetImage(-1, $FILE, $i) Next While 1 sleep(2000) Wend Func _GUICtrlListView_SetView($hWnd, $iView) ;GuiListView.au3 (modified) Local $aView[5] = [$LV_VIEW_DETAILS, $LV_VIEW_ICON, $LV_VIEW_LIST, $LV_VIEW_SMALLICON, $LV_VIEW_TILE] If IsHWnd($hWnd) Then Return _SendMessage($hWnd, $LVM_SETVIEW, $aView[$iView]) <> -1 Else Return GUICtrlSendMsg($hWnd, $LVM_SETVIEW, $aView[$iView], 0) <> -1 EndIf EndFunc Func _SendMessage($hWnd, $iMsg, $wParam = 0, $lParam = 0, $iReturn = 0, $wParamType = "wparam", $lParamType = "lparam", $sReturnType = "lparam") ;SendMessage.au3 Local $aResult = DllCall("user32.dll", $sReturnType, "SendMessage", "hwnd", $hWnd, "int", $iMsg, $wParamType, $wParam, $lParamType, $lParam) If @error Then Return SetError(@error, @extended, "") If $iReturn >= 0 And $iReturn <= 4 Then Return $aResult[$iReturn] Return $aResult EndFunc
  10. Thanks for the info guys!
  11. Maybe I missed something but I can't find the compile dialog box in new SciTE version included with 3.3.0.0. In SciTE v3.2.12.1, after pressing CTRL+F7 compile dialog box would appear containing tabs to include resource files, obfuscator and other options. Did this get removed in the new version?
  12. I have provided 3 fully commented examples on FileInstall on my site at the link below. Hope this helps.
  13. I have provided 3 fully commented examples on FileInstall on my site at the link below. Hope this helps.
  14. I'll checkit out. Thanks for your help. Edit: I tried _GUICtrlListView_SetView with view state 1 and it did the trick.
×
×
  • Create New...