- Help C#: how to call C++ dll function which is taking pointers as arguments in C#
Hi,Please help me out in calling the the below C++ dll function in C#the function definition in DLL is like thisshort ncdGetDriverConfig (int *p, VDriverConfig* pDriverConfig);where VDriverConfig is structureHelp me in importing this function in C#Thanks in AdvanceSree...
- Different versions of Net simultaneously
I've installed on my 2000 Server this versions of .Netv1.0.3705v1.1.4322v2.0.40607and I have some virt dir i want to work with differint versionsbut they work only if I set for virt. .dirASP NET version v1.0.3705how can i fix the things?...
- HowTo: Dynamically Add Custom Controls?
Hi There!I'm having trouble dynamically adding custom controls. My custom controlsdoes not use code-behind but only <script /> block for programming. So as aresult, I don't need to compile my custom controls to dll for them to work.But I wonder, if I don't compile to dll, ca...
- calling javascript from asp.net code block
I have a form, that posts back to itself. When the form gets posted back, I am going to populate a database with information that was typed in the form, as well asthe user that is logged into the computer. This is going to run on a local intranet, so I am using a javascript with an active x c...
- C# WEB: Running an .exe file
Hey Guys and thanks for this community it has helped me quite a bit so far :)However I ran into a problem that I couldn't find described anywhere so I go to you in hope of some help.I have a webpage that has to scan some files that users post through this website. To do this I first save the fi...
- Dynamicly loading server or user controls
I am trying to load both server and user controls into placeholdercontrols on a aspx template page at runtime. These values would bestrings that are returned from a database query. I know I can do thisfor user controls easily using:oContent = (ControlBase) Page.LoadControl(Session["Page"] + ".as...