Copying the QuoteWerks QuoteValet URL to the Windows clipboard

The script below provides a way to quickly and easily copy the QuoteValet document URL for the current open document in QuoteWerks to the Windows clipboard. This can then be pasted into an email or other document to send to your customer.

To implement the script, we suggest copy/pasting the below code into a text file and saving the file as “GetQVURL.vbs” in the “Applets” folder of the QuoteWerks directory on your PC or server. (If the “Applets” folder does not exist, then create it.) You can then create a custom menu option using the features in the QuoteWerks Tools menu | Customize Menus screen. Your new menu option should look something like the image below with Command text “&SYS_InstallPath\Applets\GetQVURL.vbs”:

QuoteWerks Get QuoteValet URL menu option

Dim objQWApp 'As Object
Dim strURL 'As String

Dim objShell 'As Object
Dim objExec 'As Object
Dim objIn 'As Object

Set objQWApp = GetObject(, "QuoteWerks.Application")
strURL = objQWApp.GetMacro("&DH_&QuoteValetCustomerFacingURL")
'strURL = strURL & "&internal=1" 'appending this parameter to the URL also will mean it does not trigger a QuoteValet Activity Log entry

Set objShell = CreateObject("WScript.Shell")
Set objExec = objShell.Exec("clip")
Set objIn = objExec.stdIn

objIn.WriteLine strURL
objIn.Close

MsgBox "The QuoteValet Customer Facing URL has been copied to the clipboard", 64, "QuoteWerks Add-On from Hilltops IT" '0 = OK Only, 64 = Information, 0 = Application Modal

Related Stories

See all

Case Study: Hilltops IT create Innovative Contract Calculator which Transforms Tescan’s Sales Process

Feb 05, 2025

Hilltops IT Consultancy Services Ltd. is excited to announce the successful implementation and expansion of a groundbreaking Contract Calculator for Tescan, a leading provider of scientific instrumentation. This innovative solution, developed by our dedicated team, seamlessly integrates SugarCRM and QuoteWerks systems, significantly enhancing the accuracy and efficiency of generating customer quotations. Read the full press […]

READ MORE

Hilltops IT Launches ConnectIt-SageOne Integration for QuoteWerks and Sage One Business Cloud

Feb 05, 2025

Hilltops IT Consultancy Services Ltd is excited to announce the launch of ConnectIt-SageOne, a powerful integration solution designed to seamlessly connect QuoteWerks with Sage One Business Cloud. This innovative product aims to enhance business efficiency, accuracy, and productivity by automating data transfer and synchronization between the two platforms. Read the full press release here! Get […]

READ MORE

Alternative ways to provide a software support service

Oct 10, 2024

Following on from the blog post I wrote about providing a successful software support service, and as part of the same discussion, we also brainstormed some alternative ways to provide software support to our customers. What do you think…? Do you think any of these could work better than the techniques we currently employ!? Personally […]

READ MORE