Use our Google Custom Search for best site search results.
Search
-
There are different types of barcodes.
Some barcode formats use 'Headers' and 'Footers' on the barcode, e.g. Barcode for ABDE33F might actually be represented as a barcode as *ABDE33F* (the stars are added).
The stars are actually special characters the barcode scanner might be looking for, before it will read the ...
-
Hmmm, well the While loop you have should indeed delete all the SET_Members nodes.
As a result I would expect your AppendChild to fail because the child you are asking it to append should no longer exist - you've just deleted them all in the While loop!
It might be a behaviour of VB language, but I would expect your AppendChild line to fail ...
-
Wait, do you mean VBScript or VB Net? The code you are using is not
VBScript.
Also, in VBScript the test would be:
While Not (Me.CreateNavigator().SelectSingleNode("/my:myFields/my:Form_Container/my:SET/my:SET_Members[last()]/my:SET_Mem_WinID", Me.NamespaceManager) Is Nothing)
Testing for "Not Is Nothing" in VB Net may be ...
-
Also, if you are intending to delete the actual repeating node, and not one of its children you may only need my:SET_Members[last()] without the WinID references - otherwise all the nodes will still be there, they just won't have the WinId field anymore.
-
Check the section borders - turn the borders off (they default to on with blank colour) this might be where you are losing your pixel :-)
Another place I look when things don't behave space-wise is in the paragraph settings of text - look for gap before and gap after values.
-
I feel like that little paperclip help guy that used to pop up in Microsoft Office - "it sounds like you are designing a form which can be used to create dynamic forms" - if I'm correct, proceed with caution - it can quickly get very complicated controlling layout and catering for all the kinds of behaviours you might need. ...
-
Your description implies that when the form is 'complete' then it is printed. But if it is completed, why would there still be fields showing as Cannot be Blank (or any other validation fail indicator)?
So the question is, are these fields showing as 'Cannot be Blank' - do they actually have to be filled in for the form to be ...
-
Cool formula - using the logic test as a value - cool.
-
Did anyone try my suggestion?
-
:-) great, though you would have yourself to credit too for getting there in the end with pretty limited help ;-) good luck!