Assuming additional is required, the following 128 results were found.
Find some more JavaScript examples, and then try "translating" them to COM. (JavaScript is well documented online) Learn additional ways to access the HTML DOM. You may be wondering, "How do I find information about the element so I can access it?" Good...
keys as appropriate... the code in AutoHotkey being: ; next desktop Send, ^#{Right} ; previous desktop Send, ^#{Left} Additional The above example, is if you have 3 monitors. If you only have 2 monitors, then note that right-most will not exist and only...
from the server, this is also 10am GMT – e-mails from people will use the timezone they are accessing the service from). Additional I am a one-man band, a solopreneur, freelancer but I specialise in automation which lets me do the work of many more. I...
***** H:\temp.txt 1: This is line 1 2: This is line 2 3: This is line 3 ***** C:\TEMP.TXT 1: ECHO is on. ***** Additional You could change c:\results_file.txt to %TEMP%\results_file.txt to send the file to your temporary directory instead of using the...
can position it as per your requirements. That should do it.... The Gist Don't load in images bigger than an A4 sheet... Additional Notes I found that some classes are reserved words used by the Zoho built-in renderer. I am making a list here to see if...
{ l_Output.add( l_Alphabet.get(randomNumber(0, 25)) ); } // output v_Output= l_Output.toString(""); return v_Output; } Additional Notes: As this was for a client who arranged outdoor activities for kids, I need to add a filter which blocks out swear...
= ""; v_MyString = ""; v_FormattedString = v_MyString.replaceAll(v_MyRegEx,"$1",false); // yields my_real_textual_data Additional Since writing this article I found a Zoho page with some other pretty useful regular expressions at...
Map(); m_Update.put("Product_Details",l_ProductItems); r_Update = zoho.crm.updateRecord("Invoices",p_InvoiceID,m_Update); Additional Note(s): Just a list of fields to build up a Product Line Item: "Product_Details": [ { "product": { "Product_Code":...
v_XeroTime.replaceAll("/Date\((\d+)([+-]\d{4})?\)/","$1",false).toLong().toTime("yyyy-MM-dd HH:mm:ss", "Europe/London"); Additional The reverse (date string to unix seconds) can be done using either of the following: v_MyDate = "2020-04-01 12:34:56";...
[ url: "https://books.zoho.com/api/v3/estimates?organization_id=12346789" type: GET connection: "joelconnector" ]; Additional I'd always recommend locking down your app privileges by checking the scope(s) you have allowed it to have.... However in those...
have various ways of escaping the ampersand (except for MySQL which doesn't need to and in my opinion is the best SQL). Additional Note(s): select can specify up to 50 fields. Defaults to 200 but can return up to 10000 records (NB: use endpoint...
this application and preview your masterpiece! The following screenshot shows what happens when I change the parameter: Additional Note(s): I have found that adapting Widgets created for Zoho Creator to work in Zoho CRM is pretty easy to do. The only...
c_Response.insert("EmployeeID":v_OutputMessage); c_Ok = Collection(); c_Ok.insert("response":c_Response); return c_Ok; } Additional: We asked Zoho for a solution that might work and were given the following snippet of code (not tested yet!). It looks...
can be displayed on a page as a link or you can put in a Note Field for the user to download just by clicking it. Additional: Why not set a scheduled task on the expiry date/time to delete this entry for both house-keeping and security? with the...
// correct to 12-hour with meridian (even if you are using projects.zoho.eu) input.Start_Time.toString("hh:mm a"); // additional note: "13:00 PM" will return this error as well Source(s) Zoho Projects - Timesheets API Zoho Deluge - Date-Time Functions -...
to add in this custom field per line item, but also requires a change to the other fields in the line item. There is an additional note that when using v2.1, you no longer post to the "Product_Details" key but to the respective module line item API name...
Billing_Address.country=v_AddressCountry Line_Items=c_LineItems ]; From the documentation Additional Note that any bidirectional relation field that exists will be prepopulated using the method above. Clear subform of all its rows: input..clear();...
= input.Account.toLong(); } else { //... code to create new record r_NewRecord = insert into [ = = = ]; } Done: Additional Remember that an integration field on the interface is returned as a string and needs to be converted to a number to be assigned,...
r_Contact.get("id").toLong(), m_UpdateContact); } return "Deleted " + v_CountDeleted + " of " + v_Count; Additional Notes As a preliminary measure, I deactivate any workflows in CRM that this process would affect. In the example above, all workflows...
{ v_SalesPersonID = r_SalesPerson.get("salesperson_id"); break; } } m_CreateSO.put("salesperson_id",v_SalesPersonID); } Additional Note(s): Scope(s) required: for the connection I think it was ZohoBooks.settings.READ for the sales persons and then...