Jump to content

Kolesnikoff

Members
  • Posts

    5
  • Joined

  • Last visited

Kolesnikoff's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. How to make the program sends a request to the site, without opening a browser. For example http://site.com/xxx/yyy/script.php (similar to cron)
  2. Create a new one write out a script and use other script with GUI interface to create a new exe with this code: $OP=FileOpen ( "textfile.txt", 1) FileWriteLine ( $OP, $Text) //$Text is appropriated some text. Default is "Enter some text here..." FileClose ($OP)
  3. #include <GUIConstants.au3> $Form2 = GUICreate("Dialog", 316, 111, 347, 263) GUISetIcon("D:\003.ico") $GroupBox1 = GUICtrlCreateGroup("", 8, 1, 297, 65) $Text = GUICtrlCreateInput("Enter some text here...", 56, 24, 193, 21) GUICtrlCreateGroup("", -99, -99, 1, 1) $Button1 = GUICtrlCreateButton("&Create", 113, 75, 75, 25, 0) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd There is a GUI interface to input the variable $ Text. After clicking on "Create", to create a new EXE file with a given variable $ Text: $OP=FileOpen ( "textfile.txt", 1) FileWriteLine ( $OP, $Text) FileClose ($OP) As a result, we get an EXE file, after the implementation of which will create a text file with the entered text. Now it is "Enter some text here..." How is it implemented?
  4. Okay, how to convert CRC32 to standard view?
  5. Please, tell me how to decode CRC32? There is a text, for example, "549D292D9CB777", and it must be decoded in the "123"
×
×
  • Create New...