Jump to content

stray

Members
  • Posts

    5
  • Joined

  • Last visited

stray's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. you're saying to save the hash right above it? you know they can use your next few lines using _Crypt_HashData with a param used $CALG_MD5. they know what you used to get that hash.
  2. I've found a solution to setting a different background color. On the fill rect function calls, eg: _GDIPlus_GraphicsFillRect($hGraphic, $iX-$i-$step-3, $iY-$i-$step, $step+3, $iH+2*$i+2*$step, $brush) you need to append a $brush as one of the parameters you can create a brush by: $brush = _GDIPlus_BrushCreateSolid(0xFFFFFFFF) The hex value is not a normal RGB hex value. it's an ARGB (RGBA?) value. the first 2 hex values are the opacity (alpha value). So if you set the background of the gui up at the top to a red (0xFF0000) you will need to make it (0xFFFF0000) for creating the brush. So in general a brush is created with 0xFF + (RGBHEX)
  3. I have a question with setting the background color. I have edited this script to be vertical instead of horizontal icons. I don't want a black background though. So when you hover over an icon, when it shrinks back down to a smaller icon. it's surrounded by a black box. How do i get it so that black turns to whatever color i set the background color to?
  4. Hmm, well that helps a little. I tried just making a standalone program with just that code and it works. something in my code is the culprit. Thanks.
  5. I have created a tab and added a ListView to the first tab, and the second tab is full of buttons for settings and such. THe only way to get the ListView to show up on the first tab is to click on tab2, then back to tab1, it will THEN show up. Is there something that I am not doing correctly? $hTab = GUICtrlCreateTab(331,0, 315, 200) GUICtrlCreateTabItem("History") $history = GUICtrlCreateListView ( "Time |Paging History", 335,25,50,50) _GUICtrlListView_SetExtendedListViewStyle($history, BitOR($LVS_EX_GRIDLINES, $LVS_EX_FULLROWSELECT, $LVS_EX_SUBITEMIMAGES)) GUICtrlCreateTabItem("Settings") $settings = GUICtrlCreateButton("settings",335, 25, 75, 20) I tried making the settings tab the first one, and it did the same thing with the button. Sorry about not posting the whole program, i'd rather not do that.
×
×
  • Create New...