Search results for query: *

  1. D

    What can i do to prevent anyone from using my DLLs ?

    Specifically if the caller is checked for a digital signature and in our case if this caller is our peeper then it does the trick doesnt it ? :D If not then can you explain if you have some of your precious time ?
  2. D

    What can i do to prevent anyone from using my DLLs ?

    well i heard about Security namespace in .net which implements many classes to ensure the protection of ur code and what it can and what it cant do, And after writing this forum thread i stumbled on a article where i think i did find something, but its not very clear at the moment...
  3. D

    What can i do to prevent anyone from using my DLLs ?

    Scenario: You developing a application named "DemoSoft" which is going to be a shareware or Premium, you use different DLL's in this project and some DLL's are owned by you, they are very useful and valuable, you are selling this software and are charging the customer for what the software does...
  4. D

    How to properly open a Image using Bitmap Class and dispose it properly

    I am looking for a code snippet which opens a image, creates a clone of this bitmap in memory disposes this opened image so that all handles are closed. Usually we can open a bitmap using this Dim MyBit as new bitmap("C:\Image file.bmp") dim ClonedBit as bitmap = MyBit.clone MyBit.dispose the...
  5. D

    How to detect installed games on a system ?

    I am writing a application where i need to know which games are installed on a system. I have 3 ways by which i think i can detect the games 1: Scan specific parts of registry and look for key names that match with a List of Publishers. The list is manually maintained. 2: Scan the hard disk...
  6. D

    Question How to change the text color of Listview's group header?

    Ive finally confirmed that you cannot do this... I have decided to make my own Multimedia List view control and it looks pretty nice even though its still in development...:rolleyes:
  7. D

    Question How to change the text color of Listview's group header?

    I want to change the color of the group header text in listview which separates all the items into various groups, there is no such option to do that directly because no such property exists. As far as i can think of it can be achieved via overriding the paint event but i have not done any...
  8. D

    Access Websites and manipulate data

    hey thanks for the tip, this is just what ive been doing before, i thought maybe there could be some other way to do it more systematically. And about the webservices, i got that thought yesterday so i searched and found many api's provided by google and yahoo for serarching the web.. I think i...
  9. D

    Access Websites and manipulate data

    Basically i want to know how to access a particular website from my application. I have used System.Net Namespace to request HTML from a website, It returns a complete HTML code which is used by Browsers to render the content on the screen but what i want is to interact with the website only...
Back
Top