Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/24/2012 in all areas

  1. If you don't use Visual Studio for C# editing then I will find you, come to your house, ring on your door, wait until you open, and then I would tell you to use Visual Studio for C# editing.
    2 points
  2. I beg your pardon. Do any of you guys seriously expect MD5 collisions on random 10k files? I mean spurious MD5 collisions on non-cooked data/executable, real-world files? Can you exhibit one non_cooked example (just curious)? Hint: that would be a world record!
    2 points
  3. Hi! Today I want to show you my current AutoIt project: The ISN AutoIt Studio. The ISN AutoIt Studio is a complete IDE made with AutoIt, for AutoIt! It includes a GUI designer, a code editor (with syntax highlighting, auto complete & intelisense), a file viewer, a backup system, trophies and a lot more features!! Here are some screenshots: Here some higlights: -> easy to create/manage/public your AutoIt-projects! ->integrated GUI-Editor (ISN Form Studio 2) ->integrated - file & projectmanager ->auto backupfunction for your Projects ->extendable with plugins! ->available in several languages ->trophies ->Syntax highlighting /Autocomplete / Intelisense ->Dynamic Script ->detailed overview of the project (total working hours, total size...) And much more!!! -> -> Click here to download ISN AutoIt Studio <- <- Here is the link to the german autoit forum where I posted ISN AutoIt Studio the first time: http://autoit.de/index.php?page=Thread&threadID=29742&pageNo=1 For more information visit my Homepage: https://www.isnetwork.at So….have fun with ISN AutoIt Studio! PS: Sorry for my bad English! ^^
    1 point
  4. $string = "13123213@÷XÉ€ @·RÒð»3”%€ð34543erfTest‘ŽF" ConsoleWrite(StringRegExpReplace($string, '[^a-zA-Z0-9/.?:-]', '') & @LF)
    1 point
  5. jvanegmond

    SciTe for C#?

    SciTE is a code editor. It has syntax highlighting, automatic suggestions and completion, matching brackets, and often a simple way to run your code in the sense of: Start the compiler, start the interpreter, start another program that handles debugging, etc. Visual Studio is an integrated development environment (always called IDE). A code editor is part of an IDE, but an IDE offers much more functionality. The source code editor, the interpreter/compiler, the debugger are all integrated as part of the same program. Visual Studio also helps you with file management. There is a whole list of C# language features and .NET libraries to be named which would be much less convenient if Visual Studio did not support them. A prime example of that is the way you can consume SOAP services with WCF. Building a service reference like that would take you about 30 minutes in SciTE if you knew what you were doing, in Visual Studio even a monkey can do it in 10 seconds. Purely as a code editor, Visual Studio is better than SciTE. Mainly because of IntelliSense. All in all, Visual Studio is much preferred over SciTE because it helps your workflow greatly. The downside is you won't understand all things under the hood (like very useful command line arguments on the compiler), but some would argue that you don't have to.
    1 point
  6. Melba23

    MsgBox

    ripdad, I quite agree. But the OP seems not to have understood WHY it was solved and insists that all the suggested solutions will not work. My aim here is to get people to understand WHY the code does what it does - or else they will keep making the same mistakes over and over again. M23
    1 point
  7. Read the first post. Either use the .msstyles-File directly (FileInstall) or use the CreateEmbeddedFile-method
    1 point
  8. What id weird here is I don't see an example of anything. Post this question where it should be in General Help and Support along with a link to where you seen this function.
    1 point
  9. Syed23

    check text in inputbox

    ok.. just try adding the below line next to the header files and declare the variables as global. so you can avoid getting the "Variable used without declare error" message. [autoit] Opt("MustDeclareVars",1) [/autoit}
    1 point
  10. Blinky

    check text in inputbox

    u should put it in the button push response loop Func Login_button() $user=GUICtrlRead($idinput) $password=GUICtrlRead($passinput) If StringLen($user)=0 Then MsgBox(0,"Error","U need to write a user name") Else If StringLen($password)<5 Then MsgBox(0,"Error","Pass needs to be larger than 5 chars") Else login_send(); you have to make this function EndIf EndIf EndFunc if you have any code writen please post so i can help this func executes a nother function if the conditions are met. i didn`t undersud what u need exactly do u need all the code?
    1 point
  11. Blinky

    Help with $PixelGetColor

    ur welcome!
    1 point
  12. Blinky

    check text in inputbox

    search the help for func usage: $user=GUICtrlRead($idinput) $password=GUICtrlRead($passinput) if StringLen($password)<5 then blabla If StringLen($user)=0 Then blabla u get the drift edited: $user=GUICtrlRead($idinput) $password=GUICtrlRead($passinput) If StringLen($user)=0 Then MsgBox(0,"Error","U need to write a user name") Else If StringLen($password)<5 Then MsgBox(0,"Error","Pass needs to be larger than 5 chars") Else login_send() EndIf EndIf
    1 point
  13. Blinky

    Help with $PixelGetColor

    Srry forgot the comas. The hex function returns a string without the 0x Global $PixelColour = "FFFF00"
    1 point
×
×
  • Create New...