invalid link to data source cell in creating template instance in tosca - automation

received below error while instantiation in tosca
I have created test sheet and linked to template. Trying to convert it into template instance but abpve error is received

This could be due to some syntax issue. Some extra spaces or tabs in the script when you added xl{reference}
Do check template before you Intantiate the Template.
Right click on Test case template and click on Check Template.
It will give you if there is any error.

Related

.Click on an a tag does not work

I'm trying to navigate into a web page automatically with VBA to scrape some values from different product ID's. The problem is that when I get to this intermediate page: http://www.siicex-caaarem.org.mx/Bases/TIGIE2007.nsf/4caa80bd19d9258006256b050078593c/$searchForm?SearchView (search for code 11081201, for example), where I'm supposed to click on the only "a" tag there, the program keeps crashing with
Object variable or With block variable not set
on the line that should click on the element:
objIE.document.getElementsByTagName("a")(0).Click
I have been using similar working lines of code for the same purpose on different pages (ussualy with a for each loop, which doesnt work here either), so I'm unsure why it doesn't work here. I appreciate your help with this.
The solution for this was adding DoEvents before the line that clicks on the element.

Uncaught TypeError: Cannot read property 'oSavedState' of undefined with yadcf and DataTable in Bootbox

I have a bootbox dialog for a user to select templates. The template list is loaded via ajax in DataTables and yadcf is added for fancy filtering. First open of the dialog works flawlessly, close the dialog and open it again and it fails in the yadcf library on
function initColReorder2(settingsDt, table_selector_jq_friendly)
I have created an example illustrating this https://jsfiddle.net/mrcrbrown/7gtps9n5/11/ Click the button to open the dialog, close the dialog with the X and then attempt to open it again.
I noticed the failure occurs before the datatables goes to get the data. I should be able to open and close the dialog as many times as I like as a user.
This question is similar to https://stackoverflow.com/questions/34359479/uncaught-typeerror-cannot-read-property-osavedstate-of-undefined-with-yadcf-a which has the same error in the same place but no answer or example posted.
Go grab 0.9.0.beta.5 it works now, see live sample.
.

No Access to Template's Document

I have an existing Macro Enabled Template which I would like to add Content Control to, to be available on the screen when the Template is accessed.
I know how to add the Content to a Word Document and then save it as a Template. The problem is that I cannot view the Exisiting Template's Word Document due to the view Object being greyed out. See below:
I really do not want to copy all my Macros and my quick texts over to a new document just to add one line of text and a button.
I can easily add the required text and CommandButton by having a script run in a Document_New Sub under the ThisDocument. The problem is that this Sub bombs out due to Macros not being enabled. I intend to have the Template distributed to numerous colleagues, therefore having the Text and button on the document will avoid any confusion as to what to do with the template.
You need to open the Template via File - Open
Opening the Template this way will display give you access to the Template.
For info: The name of the Template will appear in the Center of the Word Application.

Changing form name causes error message "Error accessing the system registry"

I am programming the On_Click method for the button labeled "View" in the first printscreen below. The method will load a form with data corresponding with the specific address id in the row containing the "View" button. This code worked perfectly when pointing to a target form called "Addresses". However, when I decided to rename the form "Address", I started receiving the following error message when clicking on the view button:
I did some research on the web about this error message, which lead me to try to delete any outdated references in the VBA editor. But when I clicked on Tools-->References in the VBA editor, I got the following error message:
It seems that MS Access' entries in the system registry might have been corrupted. But I am not certain of this because the documentation of this on the web is sparse and inconsistent.
Here is a link to the database on a file sharing site: http://jmp.sh/b/9Uyx6J2YzWbs8zPq2h6g
If the problem is in the database, you can recreate the problem by opening the form "Main" and clicking on the button "View" for the record shown in the printscreen above, or for other records.
Can anyone show me how to get past this error message?
my advices?
You could rename your Forms!....SourceObject to "Address" instead of "Addresses"
You could copy/paste the form, delete the original, and retry
You could install a decent debugging tool like MZ-Tools for VBA, that will help you manage your errors. Check the details here
EDIT: I used to get similar bugs years ago, when I was writing specific form event procedures. As we decided to switch to a model where forms did not need to be debbuged anymore (check this here), we stopped getting this kind of message. And I think I forgot the trick we used to solve this kind of error. If I were you:
I'd try to open another access database and import all objects ...
I'd put aside/cancel the faulty onClick procedure
And I'd install MZ Tools because otherwise VBA debugging is a nightmare ...
Since access was not liking the command button in each record of the continuous form, I choose to put the view button's logic in the on click event of a text box in each row, which I configured as enabled but locked. This produces a separate link from each record of the continuous form to a unique detail page with more of the chosen record's data.
This solution works perfectly, and is enabling me to move on with my other coding.
However, it would be nice if someone else were able to show how to get the command button solution to work.

Controls in designer are not shown on form

I have a panel contains many controls, the designer file has its code and I can not find them on the form and I can not see them on document outline window although when trying to add a new panel with same name I get an error saying 'The name wowPanel is already in use by another component.'
What can I do to resolve this issue?
I replaced my designer file with an old version then everything goes very well.
Look for all instances in your form code where you have the name/text wowPanel
REM out these lines temporarily
REM out any subroutines if you have event subroutines for the wowpanel
Next add the new wowPanel and Name it as so "wowPanel"
Now UN-REM (un-remark) all the code statements you REMmed out earlier.
That ought to do it.