Love your humour, I am definitely going to learn because of you.
@papie76272 жыл бұрын
Yes, I'm trying to learn Deluge on purpose. Shocking right? lol.. tysm for the upload!
@Schmorrison Жыл бұрын
god be with you
@joeykjoseph2 жыл бұрын
Great Video...Greg....Just loved your easy style...Looking forward to more from you 👍
@JonathanSchneider-qd5jm Жыл бұрын
Great video, thank you. Look forward to the next one.
@alansinger72194 ай бұрын
Greg and Zenattta - your video here is off the charts in a good way! Great work - sensational video - Hollywood level screen presence, personality and humour - please make more videos - what a great way to learn!
@sethpersonal2 жыл бұрын
Best intro ever 😂. Great instructional video Greg and love your personality!!
@kevinwooten44342 жыл бұрын
Great video!
@Dorsetwatersofteners Жыл бұрын
Really excellent
@IanCrawfordBrunt2 жыл бұрын
Looking forward to this series and thank you for an engaging introduction
@SebastienCaradec2 жыл бұрын
Very well done. Clear and entertaining.
@tasty_ai Жыл бұрын
Great, Thanks for the fast overview.
@InfoTechMM9 ай бұрын
I love this guy, he makes understanding complex information enjoyable!
@AzhlennSelleck Жыл бұрын
Great Video!!! well executed with simple informative information.
@davidthornton76032 жыл бұрын
Very nicely done. I suspect Greg has definitely trod-the-boards in his time.
@CameronHowitt-fb8sc2 жыл бұрын
This is the clearest instruction for Deluge that I've ever seen. Great work Greg! Looking forward to the next chapters in this series.
@stevetoll60932 жыл бұрын
Agreed! Wish I had this a year ago!
@deusxpotatus10 ай бұрын
fantastic tutorial, awesome humor, auto like and subscribed my dude
@jayaprakashpalani4555 Жыл бұрын
Great keep going
@ahmad-rateb Жыл бұрын
very good video man .thanks waiting for the next lesson
@Zenatta Жыл бұрын
Hi Ahmed, We have added Greg's full series as well as all Deluge related videos to this playlist: kzbin.info/aero/PLZQZebmrdF7gBb8b2pdTYfq56foPHdXXB Hope you become the coding master!
@zita50867 ай бұрын
Great video, thank you!!
@Zenatta7 ай бұрын
Glad it helped!
@deterris10005 ай бұрын
Can you help me please I created my smb share, I can see it and remove and change files but when using deluge it download to the mount share just file but can't see it any where else. I use file browser on deluge it's there I can see and play my download from the mounted drive but it doesn't share anywhere else what I'm I doing wrong 😢. PLEASE HELP
@minm2gz2 жыл бұрын
🤯 "the little blue pencil"
@philipgaje31233 ай бұрын
How do you move the debug console from the right side to the bottom of the editor?
@Zenatta3 ай бұрын
Hi Philip, At the time of recording this video, Zoho made this change. There seemed to have been some push-back from the dev community and then Zoho switched it back to the right side soon after. There currently is no way to select this view option as a preference.
@felipedopoli Жыл бұрын
How can i use the RETURN in a function on ZOHO CRM ?
@greg_belnap Жыл бұрын
The RETURN tells the deluge executor to terminate your function and present the output of your function. For workflow and schedule functions, there is no output, so using a RETURN simply terminates your function at that line and marks it successfully executed, though one is not required. For button functions, the RETURN terminates your function and displays a string (if there is one) to the user that pushed the button and IS required. Example: string some_button(int deal_id){ deal = zoho.crm.getRecordById("Deals",deal_id); amount = deal.get("Amount"); return "This Deal's Amount is $" + amount; } In this example, when my button on a deal is pushed, the user gets a pop-up that says "This Deal's Amount is $_____". Not a particularly useful function, but you get the idea. These return statements are particularly useful for error statements so that if something in your function goes wrong, your user gets some information about what went wrong rather than simply nothing happening.
@KristianBagatsing Жыл бұрын
How about displaying all the list of deals? Thank you
@Zenatta Жыл бұрын
Hi Kristian, You can use the deluge task zoho.crm.getRecords(“Deals”) but this will only get you the latest 200 Deals. You’re better off using a COQL (CRM Object Query Language) request, which can get you up to 2000 records at a time. You can read more on COQL queries here: www.zoho.com/crm/developer/docs/api/v5/COQL-Overview.html
@cyber_karthik7 ай бұрын
is this software is fully developed by you sir?
@Zenatta7 ай бұрын
Hi KKBugHunter! The software is developed by Zoho, but Zoho's tools have client-facing scripting functionality that we are demonstrating here.