Jump to content

Srex

Active Members
  • Posts

    67
  • Joined

  • Last visited

Recent Profile Visitors

185 profile views

Srex's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Cheers mate, that added alot of extra methods! Still can't get the imgsearch to work though
  2. Pretty much title how do I include autoit dlls in vb.net using autoit i cant get msgbox(0,"","hello world") to work and i think thats actually in a dll I'm aware how to import autoit and use it, it just says its undefined
  3. Thanks for the 2 yeses It works very well must say great work !
  4. Guictrlsetdata i think Edit: ah i see youre making an auto installer Couldnt you emulate a arrow down press ?
  5. Would you mind throwing a simple example? This could be usefull _SendEx("{A}") Would just send the key a?
  6. How do I actually add those skins to my buttons etc heres an example: can I apply this whilst being interactive? Or can you only add background to sit behind the buttons?
  7. IT WORKS NOW 'I have 1 more problem, idk who to give "answered" thingy xD so many people helped me thanks to every single one of you guys Dont worry I'll be back to bug you guys
  8. aaah sorry i forgot the $sFileSelectFolder is the full path (except for the name) Case $ButtonBrowseOutputLoc $sFileSelectFolder = FileSelectFolder("Select output location", "") If Not @error Then $OutPutLoc = $sFileSelectFolder & '\settings.ini' StringReplace($OutPutLoc, "\\", "\") GUICtrlSetData($InputCheatDir, $OutPutLoc) This is what I did and it still says I tried making this func: func _GetFullPath() return $OutPutLoc = $sFileSelectFolder & '\settings.ini' EndFunc and then I called it into the other part like so: Case $ButtonBrowseOutputLoc $sFileSelectFolder = FileSelectFolder("Select output location", "") If Not @error Then _GetFullPath() StringReplace($OutPutLoc, "\\", "\") GUICtrlSetData($InputCheatDir, $OutPutLoc) EndIf but then it returns: '>
  9. yeah this is perfect Case $ButtonBrowseOutputLoc $sFileSelectFolder = FileSelectFolder("Select output location", "") If Not @error Then $OutPutLoc = $InputWinLocation & $sFileSelectFolder & '\settings.ini' StringReplace($OutPutLoc, "\\", "\") GUICtrlSetData($InputChDir, $OutPutLoc) EndIf But then it still does + i writes "43" infront of the windows location $InputWinLocation is btw the user input for the root of the drive '>
  10. aaah i see thanks dude yeah but theres a read only input box, so I would like it to look correct for the user, so he/she doesn't think it will bug As for the case being almost the same I heard from a coder friend that case is far more efficient And I prefer to learn it the best way in the beginning so i don't have to go back and reschool myself
  11. Really? Are you kidding me
  12. Wow i had 1 place that had resizing sorry for this.. Thanks for the help sir ! Have an awesome day
  13. okay I need to try and understand what this actually does But it looks very good and efficient sir
  14. ohh excuse me. because this If $sFileSelectFolder="C:\" Then only returns true if they select the root of the c drive i have no clue what letter their drive is so i need to make one for every letter can i have cases within cases? like: case $ButtonBrowseOutpuLoc case $sFileSelectFolder="C:\" $OutPutLoc = $sFileSelectFolder & 'settings.ini' case $sFileSelectFolder="D:\" $OutPutLoc = $sFileSelectFolder & 'settings.ini' etc etc so case button gets pressed, run these cases
×
×
  • Create New...