kernel32.dll
-
I wanna use this dll in my project.How can I import dll in C#? :) Thanks Mazy "The path you tread is narrow and the drop is shear and very high, The ravens all are watching from a vantage point near by, Apprehension creeping like a choo-train uo your spine, Will the tightrope reach the end;will the final cuplet rhyme?"Cymbaline-Pink Floyd
-
I wanna use this dll in my project.How can I import dll in C#? :) Thanks Mazy "The path you tread is narrow and the drop is shear and very high, The ravens all are watching from a vantage point near by, Apprehension creeping like a choo-train uo your spine, Will the tightrope reach the end;will the final cuplet rhyme?"Cymbaline-Pink Floyd
[DllImport("kernel32.dll")] public/private static extern <function prototype here>
James Simplicity Rules! -
[DllImport("kernel32.dll")] public/private static extern <function prototype here>
James Simplicity Rules!Forgot to mention that you'll also have to reference the
System.Runtime.InteropServices
namespace to use theDllImport
attribute James Simplicity Rules! -
I wanna use this dll in my project.How can I import dll in C#? :) Thanks Mazy "The path you tread is narrow and the drop is shear and very high, The ravens all are watching from a vantage point near by, Apprehension creeping like a choo-train uo your spine, Will the tightrope reach the end;will the final cuplet rhyme?"Cymbaline-Pink Floyd
hey mazi, when i look through this forum, i think it would be a good idea for you to buy the petzold-book. it is nice to read and full of information. just an idea ;) :wq
-
hey mazi, when i look through this forum, i think it would be a good idea for you to buy the petzold-book. it is nice to read and full of information. just an idea ;) :wq
Hi Rupel I really appreciate your help, but i 've got a little problem here :( I live in IRAN, and there is no possibility for us to shop foreign books online (or even offline ;) ). but thanks anyways. :) Mazy "The path you tread is narrow and the drop is shear and very high, The ravens all are watching from a vantage point near by, Apprehension creeping like a choo-train uo your spine, Will the tightrope reach the end;will the final cuplet rhyme?"Cymbaline-Pink Floyd
-
Hi Rupel I really appreciate your help, but i 've got a little problem here :( I live in IRAN, and there is no possibility for us to shop foreign books online (or even offline ;) ). but thanks anyways. :) Mazy "The path you tread is narrow and the drop is shear and very high, The ravens all are watching from a vantage point near by, Apprehension creeping like a choo-train uo your spine, Will the tightrope reach the end;will the final cuplet rhyme?"Cymbaline-Pink Floyd
-
oops. sorry. :( James T. seems to have CP run on his cellphone/pda anyway - so he is a good backup ;) but i really admire you're way to look at it: with a smile :) :wq
Rüpel wrote: James T. seems to have CP run on his cellphone/pda anyway LOL! :) I'm just without a job at the moment so I spend a lot of time coding (with CP in the background) or reading CP. James Simplicity Rules!
-
Rüpel wrote: James T. seems to have CP run on his cellphone/pda anyway LOL! :) I'm just without a job at the moment so I spend a lot of time coding (with CP in the background) or reading CP. James Simplicity Rules!
James T. Johnson wrote: I'm just without a job at the moment so I spend a lot of time coding (with CP in the background) or reading CP. Funny, because I *have* a job, I spend a lot of time coding with CP in the background..... ( Well, actually I do the same at home, so that's not quite true ) I'm trying to figure out how to improve my screensaver and I wonder if I can link to the dll that handles screensaver behaviour, and hijack the message loop to handle the messages I am supposed to. Does that sound viable to you ? The instructions in MSDN tell me to do this: Creating a module-definition file The ScreenSaverProc and ScreenSaverConfigureDialog functions must be exported in the application's module-definition file; RegisterDialogClasses should not be exported, however. The following example shows the module-definition file for the sample application. Can I *do* this in C# ? My main reason for wanting to is simply that as it stands I do not have multi monitor support and I can't see a way to find my other monitor/draw on it. Christian The tragedy of cyberspace - that so much can travel so far, and yet mean so little. "But there isn't a whole lot out there that pisses me off more than someone leaving my code looking like they leaned on the keyboard and prayed that it would compile. - Jamie Hale, 17/4/2002
-
James T. Johnson wrote: I'm just without a job at the moment so I spend a lot of time coding (with CP in the background) or reading CP. Funny, because I *have* a job, I spend a lot of time coding with CP in the background..... ( Well, actually I do the same at home, so that's not quite true ) I'm trying to figure out how to improve my screensaver and I wonder if I can link to the dll that handles screensaver behaviour, and hijack the message loop to handle the messages I am supposed to. Does that sound viable to you ? The instructions in MSDN tell me to do this: Creating a module-definition file The ScreenSaverProc and ScreenSaverConfigureDialog functions must be exported in the application's module-definition file; RegisterDialogClasses should not be exported, however. The following example shows the module-definition file for the sample application. Can I *do* this in C# ? My main reason for wanting to is simply that as it stands I do not have multi monitor support and I can't see a way to find my other monitor/draw on it. Christian The tragedy of cyberspace - that so much can travel so far, and yet mean so little. "But there isn't a whole lot out there that pisses me off more than someone leaving my code looking like they leaned on the keyboard and prayed that it would compile. - Jamie Hale, 17/4/2002
Christian Graus wrote: Can I *do* this in C# ? I don't think so, I'm pretty sure you'll have to use Managed C++ for this. I'm not sure if you can export a __gc method, but you can export a regular method which calls the __gc one. This is the real power of MC++, you can make calls to both sides easily :) James Simplicity Rules!