Use our Google Custom Search for best site search results.
Search
-
I have a button click that click on it operate the OnClick event. How can I make in this event (by VBscript code) to make the button disable??
-
SaveAs is for new form. What bout saving form that not new?
-
-
I try this code (in VBscript):
Sub XDocument_OnLoad(eventObj)
Dim x
x= Environment.UserName
End sub
it's not work (error of ''Object requierd:Environment'')
What is the problem??
-
I want to put in my form a button that click on it save the form.
Can I do it (by write code for it in the OnClick event) or Should I use the OnSaveRequest(eventObj) event.
I know that the line:
eventObj.IsCancelled = eventObj.PerformSaveOperation
save the form, But as it seems I can run it only from the OnSaveRequest event!
-
Sorry. I gave wromg code. This is the code
Dim type
type=XDocument.DOM.selectSingleNode(''/my:myFields/my:AAA/my:Type'').text
Set dataObj=XDocument.DataObjects(''AAA'')
Set dataDom=dataObj.DOM
dataDom.setProperty _
''SelectionNamespaces'',''xmlns:dfs=''''http://schemas.microsoft.com/office/infopath/2003/dataFormSolution'''' '' & ...
-
I have Service Pack 1 install!
-
I have in my form a Data Connection to a Web Service (type Recive).
There are 2 parameters that the WS get (the methode),first one type string (called ''Name'') and seconed type Integer(calles ''ModeType''). In my form I have this code:
Set dataObj=XDocument.DataObjects(''AAA'')
Set dataDom=dataObj.DOM
dataDom.setProperty ...
-
I have in my form a control type ''Ink Picture''. I have a WACOM TABLET SYSTEM (pen and mouse) connected to my computer.
When I run the form I have no option to write with the pen (It's act like a mouse and not like pen)
What can be the problem?
-
In other words: How to control which ''User Role'' to operate on the OnLaod of the form (according to the user that loged in)