Click here to Skip to main content
15,923,142 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to use XPath to parse the XML file? Pin
Abhijit Jana5-Jan-09 4:06
professionalAbhijit Jana5-Jan-09 4:06 
GeneralRe: how to use XPath to parse the XML file? Pin
George_George5-Jan-09 22:34
George_George5-Jan-09 22:34 
GeneralRe: how to use XPath to parse the XML file? Pin
led mike5-Jan-09 5:05
led mike5-Jan-09 5:05 
GeneralRe: how to use XPath to parse the XML file? Pin
George_George5-Jan-09 22:34
George_George5-Jan-09 22:34 
AnswerRe: how to use XPath to parse the XML file? Pin
Abhijit Jana5-Jan-09 4:03
professionalAbhijit Jana5-Jan-09 4:03 
GeneralRe: how to use XPath to parse the XML file? Pin
George_George5-Jan-09 22:35
George_George5-Jan-09 22:35 
GeneralRe: how to use XPath to parse the XML file? Pin
Abhijit Jana6-Jan-09 0:53
professionalAbhijit Jana6-Jan-09 0:53 
QuestionRun .NET ActiveX control on IE 7.0 machine that doesnt have .NET installed. Pin
Dattatraya K5-Jan-09 2:51
Dattatraya K5-Jan-09 2:51 
I created a DLL (class library) on C#.NET (2005) and want
to use it as an ActiveX control on a web page (html).
I have checked the box for Make "assembly COM visible" in the
project properties before I build the DLL. Code does do much,

here is my C# code for ctrl

namespace MyActiveXctrlLib
{
public partial class MyUserCtrl : UserControl
{
public string setName
{
set
{
txtName.Text = value;
}
}
public MyUserCtrl()
{
InitializeComponent();
}
}
}

here is my HTML





<title>Untitled Page


<object id="myControl1" name="myControl1" classid="MyActiveXctrlLib.dll#MyActiveXctrlLib.MyUserCtrl" width="288" height="50">








function doScript()
{
myControl1.setName = frm.txt.value;
}





on button click doScript(); is executed .
it sets the setName property of myControl1 i.e. WinForm control.

this code working successfully on IE 7.0 machine having .NET installed on them
but is not working on Machine those dnt have .NET installed on them.

not checked on IE 6.0.

Thanks in advance .
DaTtA Smile | :)

way2datta@gmail.com
AnswerCrossPost : Please Ignore Pin
Abhijit Jana5-Jan-09 2:57
professionalAbhijit Jana5-Jan-09 2:57 
AnswerRe: Run .NET ActiveX control on IE 7.0 machine that doesnt have .NET installed. Pin
Dave Kreskowiak5-Jan-09 3:51
mveDave Kreskowiak5-Jan-09 3:51 
QuestionInner/Nested classes with NHibernate Pin
devvvy5-Jan-09 2:41
devvvy5-Jan-09 2:41 
AnswerRe: Inner/Nested classes with NHibernate Pin
realbart10-Sep-12 5:03
realbart10-Sep-12 5:03 
GeneralRe: Inner/Nested classes with NHibernate Pin
devvvy10-Sep-12 14:37
devvvy10-Sep-12 14:37 
QuestionThread safe issue in string operation Pin
George_George5-Jan-09 2:07
George_George5-Jan-09 2:07 
AnswerRe: Thread safe issue in string operation Pin
moon_stick5-Jan-09 2:30
moon_stick5-Jan-09 2:30 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 3:27
George_George5-Jan-09 3:27 
GeneralRe: Thread safe issue in string operation Pin
moon_stick5-Jan-09 3:36
moon_stick5-Jan-09 3:36 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 3:40
George_George5-Jan-09 3:40 
GeneralRe: Thread safe issue in string operation Pin
moon_stick5-Jan-09 4:10
moon_stick5-Jan-09 4:10 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 22:42
George_George5-Jan-09 22:42 
GeneralRe: Thread safe issue in string operation Pin
moon_stick6-Jan-09 0:34
moon_stick6-Jan-09 0:34 
GeneralRe: Thread safe issue in string operation Pin
George_George6-Jan-09 0:40
George_George6-Jan-09 0:40 
GeneralRe: Thread safe issue in string operation Pin
moon_stick6-Jan-09 0:45
moon_stick6-Jan-09 0:45 
GeneralRe: Thread safe issue in string operation Pin
George_George10-Jan-09 2:42
George_George10-Jan-09 2:42 
GeneralRe: Thread safe issue in string operation Pin
J4amieC5-Jan-09 4:19
J4amieC5-Jan-09 4:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.