Click here to Skip to main content
15,912,504 members
Home / Discussions / C#
   

C#

 
QuestionHow do i stop people resizing my window??? Pin
Anthony Mushrow6-Apr-05 22:26
professionalAnthony Mushrow6-Apr-05 22:26 
AnswerRe: How do i stop people resizing my window??? Pin
hooray6-Apr-05 22:57
hooray6-Apr-05 22:57 
AnswerRe: How do i stop people resizing my window??? Pin
MoustafaS7-Apr-05 4:18
MoustafaS7-Apr-05 4:18 
GeneralSelect entire row on Mouse Hover Pin
Adnan Siddiqi6-Apr-05 22:25
Adnan Siddiqi6-Apr-05 22:25 
GeneralRe: Select entire row on Mouse Hover Pin
hooray7-Apr-05 1:13
hooray7-Apr-05 1:13 
GeneralCrystal Reports Push - in code Pin
V.6-Apr-05 21:31
professionalV.6-Apr-05 21:31 
GeneralUsing a C++ DLL Pin
SoCRaT6-Apr-05 20:49
SoCRaT6-Apr-05 20:49 
GeneralRe: Using a C++ DLL Pin
S. Senthil Kumar6-Apr-05 23:03
S. Senthil Kumar6-Apr-05 23:03 
.NET can automatically handle COM objects, it generates RCW (Runtime Callable Wrappers) around them by itself.. For non-COM dlls, you'd have to use Pinvoke[^]. It's fairly easy. For eg, to access method Foo in X.dll, the following code will do..
class SomeClass
{
   [DllImport("X.dll")]
   private static extern void Foo();

   public void SomeMethod() { Foo(); }
}


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
GeneralRe: Using a C++ DLL Pin
hooray6-Apr-05 23:03
hooray6-Apr-05 23:03 
GeneralDataSet Pin
vuthaianh6-Apr-05 18:12
vuthaianh6-Apr-05 18:12 
GeneralRe: DataSet Pin
Christian Graus6-Apr-05 18:58
protectorChristian Graus6-Apr-05 18:58 
GeneralAdding Registry Values Not Working Pin
Schleichermann6-Apr-05 17:55
Schleichermann6-Apr-05 17:55 
GeneralRe: Adding Registry Values Not Working Pin
Christian Graus6-Apr-05 19:00
protectorChristian Graus6-Apr-05 19:00 
GeneralRe: Adding Registry Values Not Working Pin
Schleichermann6-Apr-05 19:02
Schleichermann6-Apr-05 19:02 
GeneralRe: Adding Registry Values Not Working Pin
Schleichermann6-Apr-05 19:13
Schleichermann6-Apr-05 19:13 
GeneralRe: Adding Registry Values Not Working Pin
Christian Graus6-Apr-05 19:23
protectorChristian Graus6-Apr-05 19:23 
GeneralRe: Adding Registry Values Not Working Pin
S. Senthil Kumar6-Apr-05 20:10
S. Senthil Kumar6-Apr-05 20:10 
GeneralRe: Adding Registry Values Not Working Pin
Anonymous6-Apr-05 20:14
Anonymous6-Apr-05 20:14 
QuestionHow to realize the Font Bar??? Pin
welsrping6-Apr-05 15:06
welsrping6-Apr-05 15:06 
AnswerRe: How to realize the Font Bar??? Pin
Ashok Dhamija6-Apr-05 18:23
Ashok Dhamija6-Apr-05 18:23 
GeneralNeed radiobuttons in datagrid - always visible Pin
ddelapasse6-Apr-05 14:41
ddelapasse6-Apr-05 14:41 
GeneralRe: Need radiobuttons in datagrid - always visible Pin
Kodanda Pani6-Apr-05 19:24
Kodanda Pani6-Apr-05 19:24 
GeneralRe: Need radiobuttons in datagrid - always visible Pin
ddelapasse7-Apr-05 3:45
ddelapasse7-Apr-05 3:45 
GeneralDataSet - column length Pin
mikker_1236-Apr-05 12:30
mikker_1236-Apr-05 12:30 
GeneralRemoted C# Windows Media Player Pin
dkarlton6-Apr-05 11:52
dkarlton6-Apr-05 11:52 

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.