Use our Google Custom Search for best site search results.
Search
-
I try in several machin. It's work only in my machin.
I'm using InfoPath 2003
-
I did this but still not work. Somthing else?
-
I need this code in VBscript
-
I have a Text Box in my form.
How can I check that the input is English letters (and not Hebrew for example)??
-
I try to print an InfoPath form that contain Layouts tabels with color backgroung. I try to print it from 2 machine and only from one it print it with the background and without from the second.
What may be the problem?
-
I have an InfoPath Form. I have this code (c#):
public void IdNumber_OnAfterChange(DataDOMEvent e)
{
if (e.IsUndoRedo)
{ return;
}
if (e.Operation==''Delete'')
{ return;
}
XmlDocument xmlDoc = new System.Xml.XmlDocument();
XmlNode ndQuery = xmlDoc.CreateNode
(XmlNodeType.Element,''Query'','''');
XmlNode ndViewFields = xmlDoc.CreateNode ...
-
-
I know how to operate the Web Service from my code. That was not my question
-
I have an InfoPath Form. I have this code (c#):
public void IdNumber_OnAfterChange(DataDOMEvent e)
{
if (e.IsUndoRedo)
{ return;
}
if (e.Operation==''Delete'')
{ return;
}
XmlDocument xmlDoc = new System.Xml.XmlDocument();
XmlNode ndQuery = xmlDoc.CreateNode
...
-
I have InfoPath form and I design it by New Blank Form.
My form contain a Text box and I want on the OnAfterChange event to chek if this value already exist in the DataBase.
Sould I use Web Service or can I use simple VBscript or JSscript code for ADO connection:
var conn = new ActiveXObject(''ADODB.Connection'')
and the to write me SQL ...