Click here to Skip to main content
15,886,137 members
Home / Discussions / C#
   

C#

 
GeneralRe: [urgent, please help] Is it possible to use a Windows Form as a control? Pin
gUrM33T24-Apr-04 22:53
gUrM33T24-Apr-04 22:53 
GeneralRe: [urgent, please help] Is it possible to use a Windows Form as a control? Pin
CWIZO24-Apr-04 23:50
CWIZO24-Apr-04 23:50 
GeneralRe: [urgent, please help] Is it possible to use a Windows Form as a control? Pin
DougW4825-Apr-04 12:58
DougW4825-Apr-04 12:58 
GeneralRe: [urgent, please help] Is it possible to use a Windows Form as a control? Pin
gUrM33T25-Apr-04 16:05
gUrM33T25-Apr-04 16:05 
GeneralC++ -> C# need help with: ** (pointer to a pointer?) Pin
User 96257824-Apr-04 15:49
User 96257824-Apr-04 15:49 
Generalsome more info about the fist post Pin
User 96257824-Apr-04 16:07
User 96257824-Apr-04 16:07 
GeneralRe: some more info about the fist post Pin
Heath Stewart25-Apr-04 4:34
protectorHeath Stewart25-Apr-04 4:34 
GeneralRe: C++ -> C# need help with: ** (pointer to a pointer?) Pin
Heath Stewart25-Apr-04 4:31
protectorHeath Stewart25-Apr-04 4:31 
If this is a method on a COM object, then you should create an interop assembly using tlbimp.exe, or add a COM reference to your project in VS.NET which does the same thing.

If this is a function exported by a DLL, you can use the following signature:
[DllImport("whatever.dll", PreserveSig=true)]
private static extern int CreateSession(ref IMediaStatusSession MediaStatusSession);
IMediaStatusSession would be an interface that you would have declare that matches the native interface using the same order of methods (if inheritted from IUnknown or dual), dispatch IDs (if inheritted from IDispatch or dual), and signatures; or that is declared in an interop assembly created from the typelib.

 

Microsoft MVP, Visual C#
My Articles
GeneralArrayList Indexing: Help Pin
24-Apr-04 13:59
suss24-Apr-04 13:59 
GeneralRe: ArrayList Indexing: Help Pin
Colin Angus Mackay24-Apr-04 14:22
Colin Angus Mackay24-Apr-04 14:22 
GeneralRe: ArrayList Indexing: Help Pin
24-Apr-04 16:35
suss24-Apr-04 16:35 
GeneralRe: ArrayList Indexing: Help Pin
Colin Angus Mackay24-Apr-04 14:25
Colin Angus Mackay24-Apr-04 14:25 
GeneralRe: ArrayList Indexing: Help Pin
Jon G24-Apr-04 14:36
Jon G24-Apr-04 14:36 
GeneralRe: ArrayList Indexing: Help Pin
Member 95766524-Apr-04 16:31
Member 95766524-Apr-04 16:31 
GeneralRe: ArrayList Indexing: Help Pin
Member 95766524-Apr-04 17:42
Member 95766524-Apr-04 17:42 
GeneralRe: ArrayList Indexing: Help Pin
Colin Angus Mackay25-Apr-04 1:22
Colin Angus Mackay25-Apr-04 1:22 
GeneralRe: ArrayList Indexing: Help Pin
Jeff Varszegi25-Apr-04 7:05
professionalJeff Varszegi25-Apr-04 7:05 
GeneralAdding a CheckBox column in DataGrid Pin
Jon G24-Apr-04 13:41
Jon G24-Apr-04 13:41 
GeneralRe: Adding a CheckBox column in DataGrid Pin
Heath Stewart25-Apr-04 4:26
protectorHeath Stewart25-Apr-04 4:26 
GeneralRe: Adding a CheckBox column in DataGrid Pin
Jon G25-Apr-04 6:58
Jon G25-Apr-04 6:58 
GeneralRe: Adding a CheckBox column in DataGrid Pin
Heath Stewart25-Apr-04 7:33
protectorHeath Stewart25-Apr-04 7:33 
GeneralRe: Adding a CheckBox column in DataGrid Pin
Appelz26-Apr-04 20:31
Appelz26-Apr-04 20:31 
GeneralGame Programming with C# Pin
Snews24-Apr-04 10:34
Snews24-Apr-04 10:34 
GeneralRe: Game Programming with C# Pin
Heath Stewart24-Apr-04 10:44
protectorHeath Stewart24-Apr-04 10:44 
GeneralRe: Game Programming with C# Pin
Snews24-Apr-04 10:51
Snews24-Apr-04 10:51 

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.