Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/10/2020 in all areas

  1. I would not say its "required" but it adds a GUI to wine, and gives added benefits. I guess its probably not against the rules. Its called CrossOver. Its a GUI slapped ontop of wine with a few extra features.
    3 points
  2. Maybe because it is almost identical to the topic below, which got locked.
    1 point
  3. How is this different from your earlier thread? Also, have you checked the forum rules to be sure that you aren't breaking them? Specifically --
    1 point
  4. TheSaint

    Check-If-Same

    Sounds promising, I'll give it a whirl ... along with rhash. Looking at the list of the other programs involved in comparative benchmarking, I note CRC32 is very conspicuous by its absence, while MD5 is listed. Just saying. EDIT Gawd, trust you to recommend something useless to me .... only 64 bit ... where's the other flavors (XXH32 especially)?
    1 point
  5. @Dan_555, Yes I quoted your message before you edit it, I tried your solution and indeed it seems to work so far Thank you @pugh I didnt use Label field because it cannot scroll up and down and have multi colored text without extra UDFs The purpose of it is only showing ConsoleWrite in white colored text inside RichEdit and another function ConsoleWrite intended for Errors/Warnings in red (for now). Regards, ~WilliamasKumeliukas
    1 point
  6. Deye

    StringRegExp to filter URLs

    may as well try $patt = "\w+(?::)[\w./-]+\w+\/"
    1 point
  7. Hmmmno. I meant, provide the whole string like the "$site" one in the code in post #1 Edit For now my pillow is waiting for me. This might give something : $res = StringRegExp($text, 'href=(?|"((?:[^"]+?/)+)|''((?:[^'']+?/)+))', 3) $res = _ArrayUnique($res) _ArrayDisplay($res)
    1 point
  8. I have an idea, but i do not know if it will work. Why don't you just make another hotkey function assigned to the tab ? Then you could switch in between the wanted gui elements, by forcing a focus on them and skipping the RichEdit box. Each call of the function should change the focus. After a bit of testing, this seems to work: Func capture() _GUICtrlRichEdit_GotoCharPos($Console, -1)
    1 point
  9. mikell talented, someone I always admire! 🥰
    1 point
  10. Hi guys today we're prepare new custom checkbox in autoit (modern checkbox) there're used some icon files with type of icons that you want install. If anybody interesting, Full Source code: https://cloud.mail.ru/public/fp2y/35K2983HE (from cloud storage) Screenshot:
    1 point
  11. If you run a compiled script, you can redirect ConsoleWrite() output to a file: C:\...\MyProg >file.txt You can perhaps redirect Scite console similarly by redirecting stdout when launching SciTE (not tried).
    1 point
  12. np It could be like this: #include "WinHttp.au3" $sDomain = "http://myurl.com/" $sLoginPage = "/wp-login.php" $sUploadPage = "/wp-admin/media-new.php" $sLoginName = "username" $sPassword = "mypassword" ; Choose file to upload $sFileToUpload = FileOpenDialog("Choose something (Image better maybe?)", "", "All (*.*)") If $sFileToUpload Then $hOpen = _WinHttpOpen() $hConnect = _WinHttpConnect($hOpen, $sDomain) ; Login first _WinHttpSimpleFormFill($hConnect, _ $sLoginPage, _ "loginform", _ 'user_login', $sLoginName, _ 'user_pass', $sPassword) ConsoleWrite('! Error for login = ' & @error & @LF) _WinHttpSimpleFormFill($hConnect, _ $sUploadPage, _ "file-form", _ 'async-upload', $sFileToUpload) ConsoleWrite('! Error for upload = ' & @error & @LF) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen) EndIf
    1 point
  13. TheSaint

    Check-If-Same

    As if. Clearly my version of 7-Zip is either out-of-date or that file type isn't supported. Only a nerd would think it sensible to release something in a ZST file. Why for dog's sake? What's wrong with all the most used common formats? It doesn't bode well for bothering with it, when the mindset behind it is like that. Anyway thanks bud ... I'm off to look at rhash now ... or perhaps I should just give up. Me and Tech aren't getting along well today. I had to uninstall Signal because it somehow screwed up one of my contacts, such that I could not send them a normal text message ... and no Signal was not set as the default, and I haven't used it in ages ... a really weird situation. Nerds aren't my favorite people right now.
    0 points
  14. Do not bump your thread within 24 hours. We are all here on our spare times, so be patient, someone may (or may not) have an answer for you.
    0 points
×
×
  • Create New...