Strings in VBScript can be annoying. Here's a little class I made to make things easier. | Language VBScript (.vbs) | Code Example gist.github.co...
Пікірлер: 42
@sobble_p3 жыл бұрын
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
@kunal_chand6 жыл бұрын
I am a fan of your teaching style . You rock !!!! Finally you are back on uploading tutorials !!!
@SimplyCoded6 жыл бұрын
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
@soni8016 жыл бұрын
SimplyCoded FINALLY BACK! YAY! btw can you do more Java?
@gaming_withsmarty27833 жыл бұрын
The 4jsyajseurjjhyyýyqý uks
@xriccardo18316 жыл бұрын
i missed your videos... this video is going to help me in other languages too. Thanks!
@ispusher33394 жыл бұрын
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 KZbin (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 KZbin 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
@squiggyjane4 жыл бұрын
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
@randomrouting2 жыл бұрын
Just wanted to say thanks. Much appriciate all the content.
@marcd41446 жыл бұрын
I used to love vbscript... Didn't know people still use it.
@hitechgen4536 жыл бұрын
Aye dude it's been along time you didn't upload
@gheorghegeorgescu78465 жыл бұрын
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.
@SimplyCoded5 жыл бұрын
I wouldn’t count on it.
@mahdihachicha46654 жыл бұрын
i really loved your channel but i still shocked why you just quit uploading videos
@SimplyCoded4 жыл бұрын
Busy with work.
@mahdihachicha46654 жыл бұрын
@@SimplyCoded oh i hope you will back soon uploading videos and good luck with your work❤❤
@Pawlo3702 жыл бұрын
Hi how to change coding language like utf-8 in msgbox? For example I have to write "ś" and not "s" (alt + s)
@KnstntnKrgr4 жыл бұрын
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...
@SimplyCoded4 жыл бұрын
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)
@KnstntnKrgr4 жыл бұрын
@@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!
@babisalas67746 жыл бұрын
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?
@ivanzind6 жыл бұрын
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
@aquilesvalerio3482 жыл бұрын
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
@paviterjotsingh63984 жыл бұрын
Hi Jeremy, I am on a red team project could you please help me obfuscate a Vbscript?
@magicgrandpa29914 жыл бұрын
Do you have a discord or something that I can join and ask for help because I am pretty new to this?
@SimplyCoded4 жыл бұрын
You can ask here or via email. simplycoded.help@gmail.com
@magicgrandpa29914 жыл бұрын
Thanks!
@joachim46606 жыл бұрын
Is it possible to visualize some chart or something like that using VBScript?
@SimplyCoded6 жыл бұрын
I don’t understand the question
@joachim46606 жыл бұрын
@@SimplyCoded If it is possible to draw something using vbscript like geometric shape.
@savitargod0fspeed2902 жыл бұрын
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???
@SimplyCoded2 жыл бұрын
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
@savitargod0fspeed2902 жыл бұрын
@@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.
@ωικα-β6ω Жыл бұрын
Why aren’t you active anymore? ):
@SimplyCoded Жыл бұрын
Other stuff in my life took priority over this
@tejasl83336 жыл бұрын
Can you plz upload vbscript with outlook tutorial
@SimplyCoded6 жыл бұрын
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
@tejasl83336 жыл бұрын
Thanks anyway..☺️
@dario-kq2hf3 жыл бұрын
dang man why stop them tutorials :(
@SimplyCoded3 жыл бұрын
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