Search results for query: *

  1. C

    Question How do I disconnect a bluetooth device?

    Hi there, I have a Bluetooth device which is connected actively to a PC which uses the integrated Microsoft Bluetooth stack. What I am looking to do is programmatically server that connection using VB.NET. Is that possible todo? If so, how? Thanks.
  2. C

    Question Disable a system device?

    Hi there, Is there any way to disable a system device from VB.NET. Basically emulating when you go to Device Manager and disable a device that way? I am assuming there is a WinAPI function that I can invoke, but I don't know which one it is? The reason I need to do this is that I need to...
  3. C

    File Downloader from rapidshare.com and filefactory.com

    Sorry for the thread resurrection, but did you figure out how to do this? I am assuming it is just a HttpWebRequest with the user cookie data?...that's the way I am going to try anyways.
  4. C

    Question Try-Catch Statement advice

    The CodeSuccess variable is essential, this particular code is contained in a function which returns that boolean, true for if the operation was successful, false if not.
  5. C

    Question Try-Catch Statement advice

    I am just wondering what the general consensus is for a situation like this: Dim CodeSuccess As Boolean = True Try If (System.IO.File.Exists("Path_To_File")) Then 'Do something with the file that file. Else...
  6. C

    Question Could someone with VS2005 compile this for me

    Are you running 32bit or 64bit Windows? Also what does Opt mean? Your release "with Opt" is the same filesize as the library website release.
  7. C

    Question Could someone with VS2005 compile this for me

    Have done that already. I can't figure out why when I compile the Library that it is different to the release version, both in filesize and functionality (it doesn't work) Library site!
  8. C

    Question Could someone with VS2005 compile this for me

    Hi there, I only have 2008 installed on this machine and I have a feeling that it might be that breaking the library file that i am trying to build. So can someone with VS2005, preferably on a 32-bit version of Windows, compile this for me so I can see if my suspicions are correct. Thanks for...
  9. C

    Referenced assembly does not have a strong name

    Well I have checked and there is source for the library that i am using. I tried to compile the project myself using a strong name (signing the assemby), but the .DLL I created from the project doesn't work (doesn't do what the release version does). (Link to project solution). I'm thinking it...
  10. C

    Referenced assembly does not have a strong name

    That was the first thing I tried but it gives me an error when I try to create a Wix installer using the post-build events. I am application i created which doesn't use a referenced library, i managed to create the Wix installer fine... Here is a link to the readme for finalizing the...
  11. C

    Referenced assembly does not have a strong name

    I can understand that, its just it won't let me build the assembly without a public key.
  12. C

    Referenced assembly does not have a strong name

    I know it probably isn't totally on topic, but I am creating a plugin for vista media center using their software development pack and i have a referenced .dll but I am unable to build the project as the .dll doesn't have a public key (i think thats the reason). This is the error it gives me...
  13. C

    Question How do import .NET libraries at runtime?

    I swear, sometimes i even amaze myself with my own stupidity... You must think im a idiot (i don't blame ya), the reason it didn't work is because i forgot to change the build to x86 only (my development PC in x64). Thank you very much for your help! EDIT: I don't have the edit button on my...
  14. C

    Question How do import .NET libraries at runtime?

    Yeah - i'm definately posted in the wrong section.... I am creating the plugin for a 3rd party application. Because the 3rd party application does not reference the .DLL i need in my plugin, I must import it into MY plugin at runtime... ...sorry for the confusing explanation, I am not...
  15. C

    Question How do import .NET libraries at runtime?

    Well i am not the creator of the library file, so how do i create an interface too it?.....its a 3rd party library file....
  16. C

    Question How do import .NET libraries at runtime?

    OK - i have read through the article many times, and have realised that I may have posted this in the wrong section. Would you still give the same advice if i said that the library I am trying to import doesn't have an interface, I just want to use a few types, methods + callbacks in it. I...
  17. C

    Question How do I use the SendInput API from a Windows service?

    Tried this to no avaial. Thanks anyways - looks like ima have to create a windows application and hide the form.
  18. C

    Question How do I use the SendInput API from a Windows service?

    Hi there, I am creating a windows service which uses the SendInput API to send keypresses to an application (must be SendInput, SendKeys doesn't work). For some reason it does not work in a windows service, but the exact same code works flawlessly in a windows form. I'm guessing there is some...
  19. C

    Question HttpWebRequest - can you notice what I am doing wrong?

    Hi there, I am following this guide here to download a video via a web request: linky! But I get an error in the headers instead of a redirect and I'm assuming i am doing something wrong. What I should be getting is a message box of a header which has a redirect in it. I have checked and the...
  20. C

    Question How do import .NET libraries at runtime?

    If you could post an example it'd be great, but its probably far more advanced than i need at this time.
Back
Top