| Windows Media Services, H.323 and Video streaming in general (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hi everyone, pls forgive me for my lack of knowledge and skills if my question sounds very stupid. I am trying to implement a video conferencing software and I am currently looking at a few set of technologies, among them WMP, RealMedia, H.323 and XviD (not sure if it is suitable for streaming even) . I would like to seek the advice of those experts on the following questions, 1) What is the best ... |
|
| How to convert String to WCHAR ? (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| How can I convert a String to a WCHAR array? Here is basically the code I'm trying to execute (in C ) but the casting from Char* WCHAR* does not work: ////////////////////////////////////////////////////// #include windows.h #using mscorlib.dll using namespace System; int main(int argc, char *argv[]) { String *s S"this is a string"; Char cArr[] s ToCharArray(0,s Length); WCHAR *wcArr (WCHAR*)&cArr... |
|
| BITS, DOT NET framework and Visual C++ 6 (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| Does BITS (Background Intelligent Transfer Service) 1.5 require Dot Net framework on the client side. From what I have read it seems like Bits 2.0 needs the dot net framework but Bits 1.5 does not. I am trying to write a wrapper for BITS(Background Intelligent Transfer Service) to use in our VB 6 applications. At first I thought about shelling out using bitsadmin.exe utility that comes with Bits 1... |
|
| How to specify App.config file for a project-independent C# progra (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| As we know, a App.config file can be specified in a C# project in the .Net IDE. However, how to specify the App.config file for a C# program independent of any C# project? For example, a.cs is such a C# program that it can only be compiled by the following command line under Windows console: c: csc a.cs Seek for your guide. |
|
| creating my own shortcuts in .net (3 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| Is there a way to create windows shortcuts (.lnk files) via the .net framework? I have only found a way to do this with the scripting host DLL and I do not want to have to redistribute this with my application. Thanks! |
|
| How to specify the App.config file for an independent c# program (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| As we know, a App.config file can be specified in a C# project in the .Net IDE. However, how to specify the App.config file for a C# program independent of any C# project? For example, a.cs is such a C# program that it can only be compiled by the following command line under Windows console: c: csc a.cs Seek for your guide. |
|
| Ascii -> UTF8 and Excel trouble (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| I'm having trouble with an ascii character... ....getting turned into ... Â ....when I write it to a file and open in Excel. It looks fine in notepad, but excel mucks it up. I can only guess it's a Ascii to UTF8 problem. Does anyone have any idea, or perhaps a lesson on strings they'd like to share? Thanks, Chad |
|
| Iterating through Global Assembly Cache (GAC) ... (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| Hello, Can anyone explain whether I can programmatically iterate through Global Assembly Cache (GAC) and discover the assemblies that support the certain interface? I know that I can discover the assemblies that support the certain interface located in specified (let say plug in) directory, but I can't find any way to iterate through GAC. Please help. Thanks. |
|
| No option to create a Pocket PC 2003 app. (2 replies) |
| microsoft.public.dotnet.framework.sdk |
| I am running win xp VS .NET 2003 Pro Trial Have installed eMbedded C and SP4 PPC2003 SDK.msi When I choose to create a smart device app I only have the option for WinCE or PPC 2002. I have a PPC 2003 enabeled Dell Axim synched to this computer with AS 3.7.1 abd can also run the emulator but show no option for PPC 2003. Also when I choose to "Connect to device" I see no 2003 option either. What hav... |
|
| SIP/RTP/RTCP analyzer tool?! (7 replies) |
| microsoft.public.dotnet.framework.sdk |
| Dear All I'm looking for a free and simple to use easy to install video/audio player with the capability to track and analyze SIP/RTP/RTCP between two computers.... does Microsoft provide such tools? if yes, how/where can I get it? if no, do you know of any in priticular that you can refer me to? I did my search, still working on, but haven't been able to come across a good one yet... Appreciate y... |
|
| is it possible to build the microsoft sample LSP in a VC++ env? (3 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hi All I like to build the sample LSP included withing the microsoft platform sdk feb 2003 samples in a Microsoft Visual C env so I can build the .bsc files.... is it possible? I build it with nmake and it works in microsoft tools but when build it in VC it gives me 69 errors..... could it be done? how? thanks in advance. |
|
| how to post the data to the browser from LSP (how does browser works) (3 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hi, I have made some modification to the lsp sample from microsoft... I'm having difficulty with giving the incoming data from my LSP to the browser (IE). I'm trying to underestand how does browser works... the communication channel, what format it expects and all that...I guess this is necessary in order to be able to solve this problem... I have no issue with a pure TCP based application with re... |
|
| help me with my understanding of WSPRecv/From (5 replies) |
| microsoft.public.dotnet.framework.sdk |
| I understand that LSP resides between the Wsock32.dll and TCP.sys... so if the sequence to send is the following App Wsock32.dll LSP TCP.sys send WSASend WSPSend lpwspsend then shouldn't the sequence to receive be the following TCP.sys LSP WSock32.dll App what function called inside LSP by the TCP.sys to notify LSP of a receipt of packet?? when I track the functions, I see WSPRecv and WSPRecvFrom ... |
|
| how do I make use of dt_dll/dt_dll2 (6 replies) |
| microsoft.public.dotnet.framework.sdk |
| Hi, I'm running windows 2000 and I'm trying to use the dt dll or dt dll2.dll as it comes with the Microsoft SDK feb 2003 samples.... (I just did an nmake to the two directory to build the .dll ) this is to be able to debug the calls between App, winsock and the LSP (LSP is also my modified version of the sample included in the same sdk) but the document says how to add code or modify the dt dll bu... |
|
| How to read .PDB (Program debug database) files using Visual C# (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| I have loaded an assembly using Assembly.Load[] (reflection) and a method named "MyMethod" in this assembly. I want to know the .cd or .vb filename and the line number on which this method is being declared, as VS.NET uses the .PDB files to read this information while debugging. Thanks in Advance. Saurabh Verma Microsoft Visual C# MVP Posted by a user from .Net Guru (http://www.dot-net-guru.com/) Id M... |
|
| Reflection pass by ref abnormal behavior (3 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| hi, I am trying to call a method from a .net class dynamically and I am passing a string reference to the method. Below is a sample of what I am doing. Somehow the value of the parameter passed is not being updated. The wierd thing is that if I change the variable type to Integer, it works. using System; using System.Reflection; using System.Collections; namespace ReflectionTest { public class M {... |
|
| Reading/altering an .xml document (2 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| Hey guys I'm fairly new to .NET and am trying to do the following: Read in one ..xml document, selectively remove and/or change certain nodes within it, then save the results in a second document. For instance, if I have: a name "a" b name "b" miscattr "blah" c name "c1"/ c name "c2"/ /b /a I want to convert that into: a name "a" b name "b" miscattr "blah" c name "c3"/ c name "c4"/ c name "c5"/ /b... |
|
| System.Diagnostics.StackTrace and Exceptions (8 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| I am creating a custom exception that derives from ApplicationException to automatically capture additional information that is not included in the base Exception class. One of the pieces of information I am wanting to capture is a more complete call stack than the one provided by the StackTrace property in the base Exception class. By "more complete", I mean two things: 1) Include the entire call... |
|
| order of execution of page_load in a base and derived classes (15 replies, VIP) |
| microsoft.public.dotnet.framework.sdk |
| Hi, i have a class that is derived from System.Web.UI.Page, and this is the class i use in my application as PageBase. all other page classes are deriverd from my PageBase instead of the original System.Web.UI.Page in order to have common checks in the page base. i make securirty checks in the page base page load event. if the security fails, i can do whatever i want before the "real" / derived pa... |
|