Kreatorul Posted January 25, 2013 Posted January 25, 2013 Hi! I'm trying to have some buttons with images but the images don't show up no matter what I do. I've tried everything from absolute paths to other file extensions, compiling it x86, x64. Here's an example #include <GUIConstants.au3> #include <ButtonConstants.au3> #include <GuiButton.au3> $GUI = GuiCreate("test", 222, 222, -1, -1)$piesag = GuiCtrlCreateButton("", 14, 16, 44, 44, $BS_BITMAP) GuiCtrlSetImage($piesag, "\piese\1a.bmp") GUISetState(@SW_SHOW, $gui) While(1) $msg = GuiGetMsg() If $msg = $GUI_EVENT_CLOSE Then Exit WEnd
Moderators Melba23 Posted January 25, 2013 Moderators Posted January 25, 2013 Kreatorul,Once corected for the missing EOL, your code works for me with one of my images. Are you sure the image path is correct? Have you tried with a full path? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Kreatorul Posted January 25, 2013 Author Posted January 25, 2013 Yes, as I've mentioned I've tried that. The weird thing is that icons don't work either. It just shows a normal button, no errors or anything. Random example: $btn = GUICtrlCreateButton("", 74, 74, 26, 26, $BS_ICON) _GUICtrlButton_SetImage($btn, 'shell32.ico', -3) I really don't know what's wrong. I'm on Windows 7 x64 if it helps
Moderators Melba23 Posted January 25, 2013 Moderators Posted January 25, 2013 Kreatorul,Perhaps if you used "shell32.dll ? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Kreatorul Posted January 25, 2013 Author Posted January 25, 2013 Right, my bad with the icons, I copy pasted and example and didn't check it well enough. They now work. The images still don't work though, which is what I actually need. Thanks!
Kreatorul Posted January 25, 2013 Author Posted January 25, 2013 (edited) Using GuiCtrlCreatePic with the same path works but I need it to work with buttons. Edited January 25, 2013 by Kreatorul
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now