FormatString Class | VBScript Tutorials

Поделиться
HTML-код
  • Опубликовано: 15 сен 2018
  • Strings in VBScript can be annoying. Here's a little class I made to make things easier.
    | Language
    VBScript (.vbs)
    | Code Example
    gist.github.com/codeartery/8b...

Комментарии • 42

  • @sobble_p
    @sobble_p 2 года назад +5

    hey jeremy, thank you so much for all your vbscript tutorials! ive been interested in coding in vbscript for years and now i finally feel like i understand a lot of the concepts. much thanks

  • @ispusher3339
    @ispusher3339 4 года назад +8

    hey... just wanna tell you: my father is a programmer and i always wanted to code. But i didn't knew where to start. I found a random Guy on RUclips (not you) and he told how to make a easy message box to troll your friends. Then i wanted to learn more about it. Can i program it so, that when you press "yes" something happens and when you press "no" something other happen? I looked for it on RUclips and then I found your Channel. And i kept on programming vbs, watched every video of you and understood *EVERYTHING* . Im 14 and from Germany. But you are just so good in explaining how to code... I write programms now for my mom (she's a teacher) and the programm solve all the grades and prints a solution paper for every child. EVERYTHING (750 Code Lines). That would'nt be possible if you didn't make those videos.
    I would say "keep on doing these videos!" but you don't...
    honestly, that makes me realy sad :(
    but *thanks* for these videos. I can't tell how amazing you are!
    You are the guy who started coding with me.
    You are the guy how taught me coding.
    You are the guy.
    You are the guy making those videos...
    *thanks for these videos.*
    so... goodbye i guess... these videos were so good... thanks for these videos...
    you
    are
    amazing

    • @squiggyjane
      @squiggyjane 3 года назад +1

      You can learn LAISA, It's a alpha alpha code, buts its pretty fun. If you cant find any videos for it contact me in this reply thread, here is a example of LAISA.
      LAISA connect.1
      {pair1}={pair2} with sentence "' = x * ! @"
      AddEventStorage:1
      AddEvent:1;
      if {ingame}+screen then esmon sentence fire;•◘◘••◘•decode:1

  • @kunal_chand
    @kunal_chand 5 лет назад

    I am a fan of your teaching style .
    You rock !!!!
    Finally you are back on uploading tutorials !!!

  • @randomrouting
    @randomrouting Год назад

    Just wanted to say thanks. Much appriciate all the content.

  • @xriccardo1831
    @xriccardo1831 5 лет назад +1

    i missed your videos... this video is going to help me in other languages too. Thanks!

  • @marcd4144
    @marcd4144 5 лет назад +1

    I used to love vbscript... Didn't know people still use it.

  • @SimplyCoded
    @SimplyCoded  5 лет назад +4

    Been a while. Also I believe it is 'to' not 'too' but regardless I hope someone finds this video useful. Link to the code is in the description. Cheers

    • @soni801
      @soni801 5 лет назад +2

      SimplyCoded FINALLY BACK! YAY! btw can you do more Java?

    • @gaming_withsmarty2783
      @gaming_withsmarty2783 2 года назад

      The 4jsyajseurjjhyyýyqý uks

  • @ivanzind
    @ivanzind 5 лет назад

    I am a fan of your teaching style.
    Hi thanks for your videos it really helped me a lot. i have a question. can you also create a video on how to connecting with SQLite3 and FTP.
    Thanks

  • @gheorghegeorgescu7846
    @gheorghegeorgescu7846 5 лет назад

    Hello, I just found you because you helped with setters and getters in java (now I understand lol). And looking at the date of this video, I am curious if you plan on doing future coding videos and hopefully for Kotlin. Thank you very much.

  • @hitechgen453
    @hitechgen453 5 лет назад +2

    Aye dude it's been along time you didn't upload

  • @babisalas6774
    @babisalas6774 5 лет назад

    hi thanks for your videos it really helped me a lot. i have a question. can you also create a video on how to filter pivot table trough vbs?

  • @Pawlo370
    @Pawlo370 2 года назад

    Hi how to change coding language like utf-8 in msgbox? For example I have to write "ś" and not "s" (alt + s)

  • @KnstntnKrgr
    @KnstntnKrgr 3 года назад

    Nice video. Great work!
    Is there e chance to get you to make a video about how to handle XML in VBS? How to create, read and manipulate XML in a smart way...

    • @SimplyCoded
      @SimplyCoded  3 года назад

      Most people use one of these depending how old your OS is and what version(s) you have installed:
      Msxml2.DOMDocument
      Msxml2.DOMDocument.3.0
      Msxml2.DOMDocument.6.0
      You can try to CreateObject with them to see if they exist (also will be listed in HKCR in registry)

    • @KnstntnKrgr
      @KnstntnKrgr 3 года назад

      @@SimplyCoded
      Thanks for the fast reply!
      I really appreciate the effort you are showing in your tutorials. So much detail, so good explanation.
      Thanks for that!

  • @aquilesvalerio348
    @aquilesvalerio348 2 года назад

    Hey my friend, I'm from Brazil and i have to say for you that you know how to teach, please do it again. We need new videos! ;P

  • @savitargod0fspeed290
    @savitargod0fspeed290 Год назад

    Thank you for your videos were really helpful with my project. Think is that i haven't been able to find a solution (if it exists) for a problem that i am having.
    How can i force a user running a VBS script WITHOUT him knowing? What do i mean? Long story short i have a game (title is irrelevant) and i have created a custom protection for it call it Antibot/Antifile editing. I have successfully created the .bat file that is running all the "Kill" commands and the .VBS file that is activating the .bat file silently and as Admin.
    Now i want to add a "trigger" on that VBS file that every time a user is clicking on the .exe file to start my game to ALSO start the .vbs file WITHOUT modifying the .exe file. Meaning that even if that user is replacing the .exe file with a similar one the .VBS script will still run. Is that even possible???

    • @SimplyCoded
      @SimplyCoded  Год назад

      My first thought for something like that was to make a windows scheduled task that fires when a specific app is launch, which looking online pulled up this
      superuser.com/questions/745318/how-to-start-a-program-when-another-one-is-started
      Otherwise you'd have to download or make a service or script that constantly monitors your processes and fires your VBScript when a certain one appears. If I had to make one my thought would be to use powershell like this
      devblogs.microsoft.com/scripting/use-powershell-to-monitor-specific-process-creation/
      Otherwise you might find a third party tool someone has already made to do that

    • @savitargod0fspeed290
      @savitargod0fspeed290 Год назад

      @@SimplyCoded sadly this is not what i am looking for, option A: requires the user to put the vbscripts into their start-up folder.
      Option B: Requires to run an other file or program before you launch the Game.exe which defeats the entire porpuse of my files.
      I want to make my users run those files unwillingly on their background when they simply launch the Game.exe,
      But thank you for trying to help me, means a lot.

  • @mahdihachicha4665
    @mahdihachicha4665 3 года назад +1

    i really loved your channel but i still shocked why you just quit uploading videos

    • @SimplyCoded
      @SimplyCoded  3 года назад +1

      Busy with work.

    • @mahdihachicha4665
      @mahdihachicha4665 3 года назад +1

      @@SimplyCoded oh i hope you will back soon uploading videos and good luck with your work❤❤

  • @joachim4660
    @joachim4660 5 лет назад

    Is it possible to visualize some chart or something like that using VBScript?

    • @SimplyCoded
      @SimplyCoded  5 лет назад

      I don’t understand the question

    • @joachim4660
      @joachim4660 5 лет назад

      @@SimplyCoded If it is possible to draw something using vbscript like geometric shape.

  • @paviterjotsingh6398
    @paviterjotsingh6398 3 года назад

    Hi Jeremy, I am on a red team project could you please help me obfuscate a Vbscript?

  • @magicgrandpa2991
    @magicgrandpa2991 3 года назад

    Do you have a discord or something that I can join and ask for help because I am pretty new to this?

  • @tejasl8333
    @tejasl8333 5 лет назад

    Can you plz upload vbscript with outlook tutorial

    • @SimplyCoded
      @SimplyCoded  5 лет назад

      Not in any reasonable time frame, but I found decent docs for it. You just got to be willing to test things out. docs.microsoft.com/en-us/office/vba/api/outlook.application

    • @tejasl8333
      @tejasl8333 5 лет назад

      Thanks anyway..☺️

  • @user-pe2kz8li2w
    @user-pe2kz8li2w 10 месяцев назад

    Why aren’t you active anymore? ):

    • @SimplyCoded
      @SimplyCoded  10 месяцев назад

      Other stuff in my life took priority over this

  • @dario-kq2hf
    @dario-kq2hf 2 года назад

    dang man why stop them tutorials :(

    • @SimplyCoded
      @SimplyCoded  2 года назад

      Got a job. Don't have time or desire to continue. I might upload here and there in the future but nothing consistent.
      I do try to keep up with questions though